report_suite_group_functional.html

Report generated on 02-Aug-2023 at 15:35:25 by pytest-html v3.2.0

Summary

288 tests ran in 78306.74 seconds.

278 passed, 33 skipped, 8 failed, 0 errors, 2 expected failures, 0 unexpected passes

Results

Result Test Duration Links
Failed functional/L1/test_l1_config.py::test_l1_settings_[autodetect] 73.27
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
l1_settings = 'autodetect'

@pytest.mark.parametrize('l1_settings', ['autodetect', 'autoneg'])
async def test_l1_settings_(testbed, l1_settings):
"""
Test Name: L1 settings verification
Test Suite: suite_functional_l1
Test Overview: Verify L1 settings on dut port
Test Procedure:
1. Create bridge entity
2. Enslave ports to the created bridge entity
3. Set up port duplex, speed
4. Verify port mode and speed
5. Verify "Link Partner Advertised Auto-negotiation" is set to `Yes`
6. Verify "Advertised Auto-negotiation" is set to `Yes`
7. Verify "Link Partner Advertised Link Modes" is set to configured speed/duplex
8. Verify "Advertised Link Modes" is set to configured speed/duplex
"""
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 1)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
device_host_name = dent_devices[0].host_name
tg_port = tgen_dev.links_dict[device_host_name][0][0]
port = tgen_dev.links_dict[device_host_name][1][0]
speed = 1000
duplex = 'full'
advertise = '0x020'

dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_port, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24}])
await tgen_utils_traffic_generator_connect(tgen_dev, [tg_port], [port], dev_groups)
await asyncio.sleep(10)

try:
> await tb_get_qualified_ports(dent_devices[0], tgen_dev.links_dict[device_host_name][1], speed, duplex, required_ports=1)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py:52:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [DENT infrastructure 1: 10.36.118.46]
ports = ['swp33', 'swp34', 'swp35', 'swp36'], speed = 1000, duplex = 'full'
required_ports = 1

async def tb_get_qualified_ports(device, ports, speed, duplex, required_ports=2):
"""
Get dict of dut ports with matching speed and duplex
Args:
device (DeviceType): Dut device
ports (list): List of dut ports
speed (int): Required port speed
duplex (str): Required port duplex
required_ports (int): Required number of ports

Returns: Dictionary of qualified ports
"""

# Check dut media mode name. If it supports the speed parameter
if device.media_mode == 'mixed':
raise ValueError('Mixed mode is not supported')
if device.media_mode == 'copper' and speed == 10000:
raise ValueError(f'Can not run test in device {device.host_name} with the speed: {speed}')

# Check that there are at least minimum 2 ports with the provided speed parameter
speed_ports = {}
for port in ports:
out = await Ethtool.show(input_data=[{device.host_name: [{'devname': port}]}], parse_output=True)
assert out[0][device.host_name]['rc'] == 0, f'Ethtool show failed: {out}'
parsed = out[0][device.host_name]['parsed_output']

if 'TP' in parsed['supported_ports']:
supported_speed = f'{speed}baseT/{duplex.capitalize()}'
if supported_speed in parsed['supported_link_modes'] and \
> supported_speed in parsed['link_partner_advertised_link_modes']:
E KeyError: 'link_partner_advertised_link_modes'

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tb_utils.py:588: KeyError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-476' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.5, port 58352 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:07:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:07:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:08:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:08:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG infra1:Logger.py:156 []
Failed functional/L1/test_l1_config.py::test_l1_settings_[autoneg] 52.76
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
l1_settings = 'autoneg'

@pytest.mark.parametrize('l1_settings', ['autodetect', 'autoneg'])
async def test_l1_settings_(testbed, l1_settings):
"""
Test Name: L1 settings verification
Test Suite: suite_functional_l1
Test Overview: Verify L1 settings on dut port
Test Procedure:
1. Create bridge entity
2. Enslave ports to the created bridge entity
3. Set up port duplex, speed
4. Verify port mode and speed
5. Verify "Link Partner Advertised Auto-negotiation" is set to `Yes`
6. Verify "Advertised Auto-negotiation" is set to `Yes`
7. Verify "Link Partner Advertised Link Modes" is set to configured speed/duplex
8. Verify "Advertised Link Modes" is set to configured speed/duplex
"""
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 1)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
device_host_name = dent_devices[0].host_name
tg_port = tgen_dev.links_dict[device_host_name][0][0]
port = tgen_dev.links_dict[device_host_name][1][0]
speed = 1000
duplex = 'full'
advertise = '0x020'

dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_port, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24}])
await tgen_utils_traffic_generator_connect(tgen_dev, [tg_port], [port], dev_groups)
await asyncio.sleep(10)

try:
> await tb_get_qualified_ports(dent_devices[0], tgen_dev.links_dict[device_host_name][1], speed, duplex, required_ports=1)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py:52:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [DENT infrastructure 1: 10.36.118.46]
ports = ['swp33', 'swp34', 'swp35', 'swp36'], speed = 1000, duplex = 'full'
required_ports = 1

async def tb_get_qualified_ports(device, ports, speed, duplex, required_ports=2):
"""
Get dict of dut ports with matching speed and duplex
Args:
device (DeviceType): Dut device
ports (list): List of dut ports
speed (int): Required port speed
duplex (str): Required port duplex
required_ports (int): Required number of ports

Returns: Dictionary of qualified ports
"""

# Check dut media mode name. If it supports the speed parameter
if device.media_mode == 'mixed':
raise ValueError('Mixed mode is not supported')
if device.media_mode == 'copper' and speed == 10000:
raise ValueError(f'Can not run test in device {device.host_name} with the speed: {speed}')

# Check that there are at least minimum 2 ports with the provided speed parameter
speed_ports = {}
for port in ports:
out = await Ethtool.show(input_data=[{device.host_name: [{'devname': port}]}], parse_output=True)
assert out[0][device.host_name]['rc'] == 0, f'Ethtool show failed: {out}'
parsed = out[0][device.host_name]['parsed_output']

if 'TP' in parsed['supported_ports']:
supported_speed = f'{speed}baseT/{duplex.capitalize()}'
if supported_speed in parsed['supported_link_modes'] and \
> supported_speed in parsed['link_partner_advertised_link_modes']:
E KeyError: 'link_partner_advertised_link_modes'

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tb_utils.py:588: KeyError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-520' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.5, port 56024 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:08:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:08:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:09:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:09:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG infra1:Logger.py:156 []
Failed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] 201.12
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
rate_units = 'kbit'

@pytest.mark.parametrize('rate_units', ['bit', 'kbit', 'gbit', 'bps', 'kbps', 'mbps', 'gbps', 'tbps'])
async def test_devlink_diff_rate_units(testbed, rate_units):
"""
Test Name: test_devlink_diff_rate_units
Test Suite: suite_functional_devlink
Test Overview: Test devlink single block basic functionality with different rate units
Test Procedure:
1. Set link up on interfaces on all participant ports
2. Create an ingress qdisc on first port connected to Ixia and add a rule with selectors
3. Prepare a matching stream for the randomly selected selectors and transmit traffic
4. Verify CPU trapped packet rate is as expected with different rate units
"""

tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
dent_dev = dent_devices[0]
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
frame_size = randint(128, 500)
# Calculate max possible rate for cpu trap 4000pps is max
max_rate = (frame_size * CPU_MAX_PPS) * RATE_UNITS['bps'] # Max rate in bits per second
policer_rate_bps = randint(2_000_000, max_rate)
policer_rate = policer_rate_bps / RATE_UNITS[rate_units]
want_ip = choice([True, False])
want_port = choice([True, False]) if want_ip else False
want_vlan = choice([True, False])

# 1.Set link up on interfaces on all participant ports
out = await IpLink.set(
input_data=[{dev_name: [
{'device': port, 'operstate': 'up'} for port in dut_ports]}])
err_msg = f"Verify that ports set to 'UP' state.\n{out}"
assert out[0][dev_name]['rc'] == 0, err_msg

dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_ports[0], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24}]
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)

# 2.Create an ingress qdisc on first port connected to Ixia and add a rule with selectors
out = await TcQdisc.add(
input_data=[{dev_name: [
{'dev': dut_ports[0], 'direction': 'ingress'}]}])
err_msg = f'Verify no error on setting Qdist for {dut_ports[0]}.\n{out}'
assert out[0][dev_name]['rc'] == 0, err_msg

rule_selectors = {'action': {'trap': '',
'police': {'rate': f'{policer_rate}{rate_units}',
'burst': policer_rate + 1000,
'conform-exceed': '', 'drop': ''}},
'skip_sw': True,
'want_mac': True,
'want_vlan': want_vlan,
'want_ip': want_ip,
'want_port': want_port,
'want_tcp': choice([True, False]) if want_port else False,
'want_vlan_ethtype': True if want_vlan and want_ip else False}

tc_rule = tcutil_generate_rule_with_random_selectors(dut_ports[0], **rule_selectors)
tc_rule_copy = deepcopy(tc_rule)
randomize_rule_by_src_dst_field(tc_rule, rule_selectors)

out = await TcFilter.add(input_data=[{dev_name: [tc_rule]}])
assert out[0][dev_name]['rc'] == 0, f'Failed to create tc rule \n{out}'

# 3.Prepare a matching stream for the randomly selected selectors and transmit traffic
out = await TcFilter.show(input_data=[{dev_name: [
{'dev': dut_ports[0], 'direction': 'ingress', 'options': '-j'}]}], parse_output=True)
assert out[0][dev_name]['rc'] == 0, f'Failed to get tc rule \n{out}'

streams = tcutil_tc_rules_to_tgen_streams({dut_ports[0]: out[0][dev_name]['parsed_output']},
frame_rate_pps=100, frame_rate_type='line_rate',
frame_size=frame_size)

# Overwrite stream dst/src fields after we randomized dst/src fields applying
overwrite_src_dst_stream_fields(streams, tc_rule_copy, rule_selectors)
await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)
await tgen_utils_start_traffic(tgen_dev)

# 4.Verify CPU trapped packet rate is as expected with different rate units
# Calculate expected pkt rate based on policer rate limitation
exp_rate = policer_rate_bps / (frame_size * RATE_UNITS['bps'])
await asyncio.sleep(10)
> await verify_cpu_rate(dent_dev, exp_rate)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py:406:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/devlink_utils.py:352: in verify_cpu_rate
await asyncio.gather(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

dent_dev = [DENT infrastructure 1: 10.36.118.46], cpu_stat_code = '195'
exp_rate = 3768.722222222222, counter_type = 'sw', deviation = 0.1, logs = True

async def verify_cpu_traps_rate_code_avg(dent_dev, cpu_stat_code, exp_rate, counter_type='sw', deviation=DEVIATION, logs=False):
"""
Verify cpu trap average rate is equal to expected rate including deviation
Args:
dent_dev: Dent device
cpu_stat_code (str): Cpu code to read counters from
exp_rate (float): Expected rate value
counter_type (str): Type of counters to read (sw or hw)
deviation (float): Deviation percentage
"""
actual_rate = await get_cpu_traps_rate_code_avg(dent_dev, cpu_stat_code, counter_type)
res = isclose(exp_rate, actual_rate, rel_tol=deviation)
if logs:
dent_dev.applog.info(f'CPU rate {actual_rate} expected {exp_rate} for stat_code {cpu_stat_code}')
> assert res, f'Current rate {actual_rate} exceeds expected rate {exp_rate} for cpu stat code {cpu_stat_code}'
E AssertionError: Current rate 3293 exceeds expected rate 3768.722222222222 for cpu stat code 195

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/devlink_utils.py:131: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5097' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.5, port 37484 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:27:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:27:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:ac:f6:b8:df:cb src_ip 84.140.114.234 dst_ip 12.51.104.160 action trap action police rate 7869.092kbit burst 8869.092 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:ac:f6:b8:df:cb src_ip 84.140.114.234 dst_ip 12.51.104.160 action trap action police rate 7869.092kbit burst 8869.092 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:ac:f6:b8:df:cb","eth_type":"ipv4","dst_ip":"12.51.104.160","src_ip":"84.140.114.234"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:ac:f6:b8:df:cb_eth_type_ipv4_dst_ip_12.51.104.160_src_ip_84.140.114.234 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG infra1:Logger.py:156 3293 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3293 expected 3768.722222222222 for stat_code 195
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close DEBUG infra1:Logger.py:156 Tue Aug 1 23:30:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session DEBUG infra1:Logger.py:156 3293 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3293 expected 3768.722222222222 for trap_code acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:30:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=58] Channel closed DEBUG infra1:Logger.py:156
Failed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query 285.66
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>

async def test_igmp_snooping_modified_query(testbed):
"""
Test Name: test_igmp_querier
Test Suite: suite_functional_igmp
Test Overview: Test IGMP snooping with modified querier interval
Test Procedure:
1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval
Enslave all TG ports to bridge interface and config fastleave on 1st rx_port
2. Init interfaces and create 2 multicast Streams
3. Create 3 membership report streams, 1 with invalid checksum
4. Send Traffic from router port and from clients
5. Verify Mdb entries were created for clients and router
6. Verify the multicast traffic is flooded to all bridge ports except last client
7. Create and send leave stream from 1st client
8. Verify MDB entry is deleted
9. Verify no traffic is received on the port that left the group
"""

bridge = 'br0'
querrier_interval = 10
sleep_value = 5
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dev_name = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dev_name][0]
dut_ports = tgen_dev.links_dict[dev_name][1]
mcast_group1 = '227.1.1.1'
mcast_group2 = '239.2.2.2'
mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2]
macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04']

# 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval
# Config Fastleave on 1st rx_port
await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval)

out = await BridgeLink.set(
input_data=[{dev_name: [
{'device': dut_ports[1], 'fastleave': True}]}])
err_msg = f'Verify that port entities set to fastleave ON.\n{out}'
assert out[0][dev_name]['rc'] == 0, err_msg

# 2.Init interfaces and create 2 multicast Streams
# 3.Create 3 membership report streams, 1 with invalid checksum
dev_groups = tgen_utils_dev_groups_from_config(
[{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24},
{'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24},
{'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}])

tx_port = dev_groups[tg_ports[0]][0]['name']
rx_ports = [dev_groups[tg_ports[1]][0]['name'],
dev_groups[tg_ports[2]][0]['name'],
dev_groups[tg_ports[3]][0]['name']]

await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups)
streams = {f'mcast_{idx + 1}': {
'type': 'raw',
'protocol': 'ip',
'ip_source': tx_port,
'ip_destination': rx_ports[1],
'srcMac': macs[0],
'dstMac': mcast_ip_to_mac(mcast_group),
'srcIp': '0.0.0.0',
'dstIp': mcast_group,
'frame_rate_type': 'line_rate',
'rate': 40,
} for idx, mcast_group in enumerate([mcast_group1, mcast_group2])}

streams.update({f'member_report{idx + 1}': {
'type': 'raw',
'protocol': 'ip',
'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'],
'ip_destination': dev_groups[tg_ports[0]][0]['name'],
'srcMac': combined[1],
'dstMac': mcast_ip_to_mac(combined[0]),
'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'],
'dstIp': combined[0],
'ipproto': 'igmpv2',
'totalLength': '28',
'igmpType': '22',
'igmpGroupAddr': combined[0],
'rate': 1,
'transmissionControlType': 'fixedPktCount',
'frameCount': 1,
} for idx, combined in enumerate(zip(mcast_group_addr, macs[1:]))
})
streams['member_report3']['igmpChecksum'] = '0'
await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams)

# 4.Send Traffic from router port and from clients
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(querrier_interval + 5)

# 5.Verify Mdb entries were created for clients and router
mdb_entires, router_entires = await get_bridge_mdb(dev_name)
verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1])
> assert len(router_entires), f'No MDB router entries were added to bridge MDB table {router_entires}'
E AssertionError: No MDB router entries were added to bridge MDB table {}
E assert 0
E + where 0 = len({})

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:589: AssertionError
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-7176' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.5, port 47164 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:13:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":65,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 241.43"},{"index":65,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 241.43"},{"index":65,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 143.51"},{"index":65,"dev":"br0","port":"br0","grp":"ff02::1:ffad:26e1","state":"temp","flags":[],"vid":1,"timer":" 148.37"}],"router":{}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:18:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:18:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG infra1:Logger.py:156
Failed functional/lacp/test_lacp_loopback_detection.py::test_lacp_loopback_detection[rstp] 319.40
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
version = 'rstp'

@pytest.mark.parametrize('version', ['rstp', 'stp'])
async def test_lacp_loopback_detection(testbed, version):
"""
Test Name: LACP STP/RSTP interaction
Test Suite: suite_functional_lacp
Test Overview: Test stp/rstp loopback detection
Test Procedure:
1. Create bridge bridge_1 and 6 bonds and set link up on them
2. Enslave ports to bonds, bonds to bridges
4. Set link up on all participant ports, bonds, bridges
5. Wait until topology converges
6. Send broadcast traffic for a random time between 30-60 seconds.
7. Verify device remain stable afterwards (during storming). Verify there is a storming
8. Set bridge stp_state to 1
9. Verify that afterwards all bonds with the lowest number within a loopback connection are blocked.
10. Verify that the rate on Ixia ports is 0 (storming has stopped)
"""
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip(
'The testbed does not have enough dent with tgen connections')
device = dent_devices[0]
dent = device.host_name
tg_ports = tgen_dev.links_dict[dent][0]
dut_ixia_ports = tgen_dev.links_dict[dent][1]
bonds = {}
for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]):
bonds[f'bond_{idx+1}'] = port
bridge = 'bridge_1'
wait_time = 40 if version == 'stp' else 20
expected_rate = 0.14 # multiplied by port speed

# 1. Create bridge entities and 6 bonds and set link up on them
out = await IpLink.add(input_data=[{dent: [{'device': bond,
'type': 'bond',
'mode': '802.3ad'} for bond in bonds]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bond'

out = await IpLink.add(input_data=[{dent: [{
'device': bridge,
'type': 'bridge',
'stp_state': 0}]}]) # stp not enabled
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

# 2. Enslave ports according to the test's setup topology
out = await IpLink.set(input_data=[
{dent: [{'device': port_in_bond, 'operstate': 'down'} for port_in_bond in bonds.values()] +
[{'device': port, 'operstate': 'down'} for port in dut_ixia_ports] +
[{'device': bond, 'operstate': 'down'} for bond in bonds] +
[{'device': bridge, 'operstate': 'down'}]
}])
assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces to down'

out = await IpLink.set(input_data=[
{dent: [{'device': port, 'master': bond} for bond, port in bonds.items()] +
[{'device': bond, 'master': bridge} for bond in bonds] +
[{'device': port, 'master': bridge} for port in dut_ixia_ports]
}])
assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces to up'

# 4. Set link up on all participant ports, bonds, bridges
out = await IpLink.set(input_data=[
{dent: [{'device': port_in_bond, 'operstate': 'up'} for port_in_bond in bonds.values()] +
[{'device': port, 'operstate': 'up'} for port in dut_ixia_ports] +
[{'device': bond, 'operstate': 'up'} for bond in bonds] +
[{'device': bridge, 'operstate': 'up'}]
}])
assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces'

# 5. Wait until topology converges
await asyncio.sleep(wait_time)

# 6. Send broadcast traffic for a random time between 30-60 seconds.
dev_groups = tgen_utils_dev_groups_from_config((
{'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24},

))
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ixia_ports, dev_groups)
tx_ports = dev_groups[tg_ports[0]][0]['name']
rx_ports = [dev_groups[tg_ports[1]][0]['name'],
dev_groups[tg_ports[2]][0]['name'],
dev_groups[tg_ports[3]][0]['name']]
streams = {
f'{rx_ports} -> Broadcast': {
'type': 'raw',
'ip_source': tx_ports,
'ip_destination': rx_ports,
'srcMac': 'aa:bb:cc:dd:ee:ff',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frame_rate_type': 'line_rate',
'rate': 5
}
}

try:
await tgen_utils_setup_streams(tgen_dev, None, streams)
except AssertionError as e:
if 'LAG' in str(e):
pytest.skip(str(e))
else:
raise # will re-raise the AssertionError
await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(wait_time)
await tgen_utils_stop_traffic(tgen_dev)

# 7. Verify device remain stable afterwards (during storming).
out = await Ethtool.show(input_data=[{dent: [{'devname': dut_ixia_ports[2]}]}], parse_output=True)
speed = int(out[0][dent]['parsed_output']['speed'][:-4])
expected_rate = int(expected_rate * speed)
rc, out = await device.run_cmd("echo 'Hello World'")
assert rc == 0, 'FAIL: DUT crashed due to storming'
assert out.strip() == 'Hello World', f'Expected <Hello World> got {out}'

stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics')
# Verify there is storming
for row in stats.Rows:
if row['Port Name'] == tg_ports[0]:
err_msg = f'Expected {expected_rate} got : {float(row["Rx. Rate (Mbps)"])}'
assert float(row['Rx. Rate (Mbps)']) > expected_rate, err_msg

# 8. Set bridge stp_state to 1.
out = await IpLink.set(input_data=[{dent: [{
'device': bridge,
'type': 'bridge',
'stp_state': 1}]}]) # stp enabled
assert out[0][dent]['rc'] == 0, 'Failed to enable stp on bridge'
out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd'
out = await Mstpctl.set(input_data=[{dent: [{
'bridge': bridge,
'parameter': 'forcevers',
'version': version}]}])
assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version'
await asyncio.sleep(wait_time)

out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd'
out = await Mstpctl.set(input_data=[{dent: [{
'bridge': bridge,
'parameter': 'forcevers',
'version': version}]}])
assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version'
out = await Mstpctl.show(input_data=[{dent: [
{'parameter': 'portdetail',
'bridge': bridge,
'options': '-f json'}]}], parse_output=True)
assert out[0][dent]['rc'] == 0, f'Failed to get port detail of {bridge}'

# 9. Verify that afterwards all bonds with the lowest number within a loopback connection are blocked.
for dev in out[0][dent]['parsed_output']:
if dev['port'] in list(bonds)[3:]:
> assert dev['state'] == 'discarding'
E AssertionError: assert 'forwarding' == 'discarding'
E - discarding
E + forwarding

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:173: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9865' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_loopback_detection[rstp]">Starting testcase:test_lacp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.5, port 51472 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:04:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:04:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 && ip link set dev swp7 master bond_2 && ip link set dev swp9 master bond_3 && ip link set dev swp6 master bond_4 && ip link set dev swp8 master bond_5 && ip link set dev swp10 master bond_6 && ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 && ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: ip link set dev swp5 master bond_1 && ip link set dev swp7 master bond_2 && ip link set dev swp9 master bond_3 && ip link set dev swp6 master bond_4 && ip link set dev swp8 master bond_5 && ip link set dev swp10 master bond_6 && ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 && ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG infra1:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920e3250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 802156 Rx 9317072 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 9316729 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 9316720 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 9316725 INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=24] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=184, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=26] Command: mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=184, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=28] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=184, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=30] Command: mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=184, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=32] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_3","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"305","internal-port-cost":"305","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_5","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.005","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_6","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.006","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.006","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp33","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.007","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.008","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.008","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.009","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.009","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.00A","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.00A","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py INFO asyncssh:logging.py:92 [conn=184, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=33] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=184, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=34] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=184, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:09:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=184, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":98,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=184, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=40] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=184, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:09:18 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=184, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=184, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=44] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=184, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":92,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":93,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":94,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:40"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":95,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":96,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":97,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=184, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=184, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=46] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=184, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=184, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=48] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=184, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=184, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=50] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=184, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=184, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=52] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=184, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=184, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=54] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=184, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=184, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=56] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=184, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=58] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:09:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Failed functional/lacp/test_lacp_traffic_during_topology_convergence.py::test_lacp_traffic_during_topology_convergence[rstp] 206.38
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
version = 'rstp'

@pytest.mark.parametrize('version', ['stp', 'rstp'])
async def test_lacp_traffic_during_topology_convergence(testbed, version):
"""
Test Name: LACP STP/RSTP interaction
Test Suite: suite_functional_lacp
Test Overview: Test lacp during stp/rstp topology convergence
Test Procedure:
1. Create 3 bridge entities and 6 bonds and set link up on them
2. Enslave ports to bonds, bonds to bridges
3. Change all bridges MAC addresses
4. Set link up on all participant ports, bonds, bridges
5. Send broadcast traffic for a random time between 30-60 seconds.
6. Verify device remain stable afterwards (during storming)
7. Verify there is a storming
8. Set bridge stp_state to 1
9. Verify the bridge root is bridge_2 by the lowest MAC rule. Verify other bridges
do not consider themselves as root-bridge
10. Verify bridge_1 has a blocking bond
11 .Verify bridge_3 do not have any blocking bond
12. Verify that the rate on other tgen ports is 0 (storming has stopped)
13. Send broadcast traffic for a random time between 30-60 seconds
14. Verify that traffic is flooded to other tgen ports
15. Stop the traffic; Verify there is no storming"
"""
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip(
'The testbed does not have enough dent with tgen connections')
device = dent_devices[0]
dent = device.host_name
tg_ports = tgen_dev.links_dict[dent][0]
dut_tgen_ports = tgen_dev.links_dict[dent][1]
bonds = {}
for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]):
bonds[f'bond_{idx+1}'] = port
bond_to_bridges = list(bonds.keys())
bridges = {
'bridge_1': bond_to_bridges[:2],
'bridge_2': bond_to_bridges[2:4],
'bridge_3': bond_to_bridges[4:]
}
hw_mac = ['44:AA:98:EA:D2:43', '00:45:34:43:56:55', '22:0A:D1:68:4E:B9']
bridge_names = list(bridges.keys())
tolerance = 0.15
wait_time = 40 if 'version' == 'stp' else 20
expected_rate = 0.14 # multiplied by port speed
# 1. Create 3 bridge entities and 6 bonds and set link up on them
out = await IpLink.add(input_data=[{dent: [{'device': bond,
'type': 'bond',
'mode': '802.3ad'} for bond in bonds]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bond'

out = await IpLink.add(input_data=[{dent: [{
'device': bridge,
'type': 'bridge',
'stp_state': 0} for bridge in bridges]}]) # stp not enabled
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

# 2. Enslave ports to bonds, bonds to bridges
out = await IpLink.set(input_data=[
{dent: [{'device': port, 'operstate': 'down'} for port in bonds.values()] +
[{'device': bond, 'operstate': 'down'} for bond in bonds] +
[{'device': bridge, 'operstate': 'down'} for bridge in bridges] +
[{'device': port, 'operstate': 'down'} for port in dut_tgen_ports]
}])
assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces to down'

out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()])
assert out[0][dent]['rc'] == 0, 'Failed enslaving bonds'

for bridge, lags in bridges.items():
out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}])
assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}'

out = await IpLink.set(input_data=[
{dent: [{'device': dut_tgen_ports[0], 'master': bridge_names[0]}] +
[{'device': dut_tgen_ports[1], 'master': bridge_names[1]}]
}])
assert out[0][dent]['rc'] == 0, 'Failed enslaving port'

# 3. Change the MAC addresses for all bridges
for bridge, mac in zip(bridge_names, hw_mac):
rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}')
assert rc == 0, 'Failed to change MAC address'

# 4. Set link up on all participant ports, bonds, bridges
out = await IpLink.set(input_data=[
{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()] +
[{'device': bond, 'operstate': 'up'} for bond in bonds] +
[{'device': bridge, 'operstate': 'up'} for bridge in bridges] +
[{'device': port, 'operstate': 'up'} for port in dut_tgen_ports]
}])
assert out[0][dent]['rc'] == 0, 'Failed changing state of the interfaces to up'

# 5.Send broadcast traffic for a random time between 30-60 seconds.
dev_groups = tgen_utils_dev_groups_from_config((
{'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24},
{'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24},

))
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_tgen_ports, dev_groups)
tx_ports = dev_groups[tg_ports[0]][0]['name']
rx_ports = [dev_groups[tg_ports[1]][0]['name'],
dev_groups[tg_ports[2]][0]['name'],
dev_groups[tg_ports[3]][0]['name']]
streams = {
f'{rx_ports} -> Broadcast': {
'type': 'raw',
'ip_source': tx_ports,
'ip_destination': rx_ports,
'srcMac': 'aa:bb:cc:dd:ee:ff',
'dstMac': 'ff:ff:ff:ff:ff:ff',
'frame_rate_type': 'line_rate',
'rate': 5
}
}

try:
> await tgen_utils_setup_streams(tgen_dev, None, streams)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:139:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None
streams = {"['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast": {'ds...4', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'], 'ip_source': '10.36.118.199:2:1_1.1.1.2/24', ...}}
force_update = True

async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True):
"""
- if there is a tgen config file then try to load it
- else creates the streams and saves it and download a copy for future use.
- start the protocols and resolve arp.
"""
res = -1
if not force_update and os.path.exists(config_file_name):
device.applog.info(f'Loading Tgen config file {config_file_name}')
out = await TrafficGen.load_config(
input_data=[{device.host_name: [{'config_file_name': config_file_name}]}]
)
res = out[0][device.host_name]['rc']
if res != 0:
for s in streams.keys():
device.applog.info(f'Setting up Tgen traffic for {s}')
out = await TrafficGen.set_traffic(
input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}]
)
device.applog.info(out)
assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}'
device.applog.info(f'Saving Tgen config file {config_file_name}')
out = await TrafficGen.save_config(
input_data=[{device.host_name: [{'config_file_name': config_file_name}]}]
)
device.applog.info('Starting Protocols')
out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}])
device.applog.info(out)
> assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result']
E AssertionError: Timeout - no response after 20s.

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:427: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11101' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_traffic_during_topology_convergence[rstp]">Starting testcase:test_lacp_traffic_during_topology_convergence[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.5, port 54578 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:45:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:45:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=198, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=18] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=198, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=198, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=20] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=198, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=22] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=198, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=24] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=198, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=198, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=26] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=198, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=198, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=28] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=198, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=198, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=30] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=198, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=198, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=32] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=198, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=33] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=198, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=34] Command: ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=198, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=35] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=198, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=36] Command: ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=198, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=37] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=198, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=38] Command: ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=198, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=198, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=40] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=198, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Timeout - no response after 20s.\n'}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_traffic_during_topology_convergence[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py INFO asyncssh:logging.py:92 [conn=198, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=41] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=198, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=42] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=198, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=44] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:49:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":230,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":231,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:45:34:43:56:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":232,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=198, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=198, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:49:16 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=198, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=198, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=198, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":224,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":225,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":226,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:40"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":227,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":228,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":229,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=198, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=198, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=198, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=198, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=198, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=198, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=198, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=198, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=198, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=198, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=198, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=198, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=198, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=65] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=66] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:49:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Timeout - no response after 20s.\n'}}]
Failed functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[rstp] 77.43
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
version = 'rstp'

async def test_stp_bpdu_filter(testbed, version):
"""
Test Name: test_stp_bpdu_filter
Test Suite: suite_functional_stp
Test Overview: Verify BDPU filter basic functionality works as expected
Test Procedure:
1. Add bridge
2. Enslave ports
3. Enable STP/RSTP
4. Setup streams:
- BPDU stream with higher prio than bridge from port#0
- BPDU stream with higher prio than bridge from port#1
- data traffic from port#2 to ports #0 and #1
5. Send traffic
6. Disable/Enable BPDU filter
7. Verify port#1 is ALTERNATE/DESIGNATED
8. Verify traffic is discarded/forwarded through port#1
"""
num_ports = 3
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_device = dent_devices[0]
dent = dent_device.host_name
tg_ports = tgen_dev.links_dict[dent][0][:num_ports]
ports = tgen_dev.links_dict[dent][1][:num_ports]
bridge = 'br0'
bridge_mac = get_rand_mac('02:55:XX:XX:XX:XX')
root_mac = get_rand_mac('02:10:XX:XX:XX:XX')
rand_mac = get_rand_mac('02:AA:XX:XX:XX:XX')
convergence_time_s = 40 if version == 'stp' else 20
rate_bps = 300_000_000 # 300Mbps
traffic = 'data traffic'
tolerance = 0.05

# 1. Add bridge
out = await IpLink.add(input_data=[{dent: [
{'device': bridge, 'type': 'bridge', 'stp_state': 1}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

# 2. Enslave ports
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up', 'master': bridge}
for port in ports
] + [
{'device': bridge, 'operstate': 'up', 'address': bridge_mac}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Enable STP/RSTP
out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

out = await Mstpctl.set(input_data=[{dent: [
{'parameter': 'forcevers', 'bridge': bridge, 'version': version}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24}
for idx, port in enumerate(tg_ports, start=1)
)
> await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py:104:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

device = [Ixia Traffic Generator: 10.36.118.213]
tgen_ports = ['10.36.118.199:2:1', '10.36.118.199:2:2', '10.36.118.199:2:3']
swp_ports = ['swp33', 'swp34', 'swp35']
dev_groups = {'10.36.118.199:2:1': [{'count': 1, 'gw': '1.1.1.5', 'ip': '1.1.1.1', 'name': '10.36.118.199:2:1_1.1.1.1/24', ...}], '...}], '10.36.118.199:2:3': [{'count': 1, 'gw': '1.1.1.5', 'ip': '1.1.1.3', 'name': '10.36.118.199:2:3_1.1.1.3/24', ...}]}

async def tgen_utils_traffic_generator_connect(device, tgen_ports, swp_ports, dev_groups):
"""
- Connects to the tgen
"""
ixia_port = device.port if device.port is not None else 443
out = await TrafficGen.connect(
input_data=[
{
device.host_name: [
{
'client_addr': device.ip,
'client_port': ixia_port,
'tgen_ports': tgen_ports,
'swp_ports': swp_ports,
'dev_groups': dev_groups,
}
]
}
]
)
device.applog.info(out)
> assert out[0][device.host_name]['rc'] == 0
E AssertionError

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:154: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19591' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[rstp]">Starting testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=281] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=281] Local address: 172.17.0.5, port 46480 INFO asyncssh:logging.py:92 [conn=281] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=281] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=281] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:46:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=281, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=281, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=281, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=281, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=281, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:46:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=281, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=281, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=281, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:77:40:49:97 INFO asyncssh:logging.py:92 [conn=281, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:77:40:49:97 INFO asyncssh:logging.py:92 [conn=281, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=281, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=281, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Exception Caught: Changes are not allowed currently because an Operation is already in progress. Configuration is read-only. System.Exception: Changes are not allowed currently because an Operation is already in progress. Configuration is read-only. at SDMCsLib.SDMPeer.SANDBOX_DoCommit(Int32 eventMatch, ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitExceptionsResponse, Version version, Boolean bCommitIfUnique, eSandboxType sandboxType) at SDMCsLib.SDMSandbox.DoCommit(Boolean bCommitIfUnique, eSandboxType sandboxType) at SDMCsLib.RestService.SdmSandbox.Commit(Boolean isAddOperation) at SDMCsLib.RestService.SdmObject.Post() at SDMCsLib.RestService.V1ObjectController.Post(String path) INFO DENT:Logger.py:84 [Ixia Traffic Generator] <class 'ixnetwork_restpy.errors.BadRequestError'>, ixnetwork_ixia_client_impl.py:110 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': -1, 'result': 'Error!'}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=281, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=281, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=281, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:48:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=281, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:48:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=281, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":318,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:77:40:49:97","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=281, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=281, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=281, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=24] Channel closed DEBUG infra1:Logger.py:156
Failed functional/stp/test_stp_with_traffic.py::test_stp_switching_off_on[stp] 433.73
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>
version = 'stp'

@pytest.mark.parametrize('version', ['stp', 'rstp'])
async def test_stp_switching_off_on(testbed, version):
"""
Test Name: test_stp_switching_off_on
Test Suite: suite_functional_stp
Test Overview: Verify device stability during switching stp on/off
Test Procedure:
1. Create bridge entity with STP enabled
2. Enslave port to the bridge
3. Change the MAC addresses the bridge
4. Set link up on all participant ports, bridge
5. Create streams. Send traffic
6. Verify port 2 state is blocking
7. Verify traffic is forwarded to port 1 and that port 2 doesn't receive any traffic
8. Disable stp_state. Verify blocking port moved into forwarding
9. Enable stp_state

"""
num_ports = 4
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_ports)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_device = dent_devices[0]
dent = dent_device.host_name
tg_ports = tgen_dev.links_dict[dent][0][:num_ports]
ports = tgen_dev.links_dict[dent][1][:num_ports]
bridge = 'br0'
root_mac = get_rand_mac('00:44:XX:XX:XX:XX')
rand_mac = get_rand_mac('00:66:XX:XX:XX:XX')
convergence_time_s = 40 if version == 'stp' else 20
rate_bps = 300_000_000 # 300Mbps
traffic = f'data traffic {ports[2]}'
tolerance = 0.05

# 1. Create bridge entity with STP enabled
out = await IpLink.add(input_data=[{dent: [
{'device': bridge, 'type': 'bridge', 'stp_state': 1}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

# 2. Enslave port to the bridge
out = await IpLink.set(input_data=[{dent: [
{'device': port,
'master': bridge} for port in ports]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Change the MAC addresses the bridge
rc, _ = await dent_device.run_cmd(f'ifconfig {bridge} hw ether 22:BB:4D:85:E7:098')
assert rc == 0, 'Failed to change MAC address'

out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge}]}])
assert out[0][dent]['rc'] == 0, 'Failed to add bridge'

out = await Mstpctl.set(input_data=[{dent: [
{'parameter': 'forcevers', 'bridge': bridge, 'version': version}
]}])
assert out[0][dent]['rc'] == 0, 'Failed to enable stp/rstp'

# 4. Set link up on all participant ports, bridge
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'} for port in ports] +
[{'device': bridge, 'operstate': 'up'}]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

out = await IpLink.set(input_data=[{dent: [
{'device': bridge,
'operstate': 'up'}]}])
assert out[0][dent]['rc'] == 0, 'Failed to set bridge to state UP'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': f'1.1.1.{idx}', 'gw': '1.1.1.5', 'plen': 24}
for idx, port in enumerate(tg_ports, start=1)
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 5. Setup streams
stp = {
'rootIdentifier': f'8000{root_mac.replace(":", "")}',
'bridgeIdentifier': f'8000{root_mac.replace(":", "")}',
'portIdentifier': '8002',
'messageAge': 1 << 8,
'frameSize': 100,
}
rstp = {
'agreement': 1,
'forwarding': 1,
'learning': 1,
'portRole': PortRole.DESIGNATED.value,
'proposal': 1,
'protocol': '0027',
} if version == 'rstp' else {}
streams = {
f'{ports[0]} {version}': {
'type': 'bpdu',
'version': version,
'ep_source': ports[0],
'ep_destination': ports[0],
'rate': 1, # pps
'allowSelfDestined': True,
'srcMac': root_mac,
**stp,
**rstp,
},
f'{ports[1]} {version}': {
'type': 'bpdu',
'version': version,
'ep_source': ports[1],
'ep_destination': ports[1],
'rate': 1, # pps
'allowSelfDestined': True,
'srcMac': rand_mac,
**stp,
**rstp,
'bridgeIdentifier': f'8000{rand_mac.replace(":", "")}',
},
traffic: {
'type': 'ethernet',
'ep_source': ports[2],
'frame_rate_type': 'bps_rate',
'srcMac': get_rand_mac('00:11:XX:XX:XX:XX'),
'rate': rate_bps,
}
}
await tgen_utils_setup_streams(tgen_dev, None, streams)
await tgen_utils_start_traffic(tgen_dev)
# don't stop
await asyncio.sleep(convergence_time_s)

for _ in range(5):
# 6. Verify port 2 state is blocking
out = await Mstpctl.show(input_data=[{dent: [
{'parameter': 'portdetail',
'bridge': bridge,
'options': '-f json'}]}], parse_output=True)
assert out[0][dent]['rc'] == 0, 'Failed to get port detail of '
ports_state = [bond['state'] for bond in out[0][dent]['parsed_output']]
assert 'discarding' == ports_state[1], 'Bridge does not have a blocking port'
await asyncio.sleep(convergence_time_s)

# 7. Verify traffic is forwarded and port 2 doesn't receive any traffic
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics')
for row in stats.Rows:
if row['Traffic Item'] == traffic and row['Rx Port'] == tg_ports[1]:
err_msg = f'Expected 0.0 got : {float(row["Rx Rate (Mbps)"])}'
assert isclose(float(row['Rx Rate (Mbps)']), 0.0, abs_tol=tolerance), err_msg
if row['Traffic Item'] == traffic and row['Rx Port'] in [tg_ports[0], tg_ports[3]]:
err_msg = f'Expected 300 got : {float(row["Rx Rate (Mbps)"])}'
> assert isclose(float(row['Rx Rate (Mbps)']), 300, rel_tol=tolerance), err_msg
E AssertionError: Expected 300 got : 258.933
E assert False
E + where False = isclose(258.933, 300, rel_tol=0.05)
E + where 258.933 = float('258.933')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py:341: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20314' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_switching_off_on[stp]">Starting testcase:test_stp_switching_off_on[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=293, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=294] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=294] Local address: 172.17.0.5, port 50240 INFO asyncssh:logging.py:92 [conn=294] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=294] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=294] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:31:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=294, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=294, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=294, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=294, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=294, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=294, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:31:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=294, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=294, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=294, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=294, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=294, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=294, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=12] Command: ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=294, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=294, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=294, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=294, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=294, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=294, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=294, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=294, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=294, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=294, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=294, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=294, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A3:0B:D8:97","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:A3:0B:D8:97","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:A3:0B:D8:97","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"62","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A3:0B:D8:97","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:0A:90:40:DE","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:0A:90:40:DE","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"62","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A3:0B:D8:97","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"82","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:A3:0B:D8:97","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"81","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591691d50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 80 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 80 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5858151 Rx 5858150 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5858151 Rx 477 Loss 99.992 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 5858151 Rx 5858150 Loss 0.000 INFO asyncssh:logging.py:92 [conn=294, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=294, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=24] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=294, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=294, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=26] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=294, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=294, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=28] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=294, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=294, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=30] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=294, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=294, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=294, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=32] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=294, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916924d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 174 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 174 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 12742917 Rx 10177074 Loss 20.135 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 12742917 Rx 3749574 Loss 70.575 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 12742917 Rx 10180326 Loss 20.110
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_switching_off_on[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=294, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=33] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=294, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=34] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=294, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=294, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:39:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=294, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=294, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:39:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=294, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=294, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=294, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":337,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=294, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=294, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=294, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=294, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=294, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=294, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=294, chan=42] Channel closed DEBUG infra1:Logger.py:156
XFailed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size 187.17
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>

@pytest.mark.xfail(reason='Device does not support fragmentation')
async def test_ipv4_ping_size(testbed):
"""
Test Name: test_ipv4_ping_size
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 ping size
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure IP addrs
4. Add dynamic arp entries
5. Generate ping with size smaller than mru and larger than mru
and verify fragmentation on the larger ping
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent_dev = dent_devices[0]
dent = dent_dev.host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24),
(ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24),
(ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24),
(ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24),
)

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'}
for port, *_ in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure IP addrs
out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

# 4. Add dynamic arp entries
streams = {
'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'],
'ip_destination': dev_groups[tg_ports[1]][0]['name']}
}
await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports

# 5. Generate ping with size smaller than mru
await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15)
for port, *_, dst, _ in address_map))

# Generate ping with size larger than mru and verify fragmentation
> await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15)
for port, *_, dst, _ in address_map))

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

dev = [DENT infrastructure 1: 10.36.118.46], port = 'swp33', dst = '1.1.1.2'
count = 1, interval = 0.1, size = 1473, timeout = 15

async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120):
cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}'
cmd += ' | grep "ping statistics" -A 2' # filter ouptut
rc, out = await dev.run_cmd(cmd)
assert rc == 0, f'Failed to send ping from {port} to {dst}'
> assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}'
E AssertionError: Some pings did not reach their destination
E --- 1.1.1.2 ping statistics ---
E 145 packets transmitted, 0 received, 100% packet loss, time 14995ms
E
E
E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 14995ms\n\n'

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8120' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.5, port 51524 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:17:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:17:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.199/0.199/0.199/0.000 ms INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.226/0.226/0.226/0.000 ms DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.233/0.233/0.233/0.000 ms INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.162/0.162/0.162/0.000 ms INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=21] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=23] Command: ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=24] Command: ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=25] Command: ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=26] Command: ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=156, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=23] Channel closed DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14995ms
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=156, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=156, chan=26] Channel closed DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14986ms DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14998ms DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14990ms INFO asyncssh:logging.py:92 [conn=156, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:20:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:20:47 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=156, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=156, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=156, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=156, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=156, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=38] Channel closed DEBUG infra1:Logger.py:156
XFailed functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation 207.93
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f8594186f20>

@pytest.mark.xfail(reason='Device does not support fragmentation')
async def test_ipv4_fragmentation(testbed):
"""
Test Name: test_ipv4_fragmentation
Test Suite: suite_functional_ipv4
Test Overview: Test IPv4 fragmentation
Test Procedure:
1. Init interfaces
2. Configure ports up
3. Configure IP addrs
4. Generate Non-fragment/fragment traffic and verify reception
"""
# 1. Init interfaces
tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4)
if not tgen_dev or not dent_devices:
pytest.skip('The testbed does not have enough dent with tgen connections')
dent = dent_devices[0].host_name
tg_ports = tgen_dev.links_dict[dent][0]
ports = tgen_dev.links_dict[dent][1]
traffic_duration = 10
fragmented = 1522
non_fragmented = 1420
address_map = (
# swp port, tg port, swp ip, tg ip, plen
(ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24),
(ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24),
(ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24),
(ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24),
)

# 2. Configure ports up
out = await IpLink.set(input_data=[{dent: [
{'device': port, 'operstate': 'up'}
for port, *_ in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to set port state UP'

# 3. Configure IP addrs
out = await IpAddress.add(input_data=[{dent: [
{'dev': port, 'prefix': f'{ip}/{plen}'}
for port, _, ip, _, plen in address_map
]}])
assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port'

dev_groups = tgen_utils_dev_groups_from_config(
{'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen}
for _, port, gw, ip, plen in address_map
)
await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups)

streams = {
f'{tg1} <-> {tg2} | frame size {size}': {
'type': 'ipv4',
'ip_source': dev_groups[tg1][0]['name'],
'ip_destination': dev_groups[tg2][0]['name'],
'protocol': 'ip',
'rate': '1000', # pps
'frameSize': size,
'bi_directional': True,
} for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented),
(tg_ports[2], tg_ports[3], fragmented))
}

# 4. Generate Non-fragment/fragment traffic and verify reception
await tgen_utils_setup_streams(tgen_dev, None, streams)

await tgen_utils_start_traffic(tgen_dev)
await asyncio.sleep(traffic_duration)
await tgen_utils_stop_traffic(tgen_dev)

# Verify packet discarded/fwd
stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics')
for row in stats.Rows:
loss = tgen_utils_get_loss(row)

if str(non_fragmented) in row['Traffic Item']:
assert loss == 0, f'Expected loss: 0%, actual: {loss}%'
assert row['Tx Frames'] == row['Rx Frames'], \
f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}"
else: # fragmented traffic
> assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \
f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}"
E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 27436
E assert 0 == (13718 * 2)
E + where 0 = int('0')
E + and 13718 = int('13718')

/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8326' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.5, port 44558 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:30:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:30:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5d720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 13718 Rx 13718 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 13718 Rx 13718 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 13718 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 13718 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:33:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:33:46 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] 76.71
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 74, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.5, port 42338 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:50:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:50:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:51:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:51:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] 54.01
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 74, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-56' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.5, port 42858 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:51:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:51:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:52:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:52:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] 60.76
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 74, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-98' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.5, port 47614 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:52:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:52:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:53:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:53:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] 55.78
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py', 74, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-140' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.5, port 49100 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:53:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:53:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:54:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:54:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] 104.04
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 81, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-238' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.5, port 38218 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:57:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:57:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] 55.24
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 81, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-280' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.5, port 50704 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] 107.34
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py', 81, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-378' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.5, port 37158 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:02:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:02:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:04:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:04:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] 84.26
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 74, 'Skipped: Need 2 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-564' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.5, port 44030 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:09:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:09:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:10:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:10:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] 56.03
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 74, 'Skipped: Need 2 ports with the same speed of 10 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-606' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.5, port 36436 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:10:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:10:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:11:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:11:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] 103.09
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 74, 'Skipped: Need 2 ports with the same speed of 100 and duplex half')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-704' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.5, port 35516 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:14:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:14:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:16:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:16:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=26] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] 61.21
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 103, 'Skipped: TGen does not support requested mode\nFailed updating L1 config: The only speed allowed in copper mode while AutoNegotiation is turned off is 100M\nSystem.Exception: The only speed allowed in copper mode while AutoNegotiation is turned off is 100M\n at IxNetwork.PortManager.PubVportL1ConfigMazumaTenGigLAN.SetSpeed(SDMValue speed)\n at IxNetwork.PortManager.PubVportL1ConfigMazumaTenGigLAN.Exit(EnterExitSingleObjectHandler_EnterArgs args)\n at SDMHelpers.WalkContext.walkTo(SDMObjId objid, Hashtable idMapResponse, EnterReason reason)\n at SDMHelpers.WalkContext.walkTo(SDMObjId objid, Hashtable idMapResponse, EnterReason reason)\n at SDMHelpers.SimplePublisher.Commit(ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitMessages, SDMSandbox track)\n at IxNetwork.PortManager.PortsPublisher.Commit(ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitMessages, SDMSandbox track)\n at SDMCsLib.SDMPeer.commitPiece(ArrayList deltasForPublisher, Hashtable idMapResponse, ArrayList commitExceptionsResponse, Version version, Boolean bCommitIfUnique)\n at SDMCsLib.SDMPeer.SANDBOX_DoCommit(Int32 eventMatch, ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitExceptionsResponse, Version version, Boolean bCommitIfUnique, eSandboxType sandboxType)\n at SDMCsLib.SDMSandbox.DoCommit(Boolean bCommitIfUnique, eSandboxType sandboxType)\n at SDMCsLib.RestService.SdmSandbox.Commit(Boolean isAddOperation)\n at SDMCsLib.RestService.SdmObject.Patch()\n at SDMCsLib.RestService.V1ObjectController.Patch(String path)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-746' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.5, port 57400 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:16:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:16:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': -1, 'result': 'The only speed allowed in copper mode while AutoNegotiation is turned off is 100M\nSystem.Exception: The only speed allowed in copper mode while AutoNegotiation is turned off is 100M\n at IxNetwork.PortManager.PubVportL1ConfigMazumaTenGigLAN.SetSpeed(SDMValue speed)\n at IxNetwork.PortManager.PubVportL1ConfigMazumaTenGigLAN.Exit(EnterExitSingleObjectHandler_EnterArgs args)\n at SDMHelpers.WalkContext.walkTo(SDMObjId objid, Hashtable idMapResponse, EnterReason reason)\n at SDMHelpers.WalkContext.walkTo(SDMObjId objid, Hashtable idMapResponse, EnterReason reason)\n at SDMHelpers.SimplePublisher.Commit(ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitMessages, SDMSandbox track)\n at IxNetwork.PortManager.PortsPublisher.Commit(ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitMessages, SDMSandbox track)\n at SDMCsLib.SDMPeer.commitPiece(ArrayList deltasForPublisher, Hashtable idMapResponse, ArrayList commitExceptionsResponse, Version version, Boolean bCommitIfUnique)\n at SDMCsLib.SDMPeer.SANDBOX_DoCommit(Int32 eventMatch, ArrayList commitDeltasRequest, Hashtable idMapResponse, ArrayList commitExceptionsResponse, Version version, Boolean bCommitIfUnique, eSandboxType sandboxType)\n at SDMCsLib.SDMSandbox.DoCommit(Boolean bCommitIfUnique, eSandboxType sandboxType)\n at SDMCsLib.RestService.SdmSandbox.Commit(Boolean isAddOperation)\n at SDMCsLib.RestService.SdmObject.Patch()\n at SDMCsLib.RestService.V1ObjectController.Patch(String path)'}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=28] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:17:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=17, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=32] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:17:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=36] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] 54.71
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 74, 'Skipped: Can not run test in device infra1 with the speed: 10000')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-798' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.5, port 35438 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:17:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:17:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:18:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:18:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed 80.30
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py', 74, 'Skipped: Need 1 ports with the same speed of 10 and duplex full')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-836' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.5, port 51158 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:18:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:18:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:19:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:19:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=30] Channel closed DEBUG infra1:Logger.py:156 []
Skipped functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle 0.00
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152')
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py
Skipped functional/vrrp/test_vrrp_advert.py::test_vrrp_advert_interval 3.02
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21333' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_advert_interval">Starting testcase:test_vrrp_advert_interval from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=319, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=320] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=320] Local address: 172.17.0.5, port 40482 INFO asyncssh:logging.py:92 [conn=320] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=320] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=320] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=320, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=320, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=320, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=320, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=320, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=320, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=320, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=320, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=320, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:57 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_advert_interval from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py INFO asyncssh:logging.py:92 [conn=320, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=320, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=320, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=320, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=320, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=320, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=320, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=320, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=320, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=320, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=320, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=320, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:57 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=320, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=320, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=320, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=320, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=320, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=320, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=320, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=320, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=320, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=320, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=320, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:57 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=320, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=320, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=320, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=320, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=320, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=320, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=320, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=320, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=320, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=320, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=320, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=320, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=320, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=320, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=320, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=320, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=320, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=320, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=320, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=320, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=320, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=320, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=320, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=320, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=320, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=320, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=320, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=320, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=320, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=320, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=320, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=320, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=320, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=320, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=320, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=320, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=320, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=320, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=320, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=320, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=320, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=320, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=320, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=320, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=320, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=320, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=320, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=320, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=320, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=320, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=320, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=320, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=320, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=320, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=320, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=320, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=320, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=320, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=320, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=320, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=320, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=320, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=320, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=320, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=320, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=320, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=320, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=320, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=320, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=320, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=320, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=320, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=320, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=320, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=320, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=320, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=320, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=320, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=320, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=320, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=320, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=320, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=320, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=320, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=320, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=320, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=320, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=320, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=320, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=320, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=320, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=320, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=320, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=320, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=320, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=320, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=320, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=320, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=320, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=320, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=320, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=320, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=320, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=320, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=320, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=320, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=320, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=320, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=320, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=320, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=320, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=320, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=320, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=320, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=320, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=320, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=320, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=320, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=320, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=320, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Skipped functional/vrrp/test_vrrp_advert.py::test_vrrp_advert_overflow 1.24
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21501' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_advert_overflow">Starting testcase:test_vrrp_advert_overflow from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=320, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=321] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=321] Local address: 172.17.0.5, port 40486 INFO asyncssh:logging.py:92 [conn=321] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=321] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=321] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=321, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=321, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=321, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=321, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=321, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=321, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=321, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=321, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=321, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=321, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=321, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=321, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=321, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=321, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=321, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=321, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=321, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=321, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=321, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=321, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=321, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:00 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_advert_overflow from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_advert.py INFO asyncssh:logging.py:92 [conn=321, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=321, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=321, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=321, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=321, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=18] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=321, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=321, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=321, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=321, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=321, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=321, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=321, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=321, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=321, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=321, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=321, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=321, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=321, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=321, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=321, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=29] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=321, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=30] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=321, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=321, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=321, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=321, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=321, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=321, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=321, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[port] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21552' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[port]">Starting testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=321, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=322] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=322] Local address: 172.17.0.5, port 40500 INFO asyncssh:logging.py:92 [conn=322] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=322] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=322] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=322, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=322, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=322, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=322, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=322, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=322, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=322, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=322, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=322, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=322, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=322, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=322, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=322, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=322, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=322, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=322, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=322, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=322, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=322, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=322, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=322, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=322, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=322, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=322, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=322, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=322, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=322, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=322, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=322, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=322, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=322, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=322, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[bridge] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21587' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[bridge]">Starting testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=322, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=323] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=323] Local address: 172.17.0.5, port 40514 INFO asyncssh:logging.py:92 [conn=323] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=323] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=323] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=323, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=323, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=323, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=323, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=323, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=323, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=323, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=323, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=323, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=323, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=323, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=323, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=323, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=323, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=323, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=323, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=323, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=323, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=323, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=323, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=323, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=323, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=323, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=323, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=323, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=323, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=323, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=323, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=323, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=323, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=323, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=323, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[port] 0.60
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21622' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[port]">Starting testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=323, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=324] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=324] Local address: 172.17.0.5, port 40526 INFO asyncssh:logging.py:92 [conn=324] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=324] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=324] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=324, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=324, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=324, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=324, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=324, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=324, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=324, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=324, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=324, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=324, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=324, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=324, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=324, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=324, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=324, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=324, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=324, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=324, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=324, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=324, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=324, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=324, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=324, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=324, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=324, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=324, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=324, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=324, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=324, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=324, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=324, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=324, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[bridge] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21657' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[bridge]">Starting testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=324, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=325] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=325] Local address: 172.17.0.5, port 55994 INFO asyncssh:logging.py:92 [conn=325] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=325] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=325] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=325, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=325, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=325, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=325, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=325, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=325, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=325, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=325, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=325, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=325, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=325, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=325, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=325, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=325, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=325, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=325, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=325, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=325, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=325, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:03 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=325, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=325, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=325, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=325, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=325, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=325, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=325, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=325, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=325, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=325, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=325, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=325, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=325, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_ifupdown.py::test_vrrp_ifupdown2 11.72
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_ifupdown.py', 85, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21692' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_ifupdown2">Starting testcase:test_vrrp_ifupdown2 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_ifupdown.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=325, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=326] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=326] Local address: 172.17.0.5, port 56008 INFO asyncssh:logging.py:92 [conn=326] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=326] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=326] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=326, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=326, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=326, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=326, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=326, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=326, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=326, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=326, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=326, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=326, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=7] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=326, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=8] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=326, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=8] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=326, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=326, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=10] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=326, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=326, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=326, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=12] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=326, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=12] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=326, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=326, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:03 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_ifupdown2 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_ifupdown.py INFO asyncssh:logging.py:92 [conn=326, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=15] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=326, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=16] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=326, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=326, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=326, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=18] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=326, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=18] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=326, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=326, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=326, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=326, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=326, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=326, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=326, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=326, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=326, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=326, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=326, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=326, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=326, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=326, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=326, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=326, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=326, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=326, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=326, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=326, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=326, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=326, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=326, chan=32] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_interact.py::test_vrrp_and_stp 0.98
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py', 84, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21740' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_and_stp">Starting testcase:test_vrrp_and_stp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=326, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=327] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=327] Local address: 172.17.0.5, port 47564 INFO asyncssh:logging.py:92 [conn=327] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=327] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=327] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=327, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=327, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=327, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=327, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=327, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=327, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=327, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=327, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=327, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=327, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=327, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=327, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=327, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=327, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=327, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=327, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=327, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_and_stp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py INFO asyncssh:logging.py:92 [conn=327, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=327, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=327, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=327, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=327, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=327, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=327, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=327, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=327, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=327, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=327, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=327, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=327, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=327, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=327, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=327, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=327, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=327, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=327, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=327, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=327, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=327, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=327, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=29] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=327, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=327, chan=30] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=327, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=327, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=327, chan=30] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_interact.py::test_vrrp_and_acl 2.83
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21795' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_and_acl">Starting testcase:test_vrrp_and_acl from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=327, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=328] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=328] Local address: 172.17.0.5, port 47578 INFO asyncssh:logging.py:92 [conn=328] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=328] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=328] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=328, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=328, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=328, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=328, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=328, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=328, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=328, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=328, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=328, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:15 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_and_acl from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_interact.py INFO asyncssh:logging.py:92 [conn=328, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=328, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=328, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=328, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=328, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=328, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=328, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=328, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=328, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=328, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=328, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=328, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=328, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=328, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=328, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=328, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=328, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=328, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=328, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=328, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=328, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:15 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=328, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=328, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=328, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=328, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=328, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=328, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=328, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=328, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=328, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=328, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=328, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=328, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=328, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=328, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=328, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=328, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=328, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=328, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=328, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=328, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=328, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=328, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=328, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=328, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=328, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=328, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=328, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=328, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=328, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=328, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=328, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=328, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=328, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=328, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=328, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=328, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=328, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=328, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=328, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=328, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=328, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=328, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=328, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=328, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=328, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=328, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=328, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=328, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=328, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=328, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=328, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=328, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=328, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=328, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=328, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=328, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=328, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=328, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=328, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=328, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=328, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=328, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=328, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=328, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=328, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=328, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=328, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=328, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=328, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=328, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=328, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=328, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=328, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=328, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=328, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=328, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=328, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=328, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=328, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=328, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=328, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=328, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=328, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=328, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=328, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=328, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=328, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=328, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=328, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=328, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=328, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=328, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=328, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=328, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=328, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=328, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=328, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=328, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=328, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=328, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=328, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=328, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=328, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=328, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=328, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=328, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=328, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=142] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=328, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=328, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=144] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=328, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=328, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=146] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=328, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=328, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=328, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=148] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=328, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=328, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=328, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=149] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=328, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=328, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=328, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=328, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=328, chan=150] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Skipped functional/vrrp/test_vrrp_preempt.py::test_vrrp_preempt_on[port] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21963' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_preempt_on[port]">Starting testcase:test_vrrp_preempt_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=328, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=329] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=329] Local address: 172.17.0.5, port 47584 INFO asyncssh:logging.py:92 [conn=329] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=329] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=329] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=329, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=329, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=329, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=329, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=329, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=329, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=329, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=329, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=329, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_preempt_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py INFO asyncssh:logging.py:92 [conn=329, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=329, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=329, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=329, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=329, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=329, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=329, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=329, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=329, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=329, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=329, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=329, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=329, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=329, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=329, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=329, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=329, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=329, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=329, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=329, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=329, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=329, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=329, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_preempt.py::test_vrrp_preempt_on[bridge] 0.47
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-21998' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_preempt_on[bridge]">Starting testcase:test_vrrp_preempt_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=329, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=330] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=330] Local address: 172.17.0.5, port 47586 INFO asyncssh:logging.py:92 [conn=330] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=330] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=330] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=330, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=330, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=330, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=330, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=330, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=330, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=330, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=330, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=330, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_preempt_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_preempt.py INFO asyncssh:logging.py:92 [conn=330, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=330, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=330, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=330, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=330, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=330, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=330, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=330, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=330, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=330, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:18 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=330, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=330, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=330, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=330, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=330, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=330, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=330, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=330, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=330, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=330, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=330, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=330, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=330, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[port] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22033' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[port]">Starting testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=330, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=331] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=331] Local address: 172.17.0.5, port 47594 INFO asyncssh:logging.py:92 [conn=331] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=331] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=331] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=331, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=331, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=331, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=331, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=331, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=331, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=331, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=331, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=331, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=331, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=331, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=331, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=331, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=331, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=331, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=331, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=331, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=331, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=331, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=331, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=331, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=331, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=331, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=331, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=331, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=331, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=331, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=331, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=331, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=331, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=331, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=331, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[bridge] 0.49
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22068' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[bridge]">Starting testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=331, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=332] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=332] Local address: 172.17.0.5, port 47608 INFO asyncssh:logging.py:92 [conn=332] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=332] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=332] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=332, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=332, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=332, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=332, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=332, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=332, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=332, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=332, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=332, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=332, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=332, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=332, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=332, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=332, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=332, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=332, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=332, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=332, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=332, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:19 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=332, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=332, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=332, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=332, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=332, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=332, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=332, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=332, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=332, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=332, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=332, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=332, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=332, chan=20] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_under_traffic.py::test_vrrp_under_traffic[bridge] 0.86
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22103' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_under_traffic[bridge]">Starting testcase:test_vrrp_under_traffic[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=332, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=333] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=333] Local address: 172.17.0.5, port 47610 INFO asyncssh:logging.py:92 [conn=333] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=333] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=333] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=333, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=333, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=333, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=333, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=333, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=333, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=333, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=333, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=333, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:20 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_under_traffic[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=333, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=333, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=333, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=333, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=333, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=333, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=333, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=333, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=333, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=333, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=333, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=333, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:20 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=333, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=333, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=333, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=333, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=333, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=333, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=333, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=333, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=333, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=333, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=333, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=333, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=333, chan=22] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_under_traffic.py::test_vrrp_under_traffic[vlan] 0.89
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22142' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_under_traffic[vlan]">Starting testcase:test_vrrp_under_traffic[vlan] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=333, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=334] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=334] Local address: 172.17.0.5, port 47622 INFO asyncssh:logging.py:92 [conn=334] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=334] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=334] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=334, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=334, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=334, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=334, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=334, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=334, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=334, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=334, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=334, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_under_traffic[vlan] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=334, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=334, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=334, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=334, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=334, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=334, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=334, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=334, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=334, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=334, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=334, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=334, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=334, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=334, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=334, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=334, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=334, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=334, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=334, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=334, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=334, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=334, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=334, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=334, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=334, chan=22] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_under_traffic.py::test_vrrp_under_traffic[port] 0.92
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22181' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_under_traffic[port]">Starting testcase:test_vrrp_under_traffic[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=334, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=335] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=335] Local address: 172.17.0.5, port 35688 INFO asyncssh:logging.py:92 [conn=335] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=335] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=335] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=335, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=335, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=335, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=335, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=335, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=335, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=335, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=335, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=335, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_under_traffic[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_under_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=335, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=335, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=335, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=335, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=335, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=335, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=335, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=335, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=335, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=335, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=335, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=335, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=335, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=335, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=335, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=335, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=335, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=335, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=335, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=335, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=335, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=335, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=335, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=335, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=335, chan=22] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_vrouter.py::test_vrrp_master_and_backup 0.85
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22221' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_master_and_backup">Starting testcase:test_vrrp_master_and_backup from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=335, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=336] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=336] Local address: 172.17.0.5, port 35704 INFO asyncssh:logging.py:92 [conn=336] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=336] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=336] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=336, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=336, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=336, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=336, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=336, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=336, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=336, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=336, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=336, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:22 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_master_and_backup from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py INFO asyncssh:logging.py:92 [conn=336, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=336, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=336, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=336, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=336, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=336, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=336, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=336, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=336, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=336, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=336, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=336, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=336, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=336, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=336, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=336, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=336, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=336, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=336, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=336, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=336, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=336, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=336, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=336, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=336, chan=22] Channel closed DEBUG infra1:Logger.py:156
Skipped functional/vrrp/test_vrrp_vrouter.py::test_vrrp_multiple_addr 0.86
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22260' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_multiple_addr">Starting testcase:test_vrrp_multiple_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=336, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=337] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=337] Local address: 172.17.0.5, port 35708 INFO asyncssh:logging.py:92 [conn=337] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=337] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=337] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=337, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=337, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=337, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=337, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=337, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=337, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=337, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=337, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=337, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:23 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_multiple_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py INFO asyncssh:logging.py:92 [conn=337, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=337, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=337, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=337, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=337, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=337, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=337, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=337, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=337, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=337, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=337, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=337, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=337, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=337, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=337, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=337, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=337, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=337, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=337, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=337, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=337, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=337, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=337, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=337, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=337, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Skipped functional/vrrp/test_vrrp_vrouter.py::test_vrrp_max_instances 0.93
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 61, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)')
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-22299' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_max_instances">Starting testcase:test_vrrp_max_instances from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=337, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=338] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=338] Local address: 172.17.0.5, port 35720 INFO asyncssh:logging.py:92 [conn=338] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=338] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=338] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=338, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=338, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=338, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=338, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=338, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=338, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=338, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=338, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=338, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:24 UTC 2023
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_max_instances from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_vrouter.py INFO asyncssh:logging.py:92 [conn=338, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=338, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=338, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=338, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=338, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=10] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=338, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=338, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=338, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=338, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=338, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=338, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=338, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=338, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=338, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=338, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=338, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=338, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=338, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=338, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=338, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=338, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=338, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=338, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=338, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=338, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:35:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] 170.05
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-182' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.5, port 60392 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:54:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:54:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85923e2b30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 1255280 Rx 1255280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 1255280 Rx 1255280 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:57:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=36] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:57:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=40] Channel closed DEBUG infra1:Logger.py:156
Passed functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] 162.91
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-322' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.5, port 46704 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 17:59:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:00:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922884c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 125033 Rx 125033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 125033 Rx 125033 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:02:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=36] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:02:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=40] Channel closed DEBUG infra1:Logger.py:156
Passed functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] 162.46
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-420' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.5, port 54420 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:04:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:04:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=26] Command: ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225e470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 1131879 Rx 1131879 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 1131879 Rx 1131879 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:07:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=36] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:07:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=40] Channel closed DEBUG infra1:Logger.py:156
Passed functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] 163.58
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-648' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.5, port 60148 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:11:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp33 DEBUG infra1:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: no DEBUG infra1:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: Unknown! Duplex: Unknown! (255) Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: no
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:11:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 100 on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 100 on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=28] Channel closed DEBUG infra1:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=30] Channel closed DEBUG infra1:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 --> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 --> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592289f60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 --> 10.36.118.199:2:2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 106407 Rx 106407 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 --> 10.36.118.199:2:1 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 106407 Rx 106407 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:14:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=36] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:14:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=40] Channel closed DEBUG infra1:Logger.py:156
Passed functional/L1/test_l1_port_state.py::test_l1_port_state_status 5.31
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-881' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete It took 0:00:00.035034 to grep count of entities. It took 0:00:05.093776 to set entities to 'UP' state.
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.5, port 35318 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:19:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG infra1:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether fe:d9:de:6d:ba:b4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 6a:eb:04:3a:11:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 4 bytes 272 (272.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4 bytes 272 (272.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.46 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::923c:b3ff:fe8b:ef34 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:34 txqueuelen 2048 (Ethernet) RX packets 6475 bytes 640749 (625.7 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 4975 bytes 608124 (593.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:37 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:38 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:39 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:40 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:41 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:42 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:43 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:44 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:45 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:46 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:47 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:48 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:49 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:50 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:52 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:53 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:54 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef57 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:57 txqueuelen 1000 (Ethernet) RX packets 2618647 bytes 1340725760 (1.2 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 2618828 bytes 1340752446 (1.2 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef58 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:58 txqueuelen 1000 (Ethernet) RX packets 2618647 bytes 1340725760 (1.2 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 2618827 bytes 1340753028 (1.2 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef59 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:59 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 12 bytes 1364 (1.3 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef5a prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:5a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 13 bytes 1438 (1.4 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=10] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:19:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}]
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] 188.23
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-900' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.5, port 35320 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:19:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592300bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1275 Rx 1275 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":32,"stats":{"bytes":652800,"packets":1275,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":652800,"hw_packets":1275,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1275, Rx Frames: 1275, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1275, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1275, packets = 1275, expected = 1275, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1275, hw_packets = 1275, expected = 1275, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592300f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1273 Rx 1273 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":27,"last_used":12,"first_used":24,"stats":{"bytes":633954,"packets":1273,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1273, Rx Frames: 1273, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1273, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1273, packets = 1273, expected = 1273, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225fee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1281 Rx 1281 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":28,"first_used":26,"stats":{"bytes":1293810,"packets":2562,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":637938,"sw_packets":1281,"hw_bytes":655872,"hw_packets":1281,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1281, Rx Frames: 1281, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1281, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1281, packets = 2562, expected = 2562, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1281, hw_packets = 1281, expected = 1281, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 1281, sw_packets = 1281, expected = 1281, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:22:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:22:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:22:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] 232.86
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-977' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.5, port 58264 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:22:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b73a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1300 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":31,"stats":{"bytes":665600,"packets":1300,"drops":1300,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":665600,"hw_packets":1300,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1300, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1300, drops = 1300, expected = 1300, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1300, packets = 1300, expected = 1300, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1300, hw_packets = 1300, expected = 1300, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225cf70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1176 Rx 1176 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":25,"last_used":11,"first_used":23,"stats":{"bytes":585648,"packets":1176,"drops":1176,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1176, Rx Frames: 1176, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1176, drops = 1176, expected = 1176, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1176, packets = 1176, expected = 1176, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225cb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1279 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":27,"stats":{"bytes":654848,"packets":1279,"drops":1279,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":654848,"hw_packets":1279,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1279, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1279, drops = 1279, expected = 1279, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1279, packets = 1279, expected = 1279, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1279, hw_packets = 1279, expected = 1279, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 1279, sw_packets = 0, expected = 0, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:26:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:26:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:26:28 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] 236.35
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1054' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.5, port 55460 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:26:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592301120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1279 Rx 1279 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":31,"stats":{"bytes":654848,"packets":1279,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":654848,"hw_packets":1279,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1279, Rx Frames: 1279, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1279, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1279, packets = 1279, expected = 1279, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1279, hw_packets = 1279, expected = 1279, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ef490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1276 Rx 1276 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":27,"last_used":12,"first_used":24,"stats":{"bytes":635448,"packets":1276,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1276, Rx Frames: 1276, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1276, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1276, packets = 1276, expected = 1276, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ef910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream SIP-DIP N/A Tx 1275 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":27,"first_used":24,"stats":{"bytes":1287750,"packets":2550,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":634950,"sw_packets":1275,"hw_bytes":652800,"hw_packets":1275,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 1275, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1275, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1275, packets = 2550, expected = 2550, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1275, hw_packets = 1275, expected = 1275, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 1275, sw_packets = 1275, expected = 1275, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_rule_deletion 16.83
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1131' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.5, port 54658 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10000 flower src_mac 02:f1:99:df:a3:57 dst_mac 02:b3:ed:ce:cd:7f vlan_id 2128 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10001 flower src_mac 02:3c:db:bc:18:2e dst_mac 02:d0:bf:88:62:d5 vlan_id 3723 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10002 flower src_mac 02:e0:ce:f4:a5:ab dst_mac 02:b5:8a:0a:bd:6c vlan_id 2287 vlan_ethtype 0x0800 src_ip 15.46.176.207 dst_ip 87.199.247.35 ip_proto tcp src_port 30588 dst_port 55783 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10003 flower src_mac 02:fd:54:5c:e7:8f dst_mac 02:62:5d:cd:03:10 src_ip 37.202.167.202 dst_ip 62.64.109.183 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10004 flower src_mac 02:40:1a:38:76:14 dst_mac 02:8e:e4:f6:d6:0d vlan_id 1331 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10005 flower src_mac 02:7d:79:8d:0b:d4 dst_mac 02:ef:1d:58:bc:cb src_ip 81.45.146.89 dst_ip 78.115.21.101 ip_proto icmp code 174 type 16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10006 flower src_mac 02:9f:72:54:b5:a6 dst_mac 02:62:0f:57:66:18 vlan_id 3615 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10007 flower src_mac 02:b8:78:34:21:2f dst_mac 02:94:27:0d:8a:34 vlan_id 414 vlan_ethtype ip src_ip 36.34.255.179 dst_ip 96.20.206.180 ip_proto udp src_port 28851 dst_port 18263 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10008 flower src_mac 02:7e:2f:fa:ed:cc dst_mac 02:9f:59:77:2d:71 vlan_id 3386 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10009 flower src_mac 02:36:99:58:20:e6 dst_mac 02:59:b1:19:8f:22 src_ip 31.136.126.143 dst_ip 77.237.161.241 ip_proto udp src_port 47686 dst_port 50600 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10010 flower src_mac 02:10:89:9e:2b:e8 dst_mac 02:31:5b:90:24:af vlan_id 3963 vlan_ethtype ip src_ip 99.88.142.203 dst_ip 114.204.227.164 ip_proto udp src_port 38312 dst_port 4478 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10011 flower src_mac 02:0f:c8:63:e2:d0 dst_mac 02:fa:96:a5:c9:aa vlan_id 2908 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10012 flower src_mac 02:ab:30:f6:0e:8a dst_mac 02:11:3d:66:56:4b vlan_id 3947 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10013 flower src_mac 02:13:f3:bd:3d:31 dst_mac 02:36:6a:86:c8:42 vlan_id 2534 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10014 flower src_mac 02:a3:b6:1b:2f:41 dst_mac 02:76:83:8e:ef:f0 vlan_id 3070 vlan_ethtype 0x0800 src_ip 117.242.178.234 dst_ip 80.60.147.24 ip_proto udp src_port 15425 dst_port 23621 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10015 flower src_mac 02:57:69:ad:30:dd dst_mac 02:d6:61:30:a6:22 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10016 flower src_mac 02:ec:64:c8:86:ba dst_mac 02:9c:c3:e0:54:c0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10017 flower src_mac 02:cf:b5:32:c6:f6 dst_mac 02:36:bf:e8:64:c7 vlan_id 1256 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10018 flower src_mac 02:2b:01:85:31:c9 dst_mac 02:be:e3:53:b9:57 vlan_id 1688 vlan_ethtype 0x0800 src_ip 22.136.162.75 dst_ip 124.129.174.186 ip_proto tcp src_port 28857 dst_port 21494 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10019 flower src_mac 02:38:a3:48:da:96 dst_mac 02:bb:cb:42:ba:0f src_ip 39.24.28.161 dst_ip 72.129.24.144 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10020 flower src_mac 02:04:81:54:9e:f1 dst_mac 02:2f:55:59:7e:0c src_ip 105.128.104.75 dst_ip 52.241.25.17 ip_proto tcp src_port 5556 dst_port 28502 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10021 flower src_mac 02:d1:fc:ea:68:df dst_mac 02:6e:5d:1d:3f:e3 vlan_id 1617 vlan_ethtype 0x0800 src_ip 69.143.162.239 dst_ip 92.57.149.47 ip_proto udp src_port 24116 dst_port 5170 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10022 flower src_mac 02:82:89:b9:13:49 dst_mac 02:c5:44:82:3e:53 vlan_id 109 vlan_ethtype ipv4 src_ip 100.83.9.4 dst_ip 72.231.241.171 ip_proto tcp src_port 34799 dst_port 45488 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10023 flower src_mac 02:22:24:a0:ed:85 dst_mac 02:c9:83:1e:91:6b vlan_id 2915 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10024 flower src_mac 02:de:4c:11:c8:18 dst_mac 02:ed:90:58:0a:d9 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10025 flower src_mac 02:7c:1f:ab:d8:19 dst_mac 02:51:9c:13:b0:f1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10026 flower src_mac 02:6e:a4:ff:87:4b dst_mac 02:92:d1:0f:46:43 vlan_id 915 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10027 flower src_mac 02:81:2b:38:0c:79 dst_mac 02:17:33:63:1f:2c action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10028 flower src_mac 02:df:11:f9:73:cb dst_mac 02:a0:c1:f2:bb:14 src_ip 38.171.19.74 dst_ip 18.97.245.205 ip_proto icmp code 131 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10029 flower src_mac 02:c1:a6:57:47:df dst_mac 02:e7:be:28:a2:b4 vlan_id 9 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10030 flower src_mac 02:6d:a0:f4:d3:77 dst_mac 02:8b:c0:16:e9:0b src_ip 64.152.64.27 dst_ip 111.249.250.166 ip_proto tcp src_port 53088 dst_port 38185 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10031 flower src_mac 02:ef:c6:21:f0:a3 dst_mac 02:80:b9:1f:ce:f0 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10032 flower src_mac 02:22:ec:28:30:a1 dst_mac 02:70:c0:44:9e:48 src_ip 123.174.0.147 dst_ip 40.14.108.172 ip_proto udp src_port 33930 dst_port 55298 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10033 flower src_mac 02:af:6f:0f:7c:0d dst_mac 02:8e:57:1e:b0:41 src_ip 115.23.115.115 dst_ip 121.161.29.123 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10034 flower src_mac 02:5e:72:06:bb:c0 dst_mac 02:a0:3d:97:cb:02 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10035 flower src_mac 02:7f:49:97:f2:11 dst_mac 02:bd:4b:9b:96:2c vlan_id 808 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10036 flower src_mac 02:33:eb:76:43:c3 dst_mac 02:d6:e5:47:80:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10037 flower src_mac 02:8b:9f:12:0d:67 dst_mac 02:d7:f8:a4:aa:d6 vlan_id 933 vlan_ethtype ipv4 src_ip 104.60.243.223 dst_ip 89.253.178.25 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10038 flower src_mac 02:f8:78:5c:84:97 dst_mac 02:65:fd:f9:9c:fb src_ip 23.136.54.163 dst_ip 120.152.231.224 ip_proto udp src_port 51745 dst_port 25160 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10039 flower src_mac 02:b7:e1:db:76:ad dst_mac 02:84:9f:4a:53:4e vlan_id 2591 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10040 flower src_mac 02:c8:ab:51:31:66 dst_mac 02:70:11:6a:19:c8 src_ip 37.183.99.83 dst_ip 12.39.198.165 ip_proto udp src_port 17064 dst_port 50246 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10041 flower src_mac 02:72:ef:70:2c:f4 dst_mac 02:59:fe:29:77:d2 vlan_id 3852 vlan_ethtype 0x0800 src_ip 18.244.11.98 dst_ip 55.34.154.63 ip_proto tcp src_port 22993 dst_port 13811 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10042 flower src_mac 02:b9:b2:2c:97:01 dst_mac 02:ef:de:6d:b1:f1 vlan_id 32 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10043 flower src_mac 02:44:ef:52:4f:d1 dst_mac 02:ff:29:1c:c7:27 src_ip 83.131.64.239 dst_ip 36.158.162.235 ip_proto udp src_port 27923 dst_port 43319 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10044 flower src_mac 02:aa:45:5a:31:a1 dst_mac 02:12:2d:d8:ca:60 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10045 flower src_mac 02:e9:32:7d:a8:29 dst_mac 02:21:c6:75:12:60 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10046 flower src_mac 02:a6:4b:29:50:b3 dst_mac 02:a9:b2:1e:5e:3a src_ip 92.206.158.28 dst_ip 64.243.41.161 ip_proto icmp code 138 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10047 flower src_mac 02:63:c2:1a:73:2d dst_mac 02:7c:97:e2:ed:c3 vlan_id 1208 vlan_ethtype ip src_ip 67.71.250.79 dst_ip 110.85.39.105 ip_proto tcp src_port 58938 dst_port 61319 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10048 flower src_mac 02:18:ea:05:07:e3 dst_mac 02:44:99:7a:62:10 vlan_id 2162 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10049 flower src_mac 02:c6:82:80:4b:a2 dst_mac 02:17:4b:54:dd:31 vlan_id 216 vlan_ethtype ip src_ip 100.123.224.224 dst_ip 24.151.60.161 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10050 flower src_mac 02:a9:4d:c4:8c:ce dst_mac 02:75:d8:38:5a:01 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10051 flower src_mac 02:84:32:af:c7:3d dst_mac 02:31:9f:bf:e8:13 src_ip 37.254.232.117 dst_ip 96.172.34.135 ip_proto udp src_port 595 dst_port 11626 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10052 flower src_mac 02:34:ef:08:4c:2a dst_mac 02:59:03:98:07:14 vlan_id 1895 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10053 flower src_mac 02:74:72:62:fe:ee dst_mac 02:e7:8c:a8:ed:3d src_ip 29.94.133.207 dst_ip 105.183.32.133 ip_proto udp src_port 20952 dst_port 63425 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10054 flower src_mac 02:f7:af:b9:4c:62 dst_mac 02:cb:3a:00:07:11 src_ip 110.237.199.236 dst_ip 119.33.138.43 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10055 flower src_mac 02:03:92:c5:52:15 dst_mac 02:a4:cf:ec:55:34 src_ip 92.109.99.237 dst_ip 19.114.159.122 ip_proto icmp code 20 type 5 action drop && tc filter add dev swp33 ingress protocol ip pref 10056 flower src_mac 02:d7:6f:2d:99:de dst_mac 02:48:94:f3:00:41 src_ip 84.123.66.64 dst_ip 30.254.79.140 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10057 flower src_mac 02:6a:14:35:db:bb dst_mac 02:7f:05:c5:10:0e vlan_id 2011 vlan_ethtype ip src_ip 76.62.9.34 dst_ip 36.126.58.169 ip_proto udp src_port 54410 dst_port 50485 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10058 flower src_mac 02:94:5d:30:eb:42 dst_mac 02:82:e9:ae:16:8f vlan_id 566 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10059 flower src_mac 02:f3:59:07:e0:e2 dst_mac 02:be:6c:ad:64:ed src_ip 18.142.146.13 dst_ip 45.235.13.161 ip_proto icmp code 165 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10060 flower src_mac 02:29:75:32:2e:00 dst_mac 02:16:cf:34:64:71 vlan_id 3791 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10061 flower src_mac 02:fe:b4:fc:84:04 dst_mac 02:96:06:dc:52:9a vlan_id 4078 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10062 flower src_mac 02:48:12:4d:dd:b4 dst_mac 02:12:d0:be:aa:9e vlan_id 2269 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10063 flower src_mac 02:e1:f2:37:6e:b0 dst_mac 02:ab:27:fa:59:99 vlan_id 357 vlan_ethtype ip src_ip 80.48.77.134 dst_ip 77.77.50.209 action drop && tc filter add dev swp33 ingress protocol ip pref 10064 flower src_mac 02:24:b9:62:24:7c dst_mac 02:65:ac:2b:ec:e0 src_ip 105.213.117.149 dst_ip 101.35.229.195 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10065 flower src_mac 02:86:eb:c0:5d:5b dst_mac 02:45:ad:a2:7c:10 vlan_id 1071 vlan_ethtype ipv4 src_ip 81.159.90.204 dst_ip 11.202.246.215 action pass && tc filter add dev swp33 ingress protocol ip pref 10066 flower src_mac 02:80:66:e5:d8:ec dst_mac 02:4e:ac:98:ad:97 src_ip 53.232.57.7 dst_ip 86.121.142.183 ip_proto tcp src_port 60669 dst_port 40526 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10067 flower src_mac 02:f4:fb:10:a2:e8 dst_mac 02:39:db:82:a0:7c action trap && tc filter add dev swp33 ingress protocol ip pref 10068 flower src_mac 02:0d:5a:8b:e0:36 dst_mac 02:79:f5:5a:9a:d5 src_ip 22.163.62.129 dst_ip 50.44.75.147 ip_proto icmp code 88 type 5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10069 flower src_mac 02:58:3a:4e:44:6c dst_mac 02:2f:c9:8e:c3:7b vlan_id 365 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10070 flower src_mac 02:10:b5:e0:55:96 dst_mac 02:42:e3:d2:e5:31 vlan_id 2500 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10071 flower src_mac 02:06:1c:23:ec:6a dst_mac 02:8c:86:6a:e5:dd src_ip 81.239.143.143 dst_ip 85.52.241.164 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10072 flower src_mac 02:0e:9c:5f:a0:25 dst_mac 02:28:f6:34:b1:64 vlan_id 3719 vlan_ethtype ip src_ip 25.133.171.44 dst_ip 46.177.196.32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10073 flower src_mac 02:a3:1c:56:8a:51 dst_mac 02:43:4b:fe:71:95 vlan_id 3820 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10074 flower src_mac 02:15:4d:12:1e:c7 dst_mac 02:8d:25:45:72:c0 vlan_id 2541 vlan_ethtype ip src_ip 89.0.184.171 dst_ip 67.42.187.55 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10075 flower src_mac 02:bd:17:3d:71:2f dst_mac 02:03:af:7d:a4:1a vlan_id 1511 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10076 flower src_mac 02:c1:1d:47:c5:40 dst_mac 02:60:66:73:88:5e vlan_id 523 vlan_ethtype 0x0800 src_ip 92.9.152.227 dst_ip 40.168.223.73 ip_proto tcp src_port 52712 dst_port 39571 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10077 flower src_mac 02:b5:a7:02:77:63 dst_mac 02:9b:22:66:87:5e vlan_id 307 vlan_ethtype ipv4 src_ip 56.223.99.95 dst_ip 28.105.66.17 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10078 flower src_mac 02:67:c4:14:11:4f dst_mac 02:4d:c0:fd:69:4e vlan_id 3200 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10079 flower src_mac 02:8f:57:15:06:5f dst_mac 02:59:0c:26:b5:9e src_ip 98.231.134.91 dst_ip 110.99.11.77 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10080 flower src_mac 02:64:ee:16:0b:ad dst_mac 02:f0:d7:da:d2:30 src_ip 78.179.20.12 dst_ip 49.34.182.153 action pass && tc filter add dev swp33 ingress protocol ip pref 10081 flower src_mac 02:8c:37:07:26:8d dst_mac 02:45:8a:98:65:1d src_ip 96.235.7.72 dst_ip 59.154.12.82 ip_proto udp src_port 19872 dst_port 15836 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10082 flower src_mac 02:8a:84:fa:5b:da dst_mac 02:20:6f:ab:22:53 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10083 flower src_mac 02:48:b2:2f:63:a4 dst_mac 02:b5:e1:65:f2:1f vlan_id 3299 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10084 flower src_mac 02:30:13:f8:35:74 dst_mac 02:0a:d6:f1:d7:9f src_ip 78.83.67.54 dst_ip 92.206.141.91 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10085 flower src_mac 02:bb:d7:b9:dc:ec dst_mac 02:04:e7:51:a5:d7 vlan_id 2105 vlan_ethtype ip src_ip 53.43.248.83 dst_ip 121.167.186.152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:d9:2d:c9:03:cc dst_mac 02:f8:77:10:6a:fa vlan_id 110 vlan_ethtype ip src_ip 64.193.239.129 dst_ip 61.15.124.89 ip_proto tcp src_port 59491 dst_port 18899 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10087 flower src_mac 02:94:65:89:b6:3e dst_mac 02:0b:06:14:ae:a0 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10088 flower src_mac 02:4b:f8:3c:ba:ee dst_mac 02:dc:b9:36:32:7c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10089 flower src_mac 02:a9:65:cd:d7:dc dst_mac 02:db:45:01:62:43 src_ip 97.192.169.134 dst_ip 51.88.183.37 ip_proto icmp code 42 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10090 flower src_mac 02:f9:b6:46:fc:fe dst_mac 02:09:f9:83:1e:04 vlan_id 3144 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10091 flower src_mac 02:f2:66:ba:3a:9d dst_mac 02:74:07:82:1c:7f vlan_id 1217 vlan_ethtype ipv4 src_ip 59.31.171.150 dst_ip 54.200.39.59 ip_proto tcp src_port 37628 dst_port 51044 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10092 flower src_mac 02:4f:be:ef:f1:7c dst_mac 02:0a:4a:08:a9:3b action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10093 flower src_mac 02:7e:4d:34:3d:61 dst_mac 02:75:2f:08:68:37 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10094 flower src_mac 02:ac:01:1f:cc:ab dst_mac 02:13:12:d4:dc:cc action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10095 flower src_mac 02:3b:67:82:e9:58 dst_mac 02:4a:54:50:90:94 vlan_id 3269 vlan_ethtype ipv4 src_ip 52.186.157.233 dst_ip 85.106.173.169 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10096 flower src_mac 02:21:96:47:22:b2 dst_mac 02:35:bc:ca:d0:ec vlan_id 2731 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10097 flower src_mac 02:93:fd:ba:8b:db dst_mac 02:a3:91:71:6d:ef vlan_id 2362 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10098 flower src_mac 02:72:06:10:16:78 dst_mac 02:26:e4:1e:4b:8b src_ip 110.93.72.58 dst_ip 94.250.73.113 ip_proto udp src_port 29725 dst_port 12192 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10099 flower src_mac 02:69:f3:2b:42:f2 dst_mac 02:aa:00:21:e3:36 vlan_id 2452 vlan_ethtype 0x0800 src_ip 22.87.211.135 dst_ip 60.129.35.158 ip_proto udp src_port 42219 dst_port 58824 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10100 flower src_mac 02:f3:4f:ab:79:d3 dst_mac 02:9e:11:7f:31:03 src_ip 35.34.201.26 dst_ip 48.153.255.3 ip_proto tcp src_port 47093 dst_port 3877 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10101 flower src_mac 02:60:34:ad:4c:9a dst_mac 02:7e:ad:6b:4d:da vlan_id 3792 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10102 flower src_mac 02:a6:d7:9d:83:14 dst_mac 02:b9:de:f5:6b:3f vlan_id 3755 vlan_ethtype ip src_ip 93.33.248.25 dst_ip 113.201.83.167 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10103 flower src_mac 02:79:67:13:18:15 dst_mac 02:b8:0a:a2:11:ba src_ip 33.35.160.7 dst_ip 74.226.3.248 ip_proto icmp code 197 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10104 flower src_mac 02:8c:c5:d3:96:73 dst_mac 02:6e:d8:bf:ec:cf vlan_id 2631 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10105 flower src_mac 02:92:5b:b4:d0:f9 dst_mac 02:c7:74:34:3d:3c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10106 flower src_mac 02:51:e8:89:f0:3c dst_mac 02:f4:4d:8d:ef:3a vlan_id 2691 vlan_ethtype 0x0800 src_ip 111.39.71.190 dst_ip 94.229.10.6 ip_proto udp src_port 44201 dst_port 51311 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10107 flower src_mac 02:58:bf:56:51:a8 dst_mac 02:fc:53:80:ab:c8 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10108 flower src_mac 02:de:e1:12:2b:6f dst_mac 02:bc:13:ce:99:c1 src_ip 78.219.64.212 dst_ip 76.171.164.147 ip_proto udp src_port 36911 dst_port 30226 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10109 flower src_mac 02:54:49:a9:88:44 dst_mac 02:46:3e:9a:76:62 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10110 flower src_mac 02:e0:01:cd:84:de dst_mac 02:47:cf:8d:d7:b8 vlan_id 1335 vlan_ethtype ipv4 src_ip 12.217.190.212 dst_ip 77.21.168.175 ip_proto udp src_port 17113 dst_port 37019 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10111 flower src_mac 02:44:e6:41:23:01 dst_mac 02:ca:04:07:67:c6 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10112 flower src_mac 02:39:1d:21:12:ae dst_mac 02:24:1d:fe:b4:00 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10113 flower src_mac 02:4a:fe:4a:b0:31 dst_mac 02:85:24:db:3c:2b vlan_id 1718 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10114 flower src_mac 02:44:f1:a1:b2:98 dst_mac 02:a5:54:be:ea:ae vlan_id 1208 vlan_ethtype ip src_ip 82.36.200.167 dst_ip 64.116.107.76 ip_proto tcp src_port 10893 dst_port 9863 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10115 flower src_mac 02:da:4c:60:fc:5a dst_mac 02:b5:d4:66:22:2f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10116 flower src_mac 02:0d:95:15:72:5d dst_mac 02:cc:a4:58:0e:09 vlan_id 2407 vlan_ethtype ip src_ip 123.229.3.55 dst_ip 94.72.148.224 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10117 flower src_mac 02:c7:b5:0e:f8:28 dst_mac 02:b1:9b:5d:50:99 vlan_id 1454 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10118 flower src_mac 02:dd:f1:23:fd:45 dst_mac 02:40:f2:04:90:ca vlan_id 2409 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10119 flower src_mac 02:9d:7f:59:cc:07 dst_mac 02:67:e9:41:1f:86 src_ip 47.162.222.155 dst_ip 21.221.187.9 ip_proto udp src_port 1298 dst_port 13239 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10120 flower src_mac 02:60:d2:19:43:eb dst_mac 02:88:91:1b:5d:2a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10121 flower src_mac 02:c0:e2:28:21:36 dst_mac 02:08:04:33:5a:3c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10122 flower src_mac 02:60:f9:c3:bb:7b dst_mac 02:3b:58:8d:02:09 vlan_id 2470 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10123 flower src_mac 02:f4:37:13:d2:99 dst_mac 02:36:64:94:fb:97 src_ip 94.160.108.48 dst_ip 93.191.41.169 ip_proto udp src_port 53963 dst_port 20160 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10124 flower src_mac 02:17:ec:b7:9c:f3 dst_mac 02:bb:9b:84:85:29 vlan_id 3484 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10125 flower src_mac 02:4c:cb:1b:c7:ad dst_mac 02:9f:f7:77:65:65 src_ip 25.5.90.51 dst_ip 88.197.189.242 ip_proto udp src_port 40702 dst_port 56220 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10126 flower src_mac 02:3e:65:b3:08:da dst_mac 02:0a:1d:28:71:63 vlan_id 2282 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10127 flower src_mac 02:68:f9:19:13:73 dst_mac 02:22:4b:e3:74:25 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10128 flower src_mac 02:81:e6:cc:b6:2f dst_mac 02:ea:e3:42:de:08 vlan_id 2304 vlan_ethtype 0x0800 src_ip 15.92.185.179 dst_ip 15.42.93.60 ip_proto udp src_port 31313 dst_port 7257 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10129 flower src_mac 02:0a:83:a0:a9:c0 dst_mac 02:45:2c:09:bc:0b vlan_id 3679 vlan_ethtype ip src_ip 33.50.113.62 dst_ip 44.65.235.97 ip_proto udp src_port 24337 dst_port 21334 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10130 flower src_mac 02:40:c4:5c:10:a2 dst_mac 02:00:4e:67:77:05 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10131 flower src_mac 02:21:dc:b2:f9:40 dst_mac 02:15:04:7f:06:dd vlan_id 3931 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10132 flower src_mac 02:27:25:03:8f:9b dst_mac 02:7f:c1:12:a3:d3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10133 flower src_mac 02:86:25:30:b5:3a dst_mac 02:7f:56:41:94:34 vlan_id 823 vlan_ethtype 0x0800 src_ip 59.98.97.23 dst_ip 95.138.251.171 ip_proto tcp src_port 18239 dst_port 18200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10134 flower src_mac 02:ee:eb:a8:4b:ce dst_mac 02:67:4b:ad:92:4e vlan_id 150 vlan_ethtype 0x0800 src_ip 76.206.251.78 dst_ip 112.132.42.99 ip_proto tcp src_port 46709 dst_port 4283 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10135 flower src_mac 02:46:2c:5d:5c:5d dst_mac 02:1a:a5:ee:f9:33 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10136 flower src_mac 02:f6:b5:46:f9:ac dst_mac 02:e1:3c:e8:02:d1 vlan_id 477 vlan_ethtype 0x0800 src_ip 123.56.193.27 dst_ip 117.154.124.154 ip_proto tcp src_port 6669 dst_port 55256 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10137 flower src_mac 02:c8:e7:4e:3a:1e dst_mac 02:97:fe:3d:fd:01 vlan_id 969 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10138 flower src_mac 02:48:dc:63:e7:ba dst_mac 02:84:bf:ba:bb:22 src_ip 17.252.223.18 dst_ip 52.195.32.184 ip_proto tcp src_port 20083 dst_port 19098 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10139 flower src_mac 02:68:43:80:30:bd dst_mac 02:0e:6c:79:6b:74 vlan_id 2959 vlan_ethtype 0x0800 src_ip 48.107.69.117 dst_ip 65.91.166.140 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10140 flower src_mac 02:11:3d:9b:2d:1e dst_mac 02:34:3a:37:f9:cf vlan_id 1008 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10141 flower src_mac 02:25:6b:2c:2f:e7 dst_mac 02:ae:b6:3a:26:73 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10142 flower src_mac 02:0a:16:8f:17:1b dst_mac 02:aa:2a:d4:a3:d9 vlan_id 1538 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10143 flower src_mac 02:4a:69:b2:d2:35 dst_mac 02:da:d8:6b:e3:07 src_ip 124.70.150.225 dst_ip 33.135.217.65 ip_proto tcp src_port 13389 dst_port 58281 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10144 flower src_mac 02:dd:18:a6:11:b3 dst_mac 02:24:79:c6:e4:a2 vlan_id 2590 vlan_ethtype ipv4 src_ip 111.184.222.144 dst_ip 118.79.108.121 ip_proto tcp src_port 42004 dst_port 44269 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10145 flower src_mac 02:14:da:00:8a:0e dst_mac 02:95:a6:b5:3b:c5 vlan_id 392 vlan_ethtype 0x0800 src_ip 17.77.81.147 dst_ip 104.14.200.80 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10146 flower src_mac 02:5f:ed:2e:ed:7b dst_mac 02:ae:38:34:74:9c action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10147 flower src_mac 02:f3:44:17:82:fc dst_mac 02:35:44:03:bb:e6 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10148 flower src_mac 02:06:ff:72:04:07 dst_mac 02:f6:cb:93:59:15 action pass && tc filter add dev swp33 ingress protocol ip pref 10149 flower src_mac 02:4d:f5:1b:cb:61 dst_mac 02:c0:a0:71:0e:44 src_ip 51.18.189.143 dst_ip 47.86.159.186 ip_proto tcp src_port 25674 dst_port 60703 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10150 flower src_mac 02:56:b7:54:81:eb dst_mac 02:c0:66:85:63:2a vlan_id 236 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10151 flower src_mac 02:2f:69:96:e9:d5 dst_mac 02:97:6b:6c:4b:ee action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10152 flower src_mac 02:f1:7b:6f:37:90 dst_mac 02:ec:de:3b:60:43 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10153 flower src_mac 02:93:67:ae:b8:e6 dst_mac 02:fa:a4:fb:c3:d1 vlan_id 1380 vlan_ethtype ipv4 src_ip 32.139.94.170 dst_ip 118.96.141.186 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10154 flower src_mac 02:e4:ba:89:20:54 dst_mac 02:31:bf:ea:4a:c7 vlan_id 2130 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10155 flower src_mac 02:57:10:35:69:e1 dst_mac 02:bd:6c:3d:73:80 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10156 flower src_mac 02:dd:d1:55:81:e0 dst_mac 02:26:8e:77:cf:c7 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10157 flower src_mac 02:a2:dd:10:dc:9c dst_mac 02:22:92:a4:4f:46 src_ip 124.2.233.204 dst_ip 56.207.228.42 action drop && tc filter add dev swp33 ingress protocol ip pref 10158 flower src_mac 02:67:4b:6a:b5:2e dst_mac 02:93:60:ee:e5:5b src_ip 76.242.194.136 dst_ip 66.171.46.112 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10159 flower src_mac 02:fd:8c:05:e8:28 dst_mac 02:fc:06:2e:4f:30 src_ip 70.214.204.203 dst_ip 79.125.95.202 ip_proto tcp src_port 27786 dst_port 34933 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10160 flower src_mac 02:ae:f5:ba:f7:c4 dst_mac 02:9e:22:3d:b0:5a vlan_id 2448 vlan_ethtype 0x0800 src_ip 73.23.122.61 dst_ip 14.99.141.170 ip_proto tcp src_port 26279 dst_port 50221 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10161 flower src_mac 02:c1:bd:4d:52:06 dst_mac 02:d8:54:a1:7c:e7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10162 flower src_mac 02:cb:99:29:e6:0b dst_mac 02:a6:d6:5a:b6:55 vlan_id 660 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10163 flower src_mac 02:d6:80:c7:c6:ff dst_mac 02:c2:45:6a:14:3a action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10164 flower src_mac 02:1f:8c:a6:2b:e8 dst_mac 02:d2:79:1b:42:f0 src_ip 15.98.154.133 dst_ip 109.150.162.237 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10165 flower src_mac 02:24:5a:83:31:a0 dst_mac 02:a4:90:b5:97:ec vlan_id 2741 vlan_ethtype 0x0800 src_ip 28.83.156.240 dst_ip 73.104.149.213 ip_proto udp src_port 36795 dst_port 62091 action pass && tc filter add dev swp33 ingress protocol ip pref 10166 flower src_mac 02:68:93:4c:cb:14 dst_mac 02:71:49:32:68:da src_ip 122.109.17.117 dst_ip 41.56.153.192 ip_proto icmp code 99 type 11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10167 flower src_mac 02:6e:0b:74:d9:cd dst_mac 02:b7:04:bf:30:ca vlan_id 998 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10168 flower src_mac 02:48:17:90:7c:89 dst_mac 02:a6:bd:e0:93:73 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10169 flower src_mac 02:07:51:ca:22:66 dst_mac 02:a9:ab:8d:3a:00 src_ip 95.19.54.246 dst_ip 70.17.142.103 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10170 flower src_mac 02:79:66:25:c7:db dst_mac 02:1f:34:33:da:d0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10171 flower src_mac 02:27:d7:a5:d0:0b dst_mac 02:f1:48:32:d7:67 vlan_id 3469 vlan_ethtype ip src_ip 71.88.40.65 dst_ip 86.44.213.103 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10172 flower src_mac 02:f1:81:f5:9c:e0 dst_mac 02:e9:91:99:b9:57 vlan_id 1568 vlan_ethtype 0x0800 src_ip 25.56.172.93 dst_ip 70.25.255.137 ip_proto udp src_port 15979 dst_port 26784 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10173 flower src_mac 02:42:91:b1:4e:65 dst_mac 02:30:c2:a5:72:c2 vlan_id 3785 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10174 flower src_mac 02:9e:28:08:17:cf dst_mac 02:b4:d9:52:3b:b5 vlan_id 1144 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10175 flower src_mac 02:32:67:41:c6:62 dst_mac 02:bc:e5:46:7f:73 vlan_id 3685 vlan_ethtype ip src_ip 73.175.84.94 dst_ip 72.27.109.233 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10176 flower src_mac 02:cb:04:d3:a8:4a dst_mac 02:e8:c5:b1:41:c2 vlan_id 4075 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10177 flower src_mac 02:cd:58:e4:f4:04 dst_mac 02:62:0a:f4:6d:d8 vlan_id 2175 vlan_ethtype ip src_ip 12.238.144.121 dst_ip 102.142.115.211 ip_proto tcp src_port 10454 dst_port 36045 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10178 flower src_mac 02:1e:b7:41:b9:5e dst_mac 02:e3:36:bb:b2:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10179 flower src_mac 02:62:8c:4b:63:af dst_mac 02:16:29:ff:ee:3c action drop && tc filter add dev swp33 ingress protocol ip pref 10180 flower src_mac 02:bd:0a:2f:39:3f dst_mac 02:5b:c4:46:9c:f0 src_ip 85.226.91.79 dst_ip 100.12.132.74 ip_proto udp src_port 62333 dst_port 22459 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10181 flower src_mac 02:97:f7:dd:b6:25 dst_mac 02:f3:d8:7e:67:0d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10182 flower src_mac 02:c3:18:fc:cd:68 dst_mac 02:45:6b:7b:31:15 vlan_id 3093 vlan_ethtype ip src_ip 19.24.156.29 dst_ip 22.1.244.93 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10183 flower src_mac 02:cc:d2:43:21:cd dst_mac 02:ec:85:be:4c:9a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10184 flower src_mac 02:f2:6d:7b:3e:67 dst_mac 02:72:73:ea:44:3a action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10185 flower src_mac 02:e0:fc:95:a2:02 dst_mac 02:4e:39:19:ca:a5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10186 flower src_mac 02:eb:fd:3b:91:55 dst_mac 02:5d:35:10:d6:a6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10187 flower src_mac 02:27:9b:00:88:59 dst_mac 02:75:b3:f2:72:c0 vlan_id 760 vlan_ethtype 0x0800 src_ip 100.40.191.214 dst_ip 104.214.55.16 ip_proto tcp src_port 29730 dst_port 61881 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10188 flower src_mac 02:b5:59:0a:43:a5 dst_mac 02:bd:45:05:35:c8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10189 flower src_mac 02:c9:7d:02:de:3f dst_mac 02:33:02:fa:12:8c vlan_id 2733 vlan_ethtype ipv4 src_ip 125.105.195.16 dst_ip 28.219.77.129 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:76:db:49:4c:4a dst_mac 02:46:3e:88:e4:04 vlan_id 2116 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10191 flower src_mac 02:80:c9:c6:3f:d9 dst_mac 02:d9:4f:65:45:1d action pass && tc filter add dev swp33 ingress protocol ip pref 10192 flower src_mac 02:f1:48:c5:ea:ff dst_mac 02:82:98:8a:4c:04 src_ip 32.212.252.218 dst_ip 122.148.6.172 ip_proto udp src_port 26604 dst_port 35401 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10193 flower src_mac 02:0c:da:ba:ee:58 dst_mac 02:e3:55:98:32:15 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10194 flower src_mac 02:72:48:a6:2f:86 dst_mac 02:6c:09:b5:3f:b2 src_ip 52.167.119.61 dst_ip 109.94.96.195 ip_proto tcp src_port 30737 dst_port 26662 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10195 flower src_mac 02:a4:36:69:07:79 dst_mac 02:0d:06:ca:1f:e4 vlan_id 634 vlan_ethtype ip src_ip 16.165.64.195 dst_ip 22.31.101.178 ip_proto udp src_port 19163 dst_port 778 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10196 flower src_mac 02:46:43:72:4f:89 dst_mac 02:b4:62:9f:01:47 vlan_id 3068 vlan_ethtype 0x0800 src_ip 83.222.154.133 dst_ip 50.237.171.87 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10197 flower src_mac 02:3c:84:be:92:2c dst_mac 02:e4:96:1b:35:54 src_ip 121.73.15.208 dst_ip 59.64.254.58 ip_proto icmp code 63 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10198 flower src_mac 02:fd:05:82:ad:0a dst_mac 02:26:f0:a1:d9:8c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10199 flower src_mac 02:09:9d:ee:ef:34 dst_mac 02:63:f3:81:4e:9b vlan_id 3457 vlan_ethtype ip src_ip 104.175.76.84 dst_ip 79.209.65.37 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10200 flower src_mac 02:6b:da:c8:30:0a dst_mac 02:27:dc:21:04:f6 vlan_id 2096 vlan_ethtype 0x0800 src_ip 55.144.199.12 dst_ip 65.117.135.117 ip_proto udp src_port 59262 dst_port 26227 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10201 flower src_mac 02:32:43:a0:af:4a dst_mac 02:bc:b8:65:fb:55 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10202 flower src_mac 02:50:56:99:32:4b dst_mac 02:b4:4c:c0:3c:f9 src_ip 19.217.140.8 dst_ip 17.68.28.148 ip_proto tcp src_port 25858 dst_port 58908 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10203 flower src_mac 02:bc:0a:84:36:50 dst_mac 02:d9:0b:5e:ec:51 vlan_id 1804 vlan_ethtype 0x0800 src_ip 105.95.242.95 dst_ip 73.168.197.149 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10204 flower src_mac 02:36:65:65:35:8d dst_mac 02:13:a9:4b:8d:ad action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10205 flower src_mac 02:fe:ac:0a:df:02 dst_mac 02:7a:68:db:79:61 src_ip 94.177.93.223 dst_ip 13.44.222.197 ip_proto tcp src_port 29253 dst_port 42680 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10206 flower src_mac 02:1d:3f:ee:17:04 dst_mac 02:07:92:b8:4d:85 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10207 flower src_mac 02:24:59:5c:1e:67 dst_mac 02:f8:32:6b:23:fb action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10208 flower src_mac 02:f5:0b:df:4d:49 dst_mac 02:e9:07:da:6a:87 src_ip 122.2.255.114 dst_ip 23.69.38.238 ip_proto udp src_port 14300 dst_port 13081 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10209 flower src_mac 02:4f:10:65:8e:b9 dst_mac 02:bb:5c:0c:ee:54 vlan_id 1828 vlan_ethtype ip src_ip 52.182.112.130 dst_ip 48.144.203.58 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10210 flower src_mac 02:c6:a6:67:f2:34 dst_mac 02:f2:47:d8:a8:bc vlan_id 2604 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10211 flower src_mac 02:fd:7e:09:84:23 dst_mac 02:2c:f0:04:3d:0f src_ip 101.151.32.249 dst_ip 49.144.63.153 ip_proto tcp src_port 11638 dst_port 53652 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10212 flower src_mac 02:a3:be:04:be:52 dst_mac 02:6d:e1:d5:cd:82 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10213 flower src_mac 02:79:fd:b4:f7:33 dst_mac 02:bf:15:73:f7:b7 vlan_id 968 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10214 flower src_mac 02:1a:c6:6b:f0:47 dst_mac 02:b2:88:7a:18:7e vlan_id 900 vlan_ethtype 0x0800 src_ip 30.165.204.11 dst_ip 48.174.165.207 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10215 flower src_mac 02:88:db:1b:83:b3 dst_mac 02:c4:f0:0a:95:90 src_ip 112.215.189.139 dst_ip 104.159.140.201 ip_proto icmp code 57 type 5 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10216 flower src_mac 02:ca:05:e0:46:54 dst_mac 02:d8:b7:c4:1c:c1 src_ip 80.224.255.107 dst_ip 42.58.33.79 ip_proto icmp code 188 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10217 flower src_mac 02:d7:3b:3c:aa:56 dst_mac 02:3f:b9:84:84:54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10218 flower src_mac 02:4f:b8:6a:81:c1 dst_mac 02:3c:55:e9:53:bc vlan_id 1148 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10219 flower src_mac 02:8c:40:fe:79:12 dst_mac 02:9e:cd:af:76:25 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10220 flower src_mac 02:77:af:89:aa:58 dst_mac 02:cf:1c:7f:3a:76 vlan_id 136 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10221 flower src_mac 02:8f:33:61:e3:80 dst_mac 02:a4:86:d4:6b:7b src_ip 108.19.243.145 dst_ip 24.28.40.106 ip_proto tcp src_port 17777 dst_port 46117 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10222 flower src_mac 02:b8:8b:0f:e4:0d dst_mac 02:96:1f:d8:03:a9 vlan_id 3723 vlan_ethtype 0x0800 src_ip 116.91.66.30 dst_ip 112.107.211.188 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10223 flower src_mac 02:d6:c2:a4:01:cb dst_mac 02:a8:e3:58:22:1a vlan_id 913 vlan_ethtype 0x0800 src_ip 80.221.4.201 dst_ip 110.10.79.166 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10224 flower src_mac 02:fc:0e:82:d6:17 dst_mac 02:50:27:a0:d2:58 vlan_id 510 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10225 flower src_mac 02:5e:4e:a9:f7:49 dst_mac 02:83:83:75:17:48 vlan_id 1799 vlan_ethtype ipv4 src_ip 76.6.48.188 dst_ip 55.179.148.44 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10226 flower src_mac 02:c9:46:6b:00:ac dst_mac 02:7b:3d:12:fe:b2 vlan_id 1135 vlan_ethtype ipv4 src_ip 105.82.155.183 dst_ip 88.207.48.229 action drop && tc filter add dev swp33 ingress protocol ip pref 10227 flower src_mac 02:7c:dd:f4:59:ad dst_mac 02:60:36:8f:06:1b src_ip 25.173.144.123 dst_ip 84.39.67.46 ip_proto icmp code 96 type 5 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10228 flower src_mac 02:52:02:5b:66:d4 dst_mac 02:62:2e:eb:e1:d4 src_ip 99.247.190.30 dst_ip 55.187.63.78 ip_proto icmp code 136 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10229 flower src_mac 02:a7:57:a4:41:e3 dst_mac 02:e1:c4:40:70:3b src_ip 113.172.39.123 dst_ip 119.16.203.27 ip_proto udp src_port 26681 dst_port 45928 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10230 flower src_mac 02:7b:f0:fc:b9:9a dst_mac 02:fa:51:dd:76:2f vlan_id 2567 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10231 flower src_mac 02:08:0b:42:68:38 dst_mac 02:52:32:ab:30:05 vlan_id 1142 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10232 flower src_mac 02:3c:e9:75:00:97 dst_mac 02:f3:04:98:4f:a6 src_ip 16.123.89.18 dst_ip 30.82.223.46 ip_proto udp src_port 38854 dst_port 4425 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10233 flower src_mac 02:52:ff:1c:72:0e dst_mac 02:31:cd:a4:a3:bd vlan_id 1222 vlan_ethtype 0x0800 src_ip 110.45.107.113 dst_ip 35.86.62.228 ip_proto udp src_port 51665 dst_port 43422 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10234 flower src_mac 02:21:72:13:83:3c dst_mac 02:0b:17:38:35:7e src_ip 34.243.230.144 dst_ip 20.19.151.240 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10235 flower src_mac 02:57:e9:15:dc:1c dst_mac 02:88:8b:b8:ac:d1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10236 flower src_mac 02:79:43:7a:27:7a dst_mac 02:18:82:bc:ee:29 vlan_id 1162 vlan_ethtype ip src_ip 86.42.60.50 dst_ip 31.105.115.242 ip_proto udp src_port 40097 dst_port 51700 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10237 flower src_mac 02:55:d1:68:5b:18 dst_mac 02:11:6d:91:91:34 src_ip 34.139.102.207 dst_ip 85.184.62.148 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10238 flower src_mac 02:83:98:5f:00:cc dst_mac 02:5a:05:d9:77:23 vlan_id 1114 vlan_ethtype ipv4 src_ip 71.201.137.174 dst_ip 62.220.63.28 ip_proto tcp src_port 12716 dst_port 27863 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10239 flower src_mac 02:ea:07:8a:12:73 dst_mac 02:20:50:60:25:43 vlan_id 2076 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10240 flower src_mac 02:b4:60:7c:ae:55 dst_mac 02:bb:9e:41:5a:69 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10241 flower src_mac 02:bb:ec:be:23:88 dst_mac 02:c7:df:b4:46:26 vlan_id 2815 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10242 flower src_mac 02:b5:e3:b0:97:9a dst_mac 02:7b:0c:45:51:39 vlan_id 3657 vlan_ethtype 0x0800 src_ip 93.210.177.162 dst_ip 21.162.66.149 ip_proto tcp src_port 20836 dst_port 4189 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10243 flower src_mac 02:d5:1c:80:b7:50 dst_mac 02:11:61:6d:35:9b src_ip 64.3.216.247 dst_ip 57.157.251.127 ip_proto udp src_port 8207 dst_port 16290 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:b4:a8:f5:17:45 dst_mac 02:62:26:07:ca:e6 vlan_id 2578 vlan_ethtype ip src_ip 20.205.152.93 dst_ip 106.76.194.64 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10245 flower src_mac 02:ff:04:9b:23:65 dst_mac 02:36:7d:7a:39:c5 vlan_id 2003 vlan_ethtype 0x0800 src_ip 20.226.70.88 dst_ip 71.183.44.218 ip_proto tcp src_port 58499 dst_port 25002 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10246 flower src_mac 02:c6:4a:67:8c:99 dst_mac 02:ae:b3:ff:67:d0 vlan_id 2393 vlan_ethtype 0x0800 src_ip 67.233.22.197 dst_ip 121.197.38.142 ip_proto udp src_port 20626 dst_port 59145 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10247 flower src_mac 02:9c:4f:6b:67:91 dst_mac 02:3c:98:22:79:1c src_ip 83.254.163.76 dst_ip 123.208.32.158 ip_proto udp src_port 14206 dst_port 45784 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10248 flower src_mac 02:f0:1e:61:59:d6 dst_mac 02:0e:25:a9:2f:3d action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10249 flower src_mac 02:f4:63:1e:46:56 dst_mac 02:22:5a:54:c1:2b vlan_id 2733 vlan_ethtype ip src_ip 93.117.43.90 dst_ip 11.38.92.19 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10250 flower src_mac 02:55:ab:c0:b1:19 dst_mac 02:a0:f4:7f:8d:4c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10251 flower src_mac 02:3e:00:53:48:b0 dst_mac 02:df:99:8f:f2:14 vlan_id 758 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10252 flower src_mac 02:54:4a:fa:95:fe dst_mac 02:e4:e4:64:eb:3b vlan_id 2060 vlan_ethtype 0x0800 src_ip 117.109.203.155 dst_ip 38.186.227.102 ip_proto tcp src_port 49951 dst_port 58994 action drop && tc filter add dev swp33 ingress protocol ip pref 10253 flower src_mac 02:9e:32:4b:57:34 dst_mac 02:a4:dc:b4:9e:46 src_ip 81.195.172.65 dst_ip 96.120.10.146 ip_proto icmp code 133 type 16 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10254 flower src_mac 02:2f:42:f4:91:99 dst_mac 02:11:88:49:2d:e7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10255 flower src_mac 02:72:dc:4b:10:11 dst_mac 02:f5:fd:1f:e1:40 vlan_id 1311 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10256 flower src_mac 02:74:94:dd:8a:62 dst_mac 02:f7:b9:17:58:5f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10257 flower src_mac 02:b9:ed:66:42:2c dst_mac 02:42:bf:13:bd:e4 vlan_id 694 vlan_ethtype ipv4 src_ip 34.11.64.76 dst_ip 101.111.68.91 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10258 flower src_mac 02:bd:9a:1e:de:b6 dst_mac 02:f1:e9:07:0e:7e vlan_id 3545 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10259 flower src_mac 02:4f:b6:b7:63:cb dst_mac 02:d0:3d:24:cf:e1 vlan_id 3729 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10260 flower src_mac 02:7c:2b:97:34:e6 dst_mac 02:8c:d7:7c:1a:9c vlan_id 1627 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10261 flower src_mac 02:18:aa:e6:c2:89 dst_mac 02:c6:3d:53:d7:3f action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10262 flower src_mac 02:38:ad:4f:ba:1a dst_mac 02:0c:6c:e4:ac:ae src_ip 85.215.164.63 dst_ip 43.79.203.234 ip_proto icmp code 128 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10263 flower src_mac 02:b6:1e:2b:d2:ca dst_mac 02:a8:ff:02:0a:d6 src_ip 122.192.24.231 dst_ip 41.242.149.73 ip_proto icmp code 165 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10264 flower src_mac 02:9e:86:eb:63:cb dst_mac 02:f9:cc:ee:5c:5a vlan_id 3519 vlan_ethtype 0x0800 src_ip 102.212.27.243 dst_ip 126.238.22.72 ip_proto tcp src_port 43979 dst_port 36468 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10265 flower src_mac 02:e3:52:05:d5:3c dst_mac 02:79:10:f1:82:00 vlan_id 2587 vlan_ethtype ip src_ip 42.163.24.192 dst_ip 82.2.82.54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10266 flower src_mac 02:51:00:91:c4:1a dst_mac 02:7a:23:dc:47:87 vlan_id 2205 vlan_ethtype ip src_ip 67.71.131.219 dst_ip 89.173.233.203 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10267 flower src_mac 02:51:93:a5:7c:71 dst_mac 02:a6:29:14:7f:88 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10268 flower src_mac 02:69:9e:9c:41:c0 dst_mac 02:0d:50:ad:e4:78 src_ip 119.246.211.121 dst_ip 101.56.140.42 ip_proto icmp code 49 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10269 flower src_mac 02:8b:e4:43:27:b7 dst_mac 02:92:e2:d2:6f:ce vlan_id 1122 vlan_ethtype 0x0800 src_ip 21.101.144.49 dst_ip 21.37.35.145 ip_proto udp src_port 14760 dst_port 17215 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10270 flower src_mac 02:59:59:5b:9a:f8 dst_mac 02:1d:2c:5c:52:ff vlan_id 2626 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10271 flower src_mac 02:70:8f:7d:f4:7c dst_mac 02:a6:e1:a5:26:bb src_ip 100.212.24.106 dst_ip 70.12.248.193 ip_proto udp src_port 39898 dst_port 61155 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10272 flower src_mac 02:68:34:d2:2f:2d dst_mac 02:dc:2b:1f:e3:cb vlan_id 2616 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:a7:c8:4c:3c:be dst_mac 02:df:af:18:89:92 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10274 flower src_mac 02:7b:a9:83:b3:4d dst_mac 02:75:dd:13:e5:e4 vlan_id 770 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10275 flower src_mac 02:1c:b3:27:24:87 dst_mac 02:7c:8c:4d:86:08 vlan_id 545 vlan_ethtype ipv4 src_ip 18.15.60.79 dst_ip 122.221.136.134 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10276 flower src_mac 02:7d:96:f4:b5:08 dst_mac 02:dc:67:68:48:a3 vlan_id 128 vlan_ethtype ip src_ip 123.208.47.180 dst_ip 35.84.141.86 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10277 flower src_mac 02:46:41:41:b2:d5 dst_mac 02:0a:b1:66:2a:d4 vlan_id 2434 vlan_ethtype ipv4 src_ip 110.193.98.185 dst_ip 45.89.198.175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10278 flower src_mac 02:72:94:9d:7d:04 dst_mac 02:9e:ed:72:87:8b vlan_id 3062 vlan_ethtype ipv4 src_ip 79.141.19.181 dst_ip 106.119.55.8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10279 flower src_mac 02:35:97:03:de:36 dst_mac 02:f3:29:fe:a5:b0 vlan_id 3641 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10280 flower src_mac 02:fd:51:84:be:16 dst_mac 02:43:e8:44:43:f8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10281 flower src_mac 02:32:fa:b4:0d:1a dst_mac 02:ca:27:b5:bf:7e vlan_id 865 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10282 flower src_mac 02:3f:09:93:74:f6 dst_mac 02:d3:e0:d6:19:2e vlan_id 4062 vlan_ethtype 0x0800 src_ip 21.117.180.79 dst_ip 98.93.224.164 ip_proto udp src_port 33425 dst_port 24047 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10283 flower src_mac 02:ad:71:9d:4d:5c dst_mac 02:d4:5b:61:73:cd action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10284 flower src_mac 02:04:8a:8e:5d:d7 dst_mac 02:13:09:89:b7:88 src_ip 114.89.39.143 dst_ip 61.255.33.23 ip_proto icmp code 97 type 3 action trap && tc filter add dev swp33 ingress protocol ip pref 10285 flower src_mac 02:2e:f0:22:7c:5e dst_mac 02:76:90:2e:4e:95 src_ip 55.36.149.145 dst_ip 49.59.179.126 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10286 flower src_mac 02:a9:e9:aa:f7:f5 dst_mac 02:20:23:99:73:56 vlan_id 3545 vlan_ethtype ipv4 src_ip 84.245.96.219 dst_ip 35.224.182.57 ip_proto udp src_port 39635 dst_port 13573 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10287 flower src_mac 02:35:9a:6c:74:90 dst_mac 02:9a:e8:a6:cc:65 vlan_id 25 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10288 flower src_mac 02:ce:cb:8e:af:8a dst_mac 02:a8:49:2c:a3:63 src_ip 24.148.93.102 dst_ip 111.238.15.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10289 flower src_mac 02:88:e6:12:d7:36 dst_mac 02:56:01:0e:dc:09 vlan_id 4067 vlan_ethtype ipv4 src_ip 91.7.49.170 dst_ip 34.20.181.11 action drop && tc filter add dev swp33 ingress protocol ip pref 10290 flower src_mac 02:95:e9:12:c8:c5 dst_mac 02:8d:ea:d0:08:ff src_ip 26.127.223.48 dst_ip 58.116.55.37 ip_proto icmp code 146 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10291 flower src_mac 02:eb:7f:7d:7d:a3 dst_mac 02:0d:c4:52:a4:c6 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10292 flower src_mac 02:11:60:bc:4b:27 dst_mac 02:61:27:08:77:2d src_ip 46.238.148.6 dst_ip 82.176.203.129 ip_proto icmp code 212 type 18 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10293 flower src_mac 02:6c:aa:b1:4f:cb dst_mac 02:f4:56:1a:aa:a4 src_ip 42.8.55.9 dst_ip 89.242.79.169 ip_proto icmp code 149 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10294 flower src_mac 02:68:39:c1:08:72 dst_mac 02:1c:d8:32:2b:e4 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10295 flower src_mac 02:6d:17:48:81:31 dst_mac 02:f1:1a:da:e5:9f src_ip 46.181.219.123 dst_ip 119.50.241.90 ip_proto udp src_port 57227 dst_port 62036 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10296 flower src_mac 02:1e:6b:70:f2:ae dst_mac 02:79:5a:5c:cd:8d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10297 flower src_mac 02:b9:e5:dc:38:40 dst_mac 02:b3:41:52:67:de vlan_id 2047 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10298 flower src_mac 02:e1:0b:c5:30:f8 dst_mac 02:32:fd:7e:53:80 src_ip 72.236.234.71 dst_ip 98.151.122.39 ip_proto udp src_port 52393 dst_port 1530 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10299 flower src_mac 02:5f:c6:43:59:73 dst_mac 02:2f:33:cc:59:7e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:62:68:68:0a:00 dst_mac 02:6b:ab:31:61:5f vlan_id 3445 vlan_ethtype 0x0800 src_ip 120.120.187.56 dst_ip 97.198.253.217 ip_proto tcp src_port 37292 dst_port 2070 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10301 flower src_mac 02:b3:13:17:2e:f7 dst_mac 02:ed:d7:cd:fa:e9 src_ip 71.174.109.19 dst_ip 40.254.224.217 ip_proto udp src_port 49566 dst_port 8600 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10302 flower src_mac 02:01:26:30:2c:e2 dst_mac 02:55:36:93:e3:f4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10303 flower src_mac 02:0e:b3:3a:6e:64 dst_mac 02:2d:25:9f:24:61 vlan_id 3731 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10304 flower src_mac 02:5c:6e:6d:d7:50 dst_mac 02:32:10:53:f5:0b vlan_id 1808 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10305 flower src_mac 02:e3:83:c0:13:76 dst_mac 02:2e:00:5f:6a:59 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10306 flower src_mac 02:f3:28:78:ce:3e dst_mac 02:58:47:51:94:7d src_ip 94.41.105.72 dst_ip 22.16.133.172 ip_proto tcp src_port 23948 dst_port 5616 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10307 flower src_mac 02:c8:15:e1:aa:dd dst_mac 02:39:32:58:0b:71 src_ip 22.90.158.247 dst_ip 98.170.117.121 ip_proto udp src_port 44227 dst_port 38078 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10308 flower src_mac 02:8a:7a:46:5b:fc dst_mac 02:75:15:16:ba:1c vlan_id 2937 vlan_ethtype ip src_ip 62.167.140.116 dst_ip 15.30.64.249 ip_proto udp src_port 58591 dst_port 19822 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10309 flower src_mac 02:7b:68:e1:93:18 dst_mac 02:2a:7c:e9:76:c7 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10310 flower src_mac 02:f8:a9:8d:a4:63 dst_mac 02:f0:f6:27:34:4c vlan_id 3658 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10311 flower src_mac 02:34:c6:a8:28:ed dst_mac 02:a5:80:42:ca:80 vlan_id 3751 vlan_ethtype ipv4 src_ip 55.120.121.83 dst_ip 92.15.239.181 ip_proto udp src_port 44297 dst_port 44346 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10312 flower src_mac 02:86:b9:3f:fe:38 dst_mac 02:c6:c6:b2:2c:b2 vlan_id 2985 vlan_ethtype ip src_ip 122.157.229.11 dst_ip 56.106.236.134 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10313 flower src_mac 02:b6:c8:6c:22:85 dst_mac 02:7e:0f:4a:8e:68 vlan_id 2225 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10314 flower src_mac 02:85:ae:fd:22:02 dst_mac 02:5c:c7:7e:e3:f5 vlan_id 1700 vlan_ethtype ipv4 src_ip 104.212.205.20 dst_ip 96.229.147.53 ip_proto udp src_port 21390 dst_port 14208 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:b1:36:15:a2:1b dst_mac 02:1b:56:d3:1b:07 vlan_id 230 vlan_ethtype ip src_ip 124.49.83.90 dst_ip 11.26.18.198 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10316 flower src_mac 02:91:b6:9b:dc:22 dst_mac 02:be:4e:dd:e7:60 vlan_id 3597 vlan_ethtype ip src_ip 74.58.220.24 dst_ip 99.9.167.101 ip_proto udp src_port 32404 dst_port 60006 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10317 flower src_mac 02:5d:69:51:ec:82 dst_mac 02:ab:95:e2:50:b6 vlan_id 3866 vlan_ethtype 0x0800 src_ip 119.157.25.36 dst_ip 63.148.95.228 ip_proto tcp src_port 39723 dst_port 14035 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10318 flower src_mac 02:5e:b4:fb:60:b6 dst_mac 02:29:76:b6:71:5c src_ip 45.81.166.124 dst_ip 73.123.230.154 ip_proto icmp code 138 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10319 flower src_mac 02:a2:b8:d6:93:53 dst_mac 02:e3:43:e6:96:46 vlan_id 271 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10320 flower src_mac 02:fc:1a:ed:f7:fb dst_mac 02:ee:c0:a9:89:e9 vlan_id 810 vlan_ethtype 0x0800 src_ip 93.91.219.230 dst_ip 55.228.7.62 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10321 flower src_mac 02:09:7a:7f:bb:f0 dst_mac 02:93:2e:d3:c2:fd vlan_id 3739 vlan_ethtype 0x0800 src_ip 18.179.100.92 dst_ip 79.247.122.5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10322 flower src_mac 02:31:0f:5b:f3:7b dst_mac 02:e1:1f:e4:ab:6e action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10323 flower src_mac 02:bc:72:0a:05:a0 dst_mac 02:9f:16:f7:b8:8a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10324 flower src_mac 02:aa:f2:49:12:aa dst_mac 02:9a:93:d0:34:36 vlan_id 391 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10325 flower src_mac 02:2e:b4:d0:e9:54 dst_mac 02:be:05:b5:15:5b vlan_id 3024 vlan_ethtype ipv4 src_ip 78.31.214.92 dst_ip 14.248.134.41 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10326 flower src_mac 02:12:99:63:df:31 dst_mac 02:1b:34:81:82:fa src_ip 110.108.9.167 dst_ip 39.206.74.40 ip_proto icmp code 217 type 11 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10327 flower src_mac 02:fc:40:e0:34:58 dst_mac 02:f3:f1:2d:5b:49 vlan_id 1785 vlan_ethtype ipv4 src_ip 45.101.65.162 dst_ip 118.220.203.34 ip_proto tcp src_port 30853 dst_port 40308 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10328 flower src_mac 02:10:12:6c:9f:f2 dst_mac 02:a1:34:3e:c7:a2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10329 flower src_mac 02:24:fc:1c:bd:25 dst_mac 02:c7:24:13:fc:b3 vlan_id 3451 vlan_ethtype ipv4 src_ip 75.75.216.156 dst_ip 55.165.65.67 ip_proto tcp src_port 31975 dst_port 56549 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10330 flower src_mac 02:b4:d8:cd:98:8d dst_mac 02:fd:c2:49:ff:19 src_ip 118.128.139.232 dst_ip 85.214.66.125 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10331 flower src_mac 02:9b:ea:8b:a8:92 dst_mac 02:63:f3:74:8d:4f vlan_id 2382 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10332 flower src_mac 02:42:e6:86:48:07 dst_mac 02:6a:4d:0c:5d:3d vlan_id 3618 vlan_ethtype ipv4 src_ip 79.96.1.150 dst_ip 76.156.210.138 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10333 flower src_mac 02:97:12:2c:fd:4f dst_mac 02:d6:bb:3b:66:47 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10334 flower src_mac 02:0e:86:aa:8d:7a dst_mac 02:8e:b4:89:4d:d3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10335 flower src_mac 02:63:1f:76:f7:19 dst_mac 02:e7:3d:0d:0c:3f vlan_id 1396 vlan_ethtype ip src_ip 17.151.232.77 dst_ip 72.106.41.231 ip_proto tcp src_port 37569 dst_port 58767 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10336 flower src_mac 02:cd:44:37:27:f5 dst_mac 02:41:db:0c:67:40 src_ip 126.140.122.115 dst_ip 16.220.245.225 ip_proto udp src_port 28503 dst_port 38880 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10337 flower src_mac 02:bc:25:fd:1a:94 dst_mac 02:b3:1b:cd:65:dc vlan_id 2611 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10338 flower src_mac 02:6b:af:45:1a:6a dst_mac 02:e6:2d:80:51:aa vlan_id 2252 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10339 flower src_mac 02:4e:62:37:a2:e3 dst_mac 02:66:c7:94:8b:33 src_ip 28.240.29.24 dst_ip 83.156.64.89 ip_proto tcp src_port 38956 dst_port 25014 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10340 flower src_mac 02:18:48:41:c1:c0 dst_mac 02:4c:99:ea:87:bd action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10341 flower src_mac 02:2a:4d:0c:e5:fc dst_mac 02:92:75:dd:52:b1 vlan_id 1476 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10342 flower src_mac 02:ae:22:c6:48:95 dst_mac 02:60:33:84:70:6a vlan_id 2544 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10343 flower src_mac 02:8e:25:d6:23:a1 dst_mac 02:20:08:95:14:69 src_ip 13.49.200.181 dst_ip 62.83.235.228 ip_proto tcp src_port 12220 dst_port 431 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10344 flower src_mac 02:43:78:64:9c:dd dst_mac 02:6c:a5:46:90:f1 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10345 flower src_mac 02:39:97:d1:47:33 dst_mac 02:dd:60:48:7c:83 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10346 flower src_mac 02:33:83:32:d7:b4 dst_mac 02:e6:5f:7b:b3:ba action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10347 flower src_mac 02:c0:a3:22:e1:45 dst_mac 02:1a:57:e3:83:a1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10348 flower src_mac 02:4e:34:6a:4d:7b dst_mac 02:d8:18:5b:40:8b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10349 flower src_mac 02:fc:98:b4:c9:fb dst_mac 02:0f:17:37:71:61 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10350 flower src_mac 02:b1:b9:ef:85:96 dst_mac 02:72:57:0a:b6:df src_ip 34.7.232.222 dst_ip 21.94.110.231 action drop && tc filter add dev swp33 ingress protocol ip pref 10351 flower src_mac 02:de:73:36:d3:3c dst_mac 02:03:53:38:ab:b2 src_ip 45.0.98.23 dst_ip 60.220.108.249 ip_proto udp src_port 7851 dst_port 48129 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10352 flower src_mac 02:8a:fe:f8:45:81 dst_mac 02:34:e9:e0:2c:94 vlan_id 3285 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10353 flower src_mac 02:7e:74:ac:00:87 dst_mac 02:cc:da:9c:71:f2 src_ip 98.172.184.231 dst_ip 63.192.45.218 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10354 flower src_mac 02:e4:00:49:9c:59 dst_mac 02:2f:a1:72:be:d4 vlan_id 3104 vlan_ethtype ipv4 src_ip 126.229.28.148 dst_ip 72.8.250.86 ip_proto udp src_port 31603 dst_port 34217 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10355 flower src_mac 02:df:13:30:9f:38 dst_mac 02:f3:8f:c5:4e:d8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10356 flower src_mac 02:98:b0:9c:86:64 dst_mac 02:c0:7d:60:e1:10 vlan_id 392 vlan_ethtype 0x0800 src_ip 68.158.119.112 dst_ip 37.40.29.159 ip_proto tcp src_port 60955 dst_port 941 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10357 flower src_mac 02:b8:db:78:52:a8 dst_mac 02:9d:24:23:5a:15 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10358 flower src_mac 02:8c:86:8c:f2:c2 dst_mac 02:ac:5c:f5:05:7f vlan_id 956 vlan_ethtype 0x0800 src_ip 66.33.65.162 dst_ip 102.117.223.79 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10359 flower src_mac 02:f1:07:78:88:b6 dst_mac 02:89:22:a5:98:60 src_ip 99.220.83.17 dst_ip 105.237.0.51 ip_proto icmp code 136 type 13 action trap && tc filter add dev swp33 ingress protocol ip pref 10360 flower src_mac 02:11:ce:fb:27:4b dst_mac 02:ca:38:57:b3:08 src_ip 20.161.170.231 dst_ip 91.23.14.155 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:cc:5c:5c:99:71 dst_mac 02:2a:01:e4:e4:3d vlan_id 3472 vlan_ethtype ipv4 src_ip 44.185.250.178 dst_ip 103.71.206.117 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10362 flower src_mac 02:12:ef:d7:43:d9 dst_mac 02:61:ff:8c:f8:0d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10363 flower src_mac 02:c4:01:63:81:48 dst_mac 02:50:96:2b:3a:39 vlan_id 708 vlan_ethtype ip src_ip 114.51.90.105 dst_ip 18.112.92.176 ip_proto udp src_port 63799 dst_port 22006 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10364 flower src_mac 02:0c:e5:e9:09:d8 dst_mac 02:06:40:3a:6f:2b src_ip 53.10.207.185 dst_ip 78.241.198.5 ip_proto udp src_port 7401 dst_port 50746 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10365 flower src_mac 02:b1:db:5d:9b:41 dst_mac 02:bc:c7:cc:f9:b5 vlan_id 3387 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10366 flower src_mac 02:aa:01:bf:9e:74 dst_mac 02:be:ef:b1:3b:a0 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10367 flower src_mac 02:f1:4c:9e:64:07 dst_mac 02:de:fe:bf:f1:41 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10368 flower src_mac 02:96:26:c1:7e:f0 dst_mac 02:9c:02:af:d5:4d vlan_id 1593 vlan_ethtype 0x0800 src_ip 57.48.86.149 dst_ip 41.184.118.221 ip_proto udp src_port 43503 dst_port 28216 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10369 flower src_mac 02:d7:f4:2b:3a:72 dst_mac 02:e4:fb:50:df:7f vlan_id 1567 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10370 flower src_mac 02:e5:33:79:09:66 dst_mac 02:bc:75:01:1b:b1 vlan_id 2251 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10371 flower src_mac 02:cb:cb:48:d2:fc dst_mac 02:97:07:cb:17:ce src_ip 67.153.158.195 dst_ip 44.84.65.139 ip_proto udp src_port 41360 dst_port 27452 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10372 flower src_mac 02:9f:d7:f5:28:3b dst_mac 02:c7:dc:50:1d:2d src_ip 24.230.217.243 dst_ip 90.57.34.82 ip_proto udp src_port 14417 dst_port 65511 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10373 flower src_mac 02:50:f1:3b:01:80 dst_mac 02:d3:d5:f1:5f:b4 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10374 flower src_mac 02:d0:27:78:4c:2e dst_mac 02:d4:f6:5f:10:61 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:9c:bc:9a:aa:f9 dst_mac 02:43:92:50:4a:61 vlan_id 2027 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10376 flower src_mac 02:bb:69:aa:71:3c dst_mac 02:fb:58:56:79:12 vlan_id 3989 vlan_ethtype 0x0800 src_ip 73.47.104.106 dst_ip 109.31.223.45 ip_proto tcp src_port 60701 dst_port 42451 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:7d:14:26:a4:ac dst_mac 02:cd:52:48:41:fc vlan_id 1573 vlan_ethtype 0x0800 src_ip 67.158.53.235 dst_ip 84.207.28.100 ip_proto tcp src_port 23611 dst_port 61223 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10378 flower src_mac 02:be:ca:bc:c0:e8 dst_mac 02:01:df:2a:90:cb src_ip 28.214.252.121 dst_ip 99.36.86.230 ip_proto tcp src_port 30875 dst_port 13940 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10379 flower src_mac 02:29:cd:4c:93:86 dst_mac 02:21:e9:32:af:34 vlan_id 1775 vlan_ethtype ip src_ip 73.229.167.227 dst_ip 31.123.223.69 ip_proto tcp src_port 59948 dst_port 51730 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:53:e7:33:16:34 dst_mac 02:6f:64:9a:de:b4 vlan_id 2466 vlan_ethtype ip src_ip 80.19.224.85 dst_ip 46.199.73.91 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:69:f7:25:2b:01 dst_mac 02:52:22:04:30:c8 vlan_id 400 vlan_ethtype 0x0800 src_ip 11.98.230.224 dst_ip 116.19.50.69 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10382 flower src_mac 02:0f:96:04:f3:b5 dst_mac 02:5f:27:83:9b:8c vlan_id 1819 vlan_ethtype ip src_ip 88.130.136.75 dst_ip 44.176.31.17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10383 flower src_mac 02:94:48:6f:6f:f9 dst_mac 02:33:25:ad:4c:9d vlan_id 2562 vlan_ethtype 0x0800 src_ip 50.196.243.156 dst_ip 15.172.161.102 ip_proto udp src_port 29166 dst_port 25906 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10384 flower src_mac 02:78:b0:b1:ae:db dst_mac 02:45:d6:67:e7:d7 src_ip 67.116.49.183 dst_ip 125.141.31.52 ip_proto icmp code 120 type 11 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10385 flower src_mac 02:7c:c0:8d:0e:0f dst_mac 02:e8:8d:e5:c9:84 src_ip 107.199.122.180 dst_ip 79.177.239.119 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10386 flower src_mac 02:00:48:84:dd:91 dst_mac 02:ec:81:e6:70:ba action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10387 flower src_mac 02:c0:9f:7f:8d:70 dst_mac 02:70:40:52:2d:4c vlan_id 2385 vlan_ethtype 0x0800 src_ip 14.118.186.206 dst_ip 92.206.204.246 ip_proto udp src_port 4063 dst_port 16977 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10388 flower src_mac 02:bb:de:f1:0f:71 dst_mac 02:1d:e9:1a:7e:d7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10389 flower src_mac 02:7f:28:b9:dc:cf dst_mac 02:58:eb:a5:b5:d0 vlan_id 3100 vlan_ethtype ipv4 src_ip 116.12.81.47 dst_ip 28.137.223.172 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10390 flower src_mac 02:10:1c:75:d1:68 dst_mac 02:d0:d4:0b:f8:9a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10391 flower src_mac 02:46:12:3c:85:98 dst_mac 02:fe:b6:ea:4a:0f vlan_id 3178 vlan_ethtype ip src_ip 69.150.149.147 dst_ip 114.129.134.237 ip_proto tcp src_port 15109 dst_port 516 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10392 flower src_mac 02:90:76:1a:c3:c8 dst_mac 02:40:0b:0d:f9:57 vlan_id 1858 vlan_ethtype ip src_ip 62.42.12.17 dst_ip 54.147.216.105 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10393 flower src_mac 02:a3:6a:76:69:ac dst_mac 02:51:2c:b2:89:01 vlan_id 26 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10394 flower src_mac 02:94:96:8b:7f:5b dst_mac 02:bd:d8:65:9e:53 vlan_id 197 vlan_ethtype ip src_ip 85.21.32.98 dst_ip 107.32.142.68 action pass && tc filter add dev swp33 ingress protocol ip pref 10395 flower src_mac 02:ed:66:60:b8:80 dst_mac 02:e5:fe:f0:eb:ab src_ip 75.250.130.21 dst_ip 38.208.70.124 ip_proto icmp code 17 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10396 flower src_mac 02:a2:6e:a2:29:85 dst_mac 02:b0:8d:30:ff:6c action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10397 flower src_mac 02:03:ab:ee:ac:7f dst_mac 02:1d:03:f1:56:a4 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10398 flower src_mac 02:ec:fb:81:ff:5e dst_mac 02:44:cf:a6:ca:17 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10399 flower src_mac 02:91:d7:b3:15:9b dst_mac 02:56:74:56:df:20 action pass INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10000 flower src_mac 02:f1:99:df:a3:57 dst_mac 02:b3:ed:ce:cd:7f vlan_id 2128 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10001 flower src_mac 02:3c:db:bc:18:2e dst_mac 02:d0:bf:88:62:d5 vlan_id 3723 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10002 flower src_mac 02:e0:ce:f4:a5:ab dst_mac 02:b5:8a:0a:bd:6c vlan_id 2287 vlan_ethtype 0x0800 src_ip 15.46.176.207 dst_ip 87.199.247.35 ip_proto tcp src_port 30588 dst_port 55783 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10003 flower src_mac 02:fd:54:5c:e7:8f dst_mac 02:62:5d:cd:03:10 src_ip 37.202.167.202 dst_ip 62.64.109.183 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10004 flower src_mac 02:40:1a:38:76:14 dst_mac 02:8e:e4:f6:d6:0d vlan_id 1331 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10005 flower src_mac 02:7d:79:8d:0b:d4 dst_mac 02:ef:1d:58:bc:cb src_ip 81.45.146.89 dst_ip 78.115.21.101 ip_proto icmp code 174 type 16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10006 flower src_mac 02:9f:72:54:b5:a6 dst_mac 02:62:0f:57:66:18 vlan_id 3615 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10007 flower src_mac 02:b8:78:34:21:2f dst_mac 02:94:27:0d:8a:34 vlan_id 414 vlan_ethtype ip src_ip 36.34.255.179 dst_ip 96.20.206.180 ip_proto udp src_port 28851 dst_port 18263 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10008 flower src_mac 02:7e:2f:fa:ed:cc dst_mac 02:9f:59:77:2d:71 vlan_id 3386 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10009 flower src_mac 02:36:99:58:20:e6 dst_mac 02:59:b1:19:8f:22 src_ip 31.136.126.143 dst_ip 77.237.161.241 ip_proto udp src_port 47686 dst_port 50600 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10010 flower src_mac 02:10:89:9e:2b:e8 dst_mac 02:31:5b:90:24:af vlan_id 3963 vlan_ethtype ip src_ip 99.88.142.203 dst_ip 114.204.227.164 ip_proto udp src_port 38312 dst_port 4478 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10011 flower src_mac 02:0f:c8:63:e2:d0 dst_mac 02:fa:96:a5:c9:aa vlan_id 2908 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10012 flower src_mac 02:ab:30:f6:0e:8a dst_mac 02:11:3d:66:56:4b vlan_id 3947 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10013 flower src_mac 02:13:f3:bd:3d:31 dst_mac 02:36:6a:86:c8:42 vlan_id 2534 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10014 flower src_mac 02:a3:b6:1b:2f:41 dst_mac 02:76:83:8e:ef:f0 vlan_id 3070 vlan_ethtype 0x0800 src_ip 117.242.178.234 dst_ip 80.60.147.24 ip_proto udp src_port 15425 dst_port 23621 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10015 flower src_mac 02:57:69:ad:30:dd dst_mac 02:d6:61:30:a6:22 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10016 flower src_mac 02:ec:64:c8:86:ba dst_mac 02:9c:c3:e0:54:c0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10017 flower src_mac 02:cf:b5:32:c6:f6 dst_mac 02:36:bf:e8:64:c7 vlan_id 1256 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10018 flower src_mac 02:2b:01:85:31:c9 dst_mac 02:be:e3:53:b9:57 vlan_id 1688 vlan_ethtype 0x0800 src_ip 22.136.162.75 dst_ip 124.129.174.186 ip_proto tcp src_port 28857 dst_port 21494 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10019 flower src_mac 02:38:a3:48:da:96 dst_mac 02:bb:cb:42:ba:0f src_ip 39.24.28.161 dst_ip 72.129.24.144 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10020 flower src_mac 02:04:81:54:9e:f1 dst_mac 02:2f:55:59:7e:0c src_ip 105.128.104.75 dst_ip 52.241.25.17 ip_proto tcp src_port 5556 dst_port 28502 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10021 flower src_mac 02:d1:fc:ea:68:df dst_mac 02:6e:5d:1d:3f:e3 vlan_id 1617 vlan_ethtype 0x0800 src_ip 69.143.162.239 dst_ip 92.57.149.47 ip_proto udp src_port 24116 dst_port 5170 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10022 flower src_mac 02:82:89:b9:13:49 dst_mac 02:c5:44:82:3e:53 vlan_id 109 vlan_ethtype ipv4 src_ip 100.83.9.4 dst_ip 72.231.241.171 ip_proto tcp src_port 34799 dst_port 45488 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10023 flower src_mac 02:22:24:a0:ed:85 dst_mac 02:c9:83:1e:91:6b vlan_id 2915 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10024 flower src_mac 02:de:4c:11:c8:18 dst_mac 02:ed:90:58:0a:d9 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10025 flower src_mac 02:7c:1f:ab:d8:19 dst_mac 02:51:9c:13:b0:f1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10026 flower src_mac 02:6e:a4:ff:87:4b dst_mac 02:92:d1:0f:46:43 vlan_id 915 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10027 flower src_mac 02:81:2b:38:0c:79 dst_mac 02:17:33:63:1f:2c action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10028 flower src_mac 02:df:11:f9:73:cb dst_mac 02:a0:c1:f2:bb:14 src_ip 38.171.19.74 dst_ip 18.97.245.205 ip_proto icmp code 131 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10029 flower src_mac 02:c1:a6:57:47:df dst_mac 02:e7:be:28:a2:b4 vlan_id 9 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10030 flower src_mac 02:6d:a0:f4:d3:77 dst_mac 02:8b:c0:16:e9:0b src_ip 64.152.64.27 dst_ip 111.249.250.166 ip_proto tcp src_port 53088 dst_port 38185 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10031 flower src_mac 02:ef:c6:21:f0:a3 dst_mac 02:80:b9:1f:ce:f0 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10032 flower src_mac 02:22:ec:28:30:a1 dst_mac 02:70:c0:44:9e:48 src_ip 123.174.0.147 dst_ip 40.14.108.172 ip_proto udp src_port 33930 dst_port 55298 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10033 flower src_mac 02:af:6f:0f:7c:0d dst_mac 02:8e:57:1e:b0:41 src_ip 115.23.115.115 dst_ip 121.161.29.123 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10034 flower src_mac 02:5e:72:06:bb:c0 dst_mac 02:a0:3d:97:cb:02 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10035 flower src_mac 02:7f:49:97:f2:11 dst_mac 02:bd:4b:9b:96:2c vlan_id 808 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10036 flower src_mac 02:33:eb:76:43:c3 dst_mac 02:d6:e5:47:80:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10037 flower src_mac 02:8b:9f:12:0d:67 dst_mac 02:d7:f8:a4:aa:d6 vlan_id 933 vlan_ethtype ipv4 src_ip 104.60.243.223 dst_ip 89.253.178.25 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10038 flower src_mac 02:f8:78:5c:84:97 dst_mac 02:65:fd:f9:9c:fb src_ip 23.136.54.163 dst_ip 120.152.231.224 ip_proto udp src_port 51745 dst_port 25160 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10039 flower src_mac 02:b7:e1:db:76:ad dst_mac 02:84:9f:4a:53:4e vlan_id 2591 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10040 flower src_mac 02:c8:ab:51:31:66 dst_mac 02:70:11:6a:19:c8 src_ip 37.183.99.83 dst_ip 12.39.198.165 ip_proto udp src_port 17064 dst_port 50246 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10041 flower src_mac 02:72:ef:70:2c:f4 dst_mac 02:59:fe:29:77:d2 vlan_id 3852 vlan_ethtype 0x0800 src_ip 18.244.11.98 dst_ip 55.34.154.63 ip_proto tcp src_port 22993 dst_port 13811 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10042 flower src_mac 02:b9:b2:2c:97:01 dst_mac 02:ef:de:6d:b1:f1 vlan_id 32 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10043 flower src_mac 02:44:ef:52:4f:d1 dst_mac 02:ff:29:1c:c7:27 src_ip 83.131.64.239 dst_ip 36.158.162.235 ip_proto udp src_port 27923 dst_port 43319 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10044 flower src_mac 02:aa:45:5a:31:a1 dst_mac 02:12:2d:d8:ca:60 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10045 flower src_mac 02:e9:32:7d:a8:29 dst_mac 02:21:c6:75:12:60 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10046 flower src_mac 02:a6:4b:29:50:b3 dst_mac 02:a9:b2:1e:5e:3a src_ip 92.206.158.28 dst_ip 64.243.41.161 ip_proto icmp code 138 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10047 flower src_mac 02:63:c2:1a:73:2d dst_mac 02:7c:97:e2:ed:c3 vlan_id 1208 vlan_ethtype ip src_ip 67.71.250.79 dst_ip 110.85.39.105 ip_proto tcp src_port 58938 dst_port 61319 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10048 flower src_mac 02:18:ea:05:07:e3 dst_mac 02:44:99:7a:62:10 vlan_id 2162 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10049 flower src_mac 02:c6:82:80:4b:a2 dst_mac 02:17:4b:54:dd:31 vlan_id 216 vlan_ethtype ip src_ip 100.123.224.224 dst_ip 24.151.60.161 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10050 flower src_mac 02:a9:4d:c4:8c:ce dst_mac 02:75:d8:38:5a:01 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10051 flower src_mac 02:84:32:af:c7:3d dst_mac 02:31:9f:bf:e8:13 src_ip 37.254.232.117 dst_ip 96.172.34.135 ip_proto udp src_port 595 dst_port 11626 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10052 flower src_mac 02:34:ef:08:4c:2a dst_mac 02:59:03:98:07:14 vlan_id 1895 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10053 flower src_mac 02:74:72:62:fe:ee dst_mac 02:e7:8c:a8:ed:3d src_ip 29.94.133.207 dst_ip 105.183.32.133 ip_proto udp src_port 20952 dst_port 63425 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10054 flower src_mac 02:f7:af:b9:4c:62 dst_mac 02:cb:3a:00:07:11 src_ip 110.237.199.236 dst_ip 119.33.138.43 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10055 flower src_mac 02:03:92:c5:52:15 dst_mac 02:a4:cf:ec:55:34 src_ip 92.109.99.237 dst_ip 19.114.159.122 ip_proto icmp code 20 type 5 action drop && tc filter add dev swp33 ingress protocol ip pref 10056 flower src_mac 02:d7:6f:2d:99:de dst_mac 02:48:94:f3:00:41 src_ip 84.123.66.64 dst_ip 30.254.79.140 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10057 flower src_mac 02:6a:14:35:db:bb dst_mac 02:7f:05:c5:10:0e vlan_id 2011 vlan_ethtype ip src_ip 76.62.9.34 dst_ip 36.126.58.169 ip_proto udp src_port 54410 dst_port 50485 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10058 flower src_mac 02:94:5d:30:eb:42 dst_mac 02:82:e9:ae:16:8f vlan_id 566 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10059 flower src_mac 02:f3:59:07:e0:e2 dst_mac 02:be:6c:ad:64:ed src_ip 18.142.146.13 dst_ip 45.235.13.161 ip_proto icmp code 165 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10060 flower src_mac 02:29:75:32:2e:00 dst_mac 02:16:cf:34:64:71 vlan_id 3791 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10061 flower src_mac 02:fe:b4:fc:84:04 dst_mac 02:96:06:dc:52:9a vlan_id 4078 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10062 flower src_mac 02:48:12:4d:dd:b4 dst_mac 02:12:d0:be:aa:9e vlan_id 2269 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10063 flower src_mac 02:e1:f2:37:6e:b0 dst_mac 02:ab:27:fa:59:99 vlan_id 357 vlan_ethtype ip src_ip 80.48.77.134 dst_ip 77.77.50.209 action drop && tc filter add dev swp33 ingress protocol ip pref 10064 flower src_mac 02:24:b9:62:24:7c dst_mac 02:65:ac:2b:ec:e0 src_ip 105.213.117.149 dst_ip 101.35.229.195 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10065 flower src_mac 02:86:eb:c0:5d:5b dst_mac 02:45:ad:a2:7c:10 vlan_id 1071 vlan_ethtype ipv4 src_ip 81.159.90.204 dst_ip 11.202.246.215 action pass && tc filter add dev swp33 ingress protocol ip pref 10066 flower src_mac 02:80:66:e5:d8:ec dst_mac 02:4e:ac:98:ad:97 src_ip 53.232.57.7 dst_ip 86.121.142.183 ip_proto tcp src_port 60669 dst_port 40526 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10067 flower src_mac 02:f4:fb:10:a2:e8 dst_mac 02:39:db:82:a0:7c action trap && tc filter add dev swp33 ingress protocol ip pref 10068 flower src_mac 02:0d:5a:8b:e0:36 dst_mac 02:79:f5:5a:9a:d5 src_ip 22.163.62.129 dst_ip 50.44.75.147 ip_proto icmp code 88 type 5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10069 flower src_mac 02:58:3a:4e:44:6c dst_mac 02:2f:c9:8e:c3:7b vlan_id 365 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10070 flower src_mac 02:10:b5:e0:55:96 dst_mac 02:42:e3:d2:e5:31 vlan_id 2500 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10071 flower src_mac 02:06:1c:23:ec:6a dst_mac 02:8c:86:6a:e5:dd src_ip 81.239.143.143 dst_ip 85.52.241.164 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10072 flower src_mac 02:0e:9c:5f:a0:25 dst_mac 02:28:f6:34:b1:64 vlan_id 3719 vlan_ethtype ip src_ip 25.133.171.44 dst_ip 46.177.196.32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10073 flower src_mac 02:a3:1c:56:8a:51 dst_mac 02:43:4b:fe:71:95 vlan_id 3820 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10074 flower src_mac 02:15:4d:12:1e:c7 dst_mac 02:8d:25:45:72:c0 vlan_id 2541 vlan_ethtype ip src_ip 89.0.184.171 dst_ip 67.42.187.55 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10075 flower src_mac 02:bd:17:3d:71:2f dst_mac 02:03:af:7d:a4:1a vlan_id 1511 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10076 flower src_mac 02:c1:1d:47:c5:40 dst_mac 02:60:66:73:88:5e vlan_id 523 vlan_ethtype 0x0800 src_ip 92.9.152.227 dst_ip 40.168.223.73 ip_proto tcp src_port 52712 dst_port 39571 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10077 flower src_mac 02:b5:a7:02:77:63 dst_mac 02:9b:22:66:87:5e vlan_id 307 vlan_ethtype ipv4 src_ip 56.223.99.95 dst_ip 28.105.66.17 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10078 flower src_mac 02:67:c4:14:11:4f dst_mac 02:4d:c0:fd:69:4e vlan_id 3200 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10079 flower src_mac 02:8f:57:15:06:5f dst_mac 02:59:0c:26:b5:9e src_ip 98.231.134.91 dst_ip 110.99.11.77 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10080 flower src_mac 02:64:ee:16:0b:ad dst_mac 02:f0:d7:da:d2:30 src_ip 78.179.20.12 dst_ip 49.34.182.153 action pass && tc filter add dev swp33 ingress protocol ip pref 10081 flower src_mac 02:8c:37:07:26:8d dst_mac 02:45:8a:98:65:1d src_ip 96.235.7.72 dst_ip 59.154.12.82 ip_proto udp src_port 19872 dst_port 15836 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10082 flower src_mac 02:8a:84:fa:5b:da dst_mac 02:20:6f:ab:22:53 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10083 flower src_mac 02:48:b2:2f:63:a4 dst_mac 02:b5:e1:65:f2:1f vlan_id 3299 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10084 flower src_mac 02:30:13:f8:35:74 dst_mac 02:0a:d6:f1:d7:9f src_ip 78.83.67.54 dst_ip 92.206.141.91 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10085 flower src_mac 02:bb:d7:b9:dc:ec dst_mac 02:04:e7:51:a5:d7 vlan_id 2105 vlan_ethtype ip src_ip 53.43.248.83 dst_ip 121.167.186.152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:d9:2d:c9:03:cc dst_mac 02:f8:77:10:6a:fa vlan_id 110 vlan_ethtype ip src_ip 64.193.239.129 dst_ip 61.15.124.89 ip_proto tcp src_port 59491 dst_port 18899 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10087 flower src_mac 02:94:65:89:b6:3e dst_mac 02:0b:06:14:ae:a0 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10088 flower src_mac 02:4b:f8:3c:ba:ee dst_mac 02:dc:b9:36:32:7c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10089 flower src_mac 02:a9:65:cd:d7:dc dst_mac 02:db:45:01:62:43 src_ip 97.192.169.134 dst_ip 51.88.183.37 ip_proto icmp code 42 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10090 flower src_mac 02:f9:b6:46:fc:fe dst_mac 02:09:f9:83:1e:04 vlan_id 3144 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10091 flower src_mac 02:f2:66:ba:3a:9d dst_mac 02:74:07:82:1c:7f vlan_id 1217 vlan_ethtype ipv4 src_ip 59.31.171.150 dst_ip 54.200.39.59 ip_proto tcp src_port 37628 dst_port 51044 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10092 flower src_mac 02:4f:be:ef:f1:7c dst_mac 02:0a:4a:08:a9:3b action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10093 flower src_mac 02:7e:4d:34:3d:61 dst_mac 02:75:2f:08:68:37 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10094 flower src_mac 02:ac:01:1f:cc:ab dst_mac 02:13:12:d4:dc:cc action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10095 flower src_mac 02:3b:67:82:e9:58 dst_mac 02:4a:54:50:90:94 vlan_id 3269 vlan_ethtype ipv4 src_ip 52.186.157.233 dst_ip 85.106.173.169 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10096 flower src_mac 02:21:96:47:22:b2 dst_mac 02:35:bc:ca:d0:ec vlan_id 2731 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10097 flower src_mac 02:93:fd:ba:8b:db dst_mac 02:a3:91:71:6d:ef vlan_id 2362 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10098 flower src_mac 02:72:06:10:16:78 dst_mac 02:26:e4:1e:4b:8b src_ip 110.93.72.58 dst_ip 94.250.73.113 ip_proto udp src_port 29725 dst_port 12192 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10099 flower src_mac 02:69:f3:2b:42:f2 dst_mac 02:aa:00:21:e3:36 vlan_id 2452 vlan_ethtype 0x0800 src_ip 22.87.211.135 dst_ip 60.129.35.158 ip_proto udp src_port 42219 dst_port 58824 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10100 flower src_mac 02:f3:4f:ab:79:d3 dst_mac 02:9e:11:7f:31:03 src_ip 35.34.201.26 dst_ip 48.153.255.3 ip_proto tcp src_port 47093 dst_port 3877 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10101 flower src_mac 02:60:34:ad:4c:9a dst_mac 02:7e:ad:6b:4d:da vlan_id 3792 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10102 flower src_mac 02:a6:d7:9d:83:14 dst_mac 02:b9:de:f5:6b:3f vlan_id 3755 vlan_ethtype ip src_ip 93.33.248.25 dst_ip 113.201.83.167 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10103 flower src_mac 02:79:67:13:18:15 dst_mac 02:b8:0a:a2:11:ba src_ip 33.35.160.7 dst_ip 74.226.3.248 ip_proto icmp code 197 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10104 flower src_mac 02:8c:c5:d3:96:73 dst_mac 02:6e:d8:bf:ec:cf vlan_id 2631 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10105 flower src_mac 02:92:5b:b4:d0:f9 dst_mac 02:c7:74:34:3d:3c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10106 flower src_mac 02:51:e8:89:f0:3c dst_mac 02:f4:4d:8d:ef:3a vlan_id 2691 vlan_ethtype 0x0800 src_ip 111.39.71.190 dst_ip 94.229.10.6 ip_proto udp src_port 44201 dst_port 51311 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10107 flower src_mac 02:58:bf:56:51:a8 dst_mac 02:fc:53:80:ab:c8 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10108 flower src_mac 02:de:e1:12:2b:6f dst_mac 02:bc:13:ce:99:c1 src_ip 78.219.64.212 dst_ip 76.171.164.147 ip_proto udp src_port 36911 dst_port 30226 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10109 flower src_mac 02:54:49:a9:88:44 dst_mac 02:46:3e:9a:76:62 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10110 flower src_mac 02:e0:01:cd:84:de dst_mac 02:47:cf:8d:d7:b8 vlan_id 1335 vlan_ethtype ipv4 src_ip 12.217.190.212 dst_ip 77.21.168.175 ip_proto udp src_port 17113 dst_port 37019 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10111 flower src_mac 02:44:e6:41:23:01 dst_mac 02:ca:04:07:67:c6 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10112 flower src_mac 02:39:1d:21:12:ae dst_mac 02:24:1d:fe:b4:00 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10113 flower src_mac 02:4a:fe:4a:b0:31 dst_mac 02:85:24:db:3c:2b vlan_id 1718 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10114 flower src_mac 02:44:f1:a1:b2:98 dst_mac 02:a5:54:be:ea:ae vlan_id 1208 vlan_ethtype ip src_ip 82.36.200.167 dst_ip 64.116.107.76 ip_proto tcp src_port 10893 dst_port 9863 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10115 flower src_mac 02:da:4c:60:fc:5a dst_mac 02:b5:d4:66:22:2f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10116 flower src_mac 02:0d:95:15:72:5d dst_mac 02:cc:a4:58:0e:09 vlan_id 2407 vlan_ethtype ip src_ip 123.229.3.55 dst_ip 94.72.148.224 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10117 flower src_mac 02:c7:b5:0e:f8:28 dst_mac 02:b1:9b:5d:50:99 vlan_id 1454 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10118 flower src_mac 02:dd:f1:23:fd:45 dst_mac 02:40:f2:04:90:ca vlan_id 2409 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10119 flower src_mac 02:9d:7f:59:cc:07 dst_mac 02:67:e9:41:1f:86 src_ip 47.162.222.155 dst_ip 21.221.187.9 ip_proto udp src_port 1298 dst_port 13239 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10120 flower src_mac 02:60:d2:19:43:eb dst_mac 02:88:91:1b:5d:2a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10121 flower src_mac 02:c0:e2:28:21:36 dst_mac 02:08:04:33:5a:3c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10122 flower src_mac 02:60:f9:c3:bb:7b dst_mac 02:3b:58:8d:02:09 vlan_id 2470 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10123 flower src_mac 02:f4:37:13:d2:99 dst_mac 02:36:64:94:fb:97 src_ip 94.160.108.48 dst_ip 93.191.41.169 ip_proto udp src_port 53963 dst_port 20160 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10124 flower src_mac 02:17:ec:b7:9c:f3 dst_mac 02:bb:9b:84:85:29 vlan_id 3484 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10125 flower src_mac 02:4c:cb:1b:c7:ad dst_mac 02:9f:f7:77:65:65 src_ip 25.5.90.51 dst_ip 88.197.189.242 ip_proto udp src_port 40702 dst_port 56220 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10126 flower src_mac 02:3e:65:b3:08:da dst_mac 02:0a:1d:28:71:63 vlan_id 2282 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10127 flower src_mac 02:68:f9:19:13:73 dst_mac 02:22:4b:e3:74:25 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10128 flower src_mac 02:81:e6:cc:b6:2f dst_mac 02:ea:e3:42:de:08 vlan_id 2304 vlan_ethtype 0x0800 src_ip 15.92.185.179 dst_ip 15.42.93.60 ip_proto udp src_port 31313 dst_port 7257 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10129 flower src_mac 02:0a:83:a0:a9:c0 dst_mac 02:45:2c:09:bc:0b vlan_id 3679 vlan_ethtype ip src_ip 33.50.113.62 dst_ip 44.65.235.97 ip_proto udp src_port 24337 dst_port 21334 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10130 flower src_mac 02:40:c4:5c:10:a2 dst_mac 02:00:4e:67:77:05 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10131 flower src_mac 02:21:dc:b2:f9:40 dst_mac 02:15:04:7f:06:dd vlan_id 3931 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10132 flower src_mac 02:27:25:03:8f:9b dst_mac 02:7f:c1:12:a3:d3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10133 flower src_mac 02:86:25:30:b5:3a dst_mac 02:7f:56:41:94:34 vlan_id 823 vlan_ethtype 0x0800 src_ip 59.98.97.23 dst_ip 95.138.251.171 ip_proto tcp src_port 18239 dst_port 18200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10134 flower src_mac 02:ee:eb:a8:4b:ce dst_mac 02:67:4b:ad:92:4e vlan_id 150 vlan_ethtype 0x0800 src_ip 76.206.251.78 dst_ip 112.132.42.99 ip_proto tcp src_port 46709 dst_port 4283 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10135 flower src_mac 02:46:2c:5d:5c:5d dst_mac 02:1a:a5:ee:f9:33 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10136 flower src_mac 02:f6:b5:46:f9:ac dst_mac 02:e1:3c:e8:02:d1 vlan_id 477 vlan_ethtype 0x0800 src_ip 123.56.193.27 dst_ip 117.154.124.154 ip_proto tcp src_port 6669 dst_port 55256 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10137 flower src_mac 02:c8:e7:4e:3a:1e dst_mac 02:97:fe:3d:fd:01 vlan_id 969 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10138 flower src_mac 02:48:dc:63:e7:ba dst_mac 02:84:bf:ba:bb:22 src_ip 17.252.223.18 dst_ip 52.195.32.184 ip_proto tcp src_port 20083 dst_port 19098 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10139 flower src_mac 02:68:43:80:30:bd dst_mac 02:0e:6c:79:6b:74 vlan_id 2959 vlan_ethtype 0x0800 src_ip 48.107.69.117 dst_ip 65.91.166.140 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10140 flower src_mac 02:11:3d:9b:2d:1e dst_mac 02:34:3a:37:f9:cf vlan_id 1008 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10141 flower src_mac 02:25:6b:2c:2f:e7 dst_mac 02:ae:b6:3a:26:73 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10142 flower src_mac 02:0a:16:8f:17:1b dst_mac 02:aa:2a:d4:a3:d9 vlan_id 1538 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10143 flower src_mac 02:4a:69:b2:d2:35 dst_mac 02:da:d8:6b:e3:07 src_ip 124.70.150.225 dst_ip 33.135.217.65 ip_proto tcp src_port 13389 dst_port 58281 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10144 flower src_mac 02:dd:18:a6:11:b3 dst_mac 02:24:79:c6:e4:a2 vlan_id 2590 vlan_ethtype ipv4 src_ip 111.184.222.144 dst_ip 118.79.108.121 ip_proto tcp src_port 42004 dst_port 44269 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10145 flower src_mac 02:14:da:00:8a:0e dst_mac 02:95:a6:b5:3b:c5 vlan_id 392 vlan_ethtype 0x0800 src_ip 17.77.81.147 dst_ip 104.14.200.80 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10146 flower src_mac 02:5f:ed:2e:ed:7b dst_mac 02:ae:38:34:74:9c action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10147 flower src_mac 02:f3:44:17:82:fc dst_mac 02:35:44:03:bb:e6 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10148 flower src_mac 02:06:ff:72:04:07 dst_mac 02:f6:cb:93:59:15 action pass && tc filter add dev swp33 ingress protocol ip pref 10149 flower src_mac 02:4d:f5:1b:cb:61 dst_mac 02:c0:a0:71:0e:44 src_ip 51.18.189.143 dst_ip 47.86.159.186 ip_proto tcp src_port 25674 dst_port 60703 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10150 flower src_mac 02:56:b7:54:81:eb dst_mac 02:c0:66:85:63:2a vlan_id 236 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10151 flower src_mac 02:2f:69:96:e9:d5 dst_mac 02:97:6b:6c:4b:ee action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10152 flower src_mac 02:f1:7b:6f:37:90 dst_mac 02:ec:de:3b:60:43 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10153 flower src_mac 02:93:67:ae:b8:e6 dst_mac 02:fa:a4:fb:c3:d1 vlan_id 1380 vlan_ethtype ipv4 src_ip 32.139.94.170 dst_ip 118.96.141.186 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10154 flower src_mac 02:e4:ba:89:20:54 dst_mac 02:31:bf:ea:4a:c7 vlan_id 2130 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10155 flower src_mac 02:57:10:35:69:e1 dst_mac 02:bd:6c:3d:73:80 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10156 flower src_mac 02:dd:d1:55:81:e0 dst_mac 02:26:8e:77:cf:c7 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10157 flower src_mac 02:a2:dd:10:dc:9c dst_mac 02:22:92:a4:4f:46 src_ip 124.2.233.204 dst_ip 56.207.228.42 action drop && tc filter add dev swp33 ingress protocol ip pref 10158 flower src_mac 02:67:4b:6a:b5:2e dst_mac 02:93:60:ee:e5:5b src_ip 76.242.194.136 dst_ip 66.171.46.112 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10159 flower src_mac 02:fd:8c:05:e8:28 dst_mac 02:fc:06:2e:4f:30 src_ip 70.214.204.203 dst_ip 79.125.95.202 ip_proto tcp src_port 27786 dst_port 34933 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10160 flower src_mac 02:ae:f5:ba:f7:c4 dst_mac 02:9e:22:3d:b0:5a vlan_id 2448 vlan_ethtype 0x0800 src_ip 73.23.122.61 dst_ip 14.99.141.170 ip_proto tcp src_port 26279 dst_port 50221 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10161 flower src_mac 02:c1:bd:4d:52:06 dst_mac 02:d8:54:a1:7c:e7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10162 flower src_mac 02:cb:99:29:e6:0b dst_mac 02:a6:d6:5a:b6:55 vlan_id 660 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10163 flower src_mac 02:d6:80:c7:c6:ff dst_mac 02:c2:45:6a:14:3a action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10164 flower src_mac 02:1f:8c:a6:2b:e8 dst_mac 02:d2:79:1b:42:f0 src_ip 15.98.154.133 dst_ip 109.150.162.237 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10165 flower src_mac 02:24:5a:83:31:a0 dst_mac 02:a4:90:b5:97:ec vlan_id 2741 vlan_ethtype 0x0800 src_ip 28.83.156.240 dst_ip 73.104.149.213 ip_proto udp src_port 36795 dst_port 62091 action pass && tc filter add dev swp33 ingress protocol ip pref 10166 flower src_mac 02:68:93:4c:cb:14 dst_mac 02:71:49:32:68:da src_ip 122.109.17.117 dst_ip 41.56.153.192 ip_proto icmp code 99 type 11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10167 flower src_mac 02:6e:0b:74:d9:cd dst_mac 02:b7:04:bf:30:ca vlan_id 998 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10168 flower src_mac 02:48:17:90:7c:89 dst_mac 02:a6:bd:e0:93:73 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10169 flower src_mac 02:07:51:ca:22:66 dst_mac 02:a9:ab:8d:3a:00 src_ip 95.19.54.246 dst_ip 70.17.142.103 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10170 flower src_mac 02:79:66:25:c7:db dst_mac 02:1f:34:33:da:d0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10171 flower src_mac 02:27:d7:a5:d0:0b dst_mac 02:f1:48:32:d7:67 vlan_id 3469 vlan_ethtype ip src_ip 71.88.40.65 dst_ip 86.44.213.103 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10172 flower src_mac 02:f1:81:f5:9c:e0 dst_mac 02:e9:91:99:b9:57 vlan_id 1568 vlan_ethtype 0x0800 src_ip 25.56.172.93 dst_ip 70.25.255.137 ip_proto udp src_port 15979 dst_port 26784 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10173 flower src_mac 02:42:91:b1:4e:65 dst_mac 02:30:c2:a5:72:c2 vlan_id 3785 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10174 flower src_mac 02:9e:28:08:17:cf dst_mac 02:b4:d9:52:3b:b5 vlan_id 1144 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10175 flower src_mac 02:32:67:41:c6:62 dst_mac 02:bc:e5:46:7f:73 vlan_id 3685 vlan_ethtype ip src_ip 73.175.84.94 dst_ip 72.27.109.233 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10176 flower src_mac 02:cb:04:d3:a8:4a dst_mac 02:e8:c5:b1:41:c2 vlan_id 4075 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10177 flower src_mac 02:cd:58:e4:f4:04 dst_mac 02:62:0a:f4:6d:d8 vlan_id 2175 vlan_ethtype ip src_ip 12.238.144.121 dst_ip 102.142.115.211 ip_proto tcp src_port 10454 dst_port 36045 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10178 flower src_mac 02:1e:b7:41:b9:5e dst_mac 02:e3:36:bb:b2:95 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10179 flower src_mac 02:62:8c:4b:63:af dst_mac 02:16:29:ff:ee:3c action drop && tc filter add dev swp33 ingress protocol ip pref 10180 flower src_mac 02:bd:0a:2f:39:3f dst_mac 02:5b:c4:46:9c:f0 src_ip 85.226.91.79 dst_ip 100.12.132.74 ip_proto udp src_port 62333 dst_port 22459 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10181 flower src_mac 02:97:f7:dd:b6:25 dst_mac 02:f3:d8:7e:67:0d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10182 flower src_mac 02:c3:18:fc:cd:68 dst_mac 02:45:6b:7b:31:15 vlan_id 3093 vlan_ethtype ip src_ip 19.24.156.29 dst_ip 22.1.244.93 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10183 flower src_mac 02:cc:d2:43:21:cd dst_mac 02:ec:85:be:4c:9a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10184 flower src_mac 02:f2:6d:7b:3e:67 dst_mac 02:72:73:ea:44:3a action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10185 flower src_mac 02:e0:fc:95:a2:02 dst_mac 02:4e:39:19:ca:a5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10186 flower src_mac 02:eb:fd:3b:91:55 dst_mac 02:5d:35:10:d6:a6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10187 flower src_mac 02:27:9b:00:88:59 dst_mac 02:75:b3:f2:72:c0 vlan_id 760 vlan_ethtype 0x0800 src_ip 100.40.191.214 dst_ip 104.214.55.16 ip_proto tcp src_port 29730 dst_port 61881 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10188 flower src_mac 02:b5:59:0a:43:a5 dst_mac 02:bd:45:05:35:c8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10189 flower src_mac 02:c9:7d:02:de:3f dst_mac 02:33:02:fa:12:8c vlan_id 2733 vlan_ethtype ipv4 src_ip 125.105.195.16 dst_ip 28.219.77.129 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:76:db:49:4c:4a dst_mac 02:46:3e:88:e4:04 vlan_id 2116 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10191 flower src_mac 02:80:c9:c6:3f:d9 dst_mac 02:d9:4f:65:45:1d action pass && tc filter add dev swp33 ingress protocol ip pref 10192 flower src_mac 02:f1:48:c5:ea:ff dst_mac 02:82:98:8a:4c:04 src_ip 32.212.252.218 dst_ip 122.148.6.172 ip_proto udp src_port 26604 dst_port 35401 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10193 flower src_mac 02:0c:da:ba:ee:58 dst_mac 02:e3:55:98:32:15 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10194 flower src_mac 02:72:48:a6:2f:86 dst_mac 02:6c:09:b5:3f:b2 src_ip 52.167.119.61 dst_ip 109.94.96.195 ip_proto tcp src_port 30737 dst_port 26662 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10195 flower src_mac 02:a4:36:69:07:79 dst_mac 02:0d:06:ca:1f:e4 vlan_id 634 vlan_ethtype ip src_ip 16.165.64.195 dst_ip 22.31.101.178 ip_proto udp src_port 19163 dst_port 778 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10196 flower src_mac 02:46:43:72:4f:89 dst_mac 02:b4:62:9f:01:47 vlan_id 3068 vlan_ethtype 0x0800 src_ip 83.222.154.133 dst_ip 50.237.171.87 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10197 flower src_mac 02:3c:84:be:92:2c dst_mac 02:e4:96:1b:35:54 src_ip 121.73.15.208 dst_ip 59.64.254.58 ip_proto icmp code 63 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10198 flower src_mac 02:fd:05:82:ad:0a dst_mac 02:26:f0:a1:d9:8c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10199 flower src_mac 02:09:9d:ee:ef:34 dst_mac 02:63:f3:81:4e:9b vlan_id 3457 vlan_ethtype ip src_ip 104.175.76.84 dst_ip 79.209.65.37 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10200 flower src_mac 02:6b:da:c8:30:0a dst_mac 02:27:dc:21:04:f6 vlan_id 2096 vlan_ethtype 0x0800 src_ip 55.144.199.12 dst_ip 65.117.135.117 ip_proto udp src_port 59262 dst_port 26227 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10201 flower src_mac 02:32:43:a0:af:4a dst_mac 02:bc:b8:65:fb:55 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10202 flower src_mac 02:50:56:99:32:4b dst_mac 02:b4:4c:c0:3c:f9 src_ip 19.217.140.8 dst_ip 17.68.28.148 ip_proto tcp src_port 25858 dst_port 58908 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10203 flower src_mac 02:bc:0a:84:36:50 dst_mac 02:d9:0b:5e:ec:51 vlan_id 1804 vlan_ethtype 0x0800 src_ip 105.95.242.95 dst_ip 73.168.197.149 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10204 flower src_mac 02:36:65:65:35:8d dst_mac 02:13:a9:4b:8d:ad action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10205 flower src_mac 02:fe:ac:0a:df:02 dst_mac 02:7a:68:db:79:61 src_ip 94.177.93.223 dst_ip 13.44.222.197 ip_proto tcp src_port 29253 dst_port 42680 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10206 flower src_mac 02:1d:3f:ee:17:04 dst_mac 02:07:92:b8:4d:85 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10207 flower src_mac 02:24:59:5c:1e:67 dst_mac 02:f8:32:6b:23:fb action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10208 flower src_mac 02:f5:0b:df:4d:49 dst_mac 02:e9:07:da:6a:87 src_ip 122.2.255.114 dst_ip 23.69.38.238 ip_proto udp src_port 14300 dst_port 13081 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10209 flower src_mac 02:4f:10:65:8e:b9 dst_mac 02:bb:5c:0c:ee:54 vlan_id 1828 vlan_ethtype ip src_ip 52.182.112.130 dst_ip 48.144.203.58 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10210 flower src_mac 02:c6:a6:67:f2:34 dst_mac 02:f2:47:d8:a8:bc vlan_id 2604 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10211 flower src_mac 02:fd:7e:09:84:23 dst_mac 02:2c:f0:04:3d:0f src_ip 101.151.32.249 dst_ip 49.144.63.153 ip_proto tcp src_port 11638 dst_port 53652 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10212 flower src_mac 02:a3:be:04:be:52 dst_mac 02:6d:e1:d5:cd:82 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10213 flower src_mac 02:79:fd:b4:f7:33 dst_mac 02:bf:15:73:f7:b7 vlan_id 968 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10214 flower src_mac 02:1a:c6:6b:f0:47 dst_mac 02:b2:88:7a:18:7e vlan_id 900 vlan_ethtype 0x0800 src_ip 30.165.204.11 dst_ip 48.174.165.207 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10215 flower src_mac 02:88:db:1b:83:b3 dst_mac 02:c4:f0:0a:95:90 src_ip 112.215.189.139 dst_ip 104.159.140.201 ip_proto icmp code 57 type 5 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10216 flower src_mac 02:ca:05:e0:46:54 dst_mac 02:d8:b7:c4:1c:c1 src_ip 80.224.255.107 dst_ip 42.58.33.79 ip_proto icmp code 188 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10217 flower src_mac 02:d7:3b:3c:aa:56 dst_mac 02:3f:b9:84:84:54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10218 flower src_mac 02:4f:b8:6a:81:c1 dst_mac 02:3c:55:e9:53:bc vlan_id 1148 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10219 flower src_mac 02:8c:40:fe:79:12 dst_mac 02:9e:cd:af:76:25 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10220 flower src_mac 02:77:af:89:aa:58 dst_mac 02:cf:1c:7f:3a:76 vlan_id 136 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10221 flower src_mac 02:8f:33:61:e3:80 dst_mac 02:a4:86:d4:6b:7b src_ip 108.19.243.145 dst_ip 24.28.40.106 ip_proto tcp src_port 17777 dst_port 46117 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10222 flower src_mac 02:b8:8b:0f:e4:0d dst_mac 02:96:1f:d8:03:a9 vlan_id 3723 vlan_ethtype 0x0800 src_ip 116.91.66.30 dst_ip 112.107.211.188 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10223 flower src_mac 02:d6:c2:a4:01:cb dst_mac 02:a8:e3:58:22:1a vlan_id 913 vlan_ethtype 0x0800 src_ip 80.221.4.201 dst_ip 110.10.79.166 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10224 flower src_mac 02:fc:0e:82:d6:17 dst_mac 02:50:27:a0:d2:58 vlan_id 510 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10225 flower src_mac 02:5e:4e:a9:f7:49 dst_mac 02:83:83:75:17:48 vlan_id 1799 vlan_ethtype ipv4 src_ip 76.6.48.188 dst_ip 55.179.148.44 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10226 flower src_mac 02:c9:46:6b:00:ac dst_mac 02:7b:3d:12:fe:b2 vlan_id 1135 vlan_ethtype ipv4 src_ip 105.82.155.183 dst_ip 88.207.48.229 action drop && tc filter add dev swp33 ingress protocol ip pref 10227 flower src_mac 02:7c:dd:f4:59:ad dst_mac 02:60:36:8f:06:1b src_ip 25.173.144.123 dst_ip 84.39.67.46 ip_proto icmp code 96 type 5 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10228 flower src_mac 02:52:02:5b:66:d4 dst_mac 02:62:2e:eb:e1:d4 src_ip 99.247.190.30 dst_ip 55.187.63.78 ip_proto icmp code 136 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10229 flower src_mac 02:a7:57:a4:41:e3 dst_mac 02:e1:c4:40:70:3b src_ip 113.172.39.123 dst_ip 119.16.203.27 ip_proto udp src_port 26681 dst_port 45928 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10230 flower src_mac 02:7b:f0:fc:b9:9a dst_mac 02:fa:51:dd:76:2f vlan_id 2567 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10231 flower src_mac 02:08:0b:42:68:38 dst_mac 02:52:32:ab:30:05 vlan_id 1142 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10232 flower src_mac 02:3c:e9:75:00:97 dst_mac 02:f3:04:98:4f:a6 src_ip 16.123.89.18 dst_ip 30.82.223.46 ip_proto udp src_port 38854 dst_port 4425 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10233 flower src_mac 02:52:ff:1c:72:0e dst_mac 02:31:cd:a4:a3:bd vlan_id 1222 vlan_ethtype 0x0800 src_ip 110.45.107.113 dst_ip 35.86.62.228 ip_proto udp src_port 51665 dst_port 43422 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10234 flower src_mac 02:21:72:13:83:3c dst_mac 02:0b:17:38:35:7e src_ip 34.243.230.144 dst_ip 20.19.151.240 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10235 flower src_mac 02:57:e9:15:dc:1c dst_mac 02:88:8b:b8:ac:d1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10236 flower src_mac 02:79:43:7a:27:7a dst_mac 02:18:82:bc:ee:29 vlan_id 1162 vlan_ethtype ip src_ip 86.42.60.50 dst_ip 31.105.115.242 ip_proto udp src_port 40097 dst_port 51700 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10237 flower src_mac 02:55:d1:68:5b:18 dst_mac 02:11:6d:91:91:34 src_ip 34.139.102.207 dst_ip 85.184.62.148 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10238 flower src_mac 02:83:98:5f:00:cc dst_mac 02:5a:05:d9:77:23 vlan_id 1114 vlan_ethtype ipv4 src_ip 71.201.137.174 dst_ip 62.220.63.28 ip_proto tcp src_port 12716 dst_port 27863 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10239 flower src_mac 02:ea:07:8a:12:73 dst_mac 02:20:50:60:25:43 vlan_id 2076 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10240 flower src_mac 02:b4:60:7c:ae:55 dst_mac 02:bb:9e:41:5a:69 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10241 flower src_mac 02:bb:ec:be:23:88 dst_mac 02:c7:df:b4:46:26 vlan_id 2815 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10242 flower src_mac 02:b5:e3:b0:97:9a dst_mac 02:7b:0c:45:51:39 vlan_id 3657 vlan_ethtype 0x0800 src_ip 93.210.177.162 dst_ip 21.162.66.149 ip_proto tcp src_port 20836 dst_port 4189 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10243 flower src_mac 02:d5:1c:80:b7:50 dst_mac 02:11:61:6d:35:9b src_ip 64.3.216.247 dst_ip 57.157.251.127 ip_proto udp src_port 8207 dst_port 16290 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:b4:a8:f5:17:45 dst_mac 02:62:26:07:ca:e6 vlan_id 2578 vlan_ethtype ip src_ip 20.205.152.93 dst_ip 106.76.194.64 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10245 flower src_mac 02:ff:04:9b:23:65 dst_mac 02:36:7d:7a:39:c5 vlan_id 2003 vlan_ethtype 0x0800 src_ip 20.226.70.88 dst_ip 71.183.44.218 ip_proto tcp src_port 58499 dst_port 25002 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10246 flower src_mac 02:c6:4a:67:8c:99 dst_mac 02:ae:b3:ff:67:d0 vlan_id 2393 vlan_ethtype 0x0800 src_ip 67.233.22.197 dst_ip 121.197.38.142 ip_proto udp src_port 20626 dst_port 59145 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10247 flower src_mac 02:9c:4f:6b:67:91 dst_mac 02:3c:98:22:79:1c src_ip 83.254.163.76 dst_ip 123.208.32.158 ip_proto udp src_port 14206 dst_port 45784 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10248 flower src_mac 02:f0:1e:61:59:d6 dst_mac 02:0e:25:a9:2f:3d action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10249 flower src_mac 02:f4:63:1e:46:56 dst_mac 02:22:5a:54:c1:2b vlan_id 2733 vlan_ethtype ip src_ip 93.117.43.90 dst_ip 11.38.92.19 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10250 flower src_mac 02:55:ab:c0:b1:19 dst_mac 02:a0:f4:7f:8d:4c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10251 flower src_mac 02:3e:00:53:48:b0 dst_mac 02:df:99:8f:f2:14 vlan_id 758 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10252 flower src_mac 02:54:4a:fa:95:fe dst_mac 02:e4:e4:64:eb:3b vlan_id 2060 vlan_ethtype 0x0800 src_ip 117.109.203.155 dst_ip 38.186.227.102 ip_proto tcp src_port 49951 dst_port 58994 action drop && tc filter add dev swp33 ingress protocol ip pref 10253 flower src_mac 02:9e:32:4b:57:34 dst_mac 02:a4:dc:b4:9e:46 src_ip 81.195.172.65 dst_ip 96.120.10.146 ip_proto icmp code 133 type 16 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10254 flower src_mac 02:2f:42:f4:91:99 dst_mac 02:11:88:49:2d:e7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10255 flower src_mac 02:72:dc:4b:10:11 dst_mac 02:f5:fd:1f:e1:40 vlan_id 1311 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10256 flower src_mac 02:74:94:dd:8a:62 dst_mac 02:f7:b9:17:58:5f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10257 flower src_mac 02:b9:ed:66:42:2c dst_mac 02:42:bf:13:bd:e4 vlan_id 694 vlan_ethtype ipv4 src_ip 34.11.64.76 dst_ip 101.111.68.91 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10258 flower src_mac 02:bd:9a:1e:de:b6 dst_mac 02:f1:e9:07:0e:7e vlan_id 3545 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10259 flower src_mac 02:4f:b6:b7:63:cb dst_mac 02:d0:3d:24:cf:e1 vlan_id 3729 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10260 flower src_mac 02:7c:2b:97:34:e6 dst_mac 02:8c:d7:7c:1a:9c vlan_id 1627 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10261 flower src_mac 02:18:aa:e6:c2:89 dst_mac 02:c6:3d:53:d7:3f action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10262 flower src_mac 02:38:ad:4f:ba:1a dst_mac 02:0c:6c:e4:ac:ae src_ip 85.215.164.63 dst_ip 43.79.203.234 ip_proto icmp code 128 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10263 flower src_mac 02:b6:1e:2b:d2:ca dst_mac 02:a8:ff:02:0a:d6 src_ip 122.192.24.231 dst_ip 41.242.149.73 ip_proto icmp code 165 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10264 flower src_mac 02:9e:86:eb:63:cb dst_mac 02:f9:cc:ee:5c:5a vlan_id 3519 vlan_ethtype 0x0800 src_ip 102.212.27.243 dst_ip 126.238.22.72 ip_proto tcp src_port 43979 dst_port 36468 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10265 flower src_mac 02:e3:52:05:d5:3c dst_mac 02:79:10:f1:82:00 vlan_id 2587 vlan_ethtype ip src_ip 42.163.24.192 dst_ip 82.2.82.54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10266 flower src_mac 02:51:00:91:c4:1a dst_mac 02:7a:23:dc:47:87 vlan_id 2205 vlan_ethtype ip src_ip 67.71.131.219 dst_ip 89.173.233.203 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10267 flower src_mac 02:51:93:a5:7c:71 dst_mac 02:a6:29:14:7f:88 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10268 flower src_mac 02:69:9e:9c:41:c0 dst_mac 02:0d:50:ad:e4:78 src_ip 119.246.211.121 dst_ip 101.56.140.42 ip_proto icmp code 49 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10269 flower src_mac 02:8b:e4:43:27:b7 dst_mac 02:92:e2:d2:6f:ce vlan_id 1122 vlan_ethtype 0x0800 src_ip 21.101.144.49 dst_ip 21.37.35.145 ip_proto udp src_port 14760 dst_port 17215 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10270 flower src_mac 02:59:59:5b:9a:f8 dst_mac 02:1d:2c:5c:52:ff vlan_id 2626 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10271 flower src_mac 02:70:8f:7d:f4:7c dst_mac 02:a6:e1:a5:26:bb src_ip 100.212.24.106 dst_ip 70.12.248.193 ip_proto udp src_port 39898 dst_port 61155 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10272 flower src_mac 02:68:34:d2:2f:2d dst_mac 02:dc:2b:1f:e3:cb vlan_id 2616 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:a7:c8:4c:3c:be dst_mac 02:df:af:18:89:92 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10274 flower src_mac 02:7b:a9:83:b3:4d dst_mac 02:75:dd:13:e5:e4 vlan_id 770 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10275 flower src_mac 02:1c:b3:27:24:87 dst_mac 02:7c:8c:4d:86:08 vlan_id 545 vlan_ethtype ipv4 src_ip 18.15.60.79 dst_ip 122.221.136.134 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10276 flower src_mac 02:7d:96:f4:b5:08 dst_mac 02:dc:67:68:48:a3 vlan_id 128 vlan_ethtype ip src_ip 123.208.47.180 dst_ip 35.84.141.86 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10277 flower src_mac 02:46:41:41:b2:d5 dst_mac 02:0a:b1:66:2a:d4 vlan_id 2434 vlan_ethtype ipv4 src_ip 110.193.98.185 dst_ip 45.89.198.175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10278 flower src_mac 02:72:94:9d:7d:04 dst_mac 02:9e:ed:72:87:8b vlan_id 3062 vlan_ethtype ipv4 src_ip 79.141.19.181 dst_ip 106.119.55.8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10279 flower src_mac 02:35:97:03:de:36 dst_mac 02:f3:29:fe:a5:b0 vlan_id 3641 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10280 flower src_mac 02:fd:51:84:be:16 dst_mac 02:43:e8:44:43:f8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10281 flower src_mac 02:32:fa:b4:0d:1a dst_mac 02:ca:27:b5:bf:7e vlan_id 865 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10282 flower src_mac 02:3f:09:93:74:f6 dst_mac 02:d3:e0:d6:19:2e vlan_id 4062 vlan_ethtype 0x0800 src_ip 21.117.180.79 dst_ip 98.93.224.164 ip_proto udp src_port 33425 dst_port 24047 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10283 flower src_mac 02:ad:71:9d:4d:5c dst_mac 02:d4:5b:61:73:cd action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10284 flower src_mac 02:04:8a:8e:5d:d7 dst_mac 02:13:09:89:b7:88 src_ip 114.89.39.143 dst_ip 61.255.33.23 ip_proto icmp code 97 type 3 action trap && tc filter add dev swp33 ingress protocol ip pref 10285 flower src_mac 02:2e:f0:22:7c:5e dst_mac 02:76:90:2e:4e:95 src_ip 55.36.149.145 dst_ip 49.59.179.126 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10286 flower src_mac 02:a9:e9:aa:f7:f5 dst_mac 02:20:23:99:73:56 vlan_id 3545 vlan_ethtype ipv4 src_ip 84.245.96.219 dst_ip 35.224.182.57 ip_proto udp src_port 39635 dst_port 13573 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10287 flower src_mac 02:35:9a:6c:74:90 dst_mac 02:9a:e8:a6:cc:65 vlan_id 25 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10288 flower src_mac 02:ce:cb:8e:af:8a dst_mac 02:a8:49:2c:a3:63 src_ip 24.148.93.102 dst_ip 111.238.15.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10289 flower src_mac 02:88:e6:12:d7:36 dst_mac 02:56:01:0e:dc:09 vlan_id 4067 vlan_ethtype ipv4 src_ip 91.7.49.170 dst_ip 34.20.181.11 action drop && tc filter add dev swp33 ingress protocol ip pref 10290 flower src_mac 02:95:e9:12:c8:c5 dst_mac 02:8d:ea:d0:08:ff src_ip 26.127.223.48 dst_ip 58.116.55.37 ip_proto icmp code 146 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10291 flower src_mac 02:eb:7f:7d:7d:a3 dst_mac 02:0d:c4:52:a4:c6 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10292 flower src_mac 02:11:60:bc:4b:27 dst_mac 02:61:27:08:77:2d src_ip 46.238.148.6 dst_ip 82.176.203.129 ip_proto icmp code 212 type 18 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10293 flower src_mac 02:6c:aa:b1:4f:cb dst_mac 02:f4:56:1a:aa:a4 src_ip 42.8.55.9 dst_ip 89.242.79.169 ip_proto icmp code 149 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10294 flower src_mac 02:68:39:c1:08:72 dst_mac 02:1c:d8:32:2b:e4 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10295 flower src_mac 02:6d:17:48:81:31 dst_mac 02:f1:1a:da:e5:9f src_ip 46.181.219.123 dst_ip 119.50.241.90 ip_proto udp src_port 57227 dst_port 62036 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10296 flower src_mac 02:1e:6b:70:f2:ae dst_mac 02:79:5a:5c:cd:8d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10297 flower src_mac 02:b9:e5:dc:38:40 dst_mac 02:b3:41:52:67:de vlan_id 2047 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10298 flower src_mac 02:e1:0b:c5:30:f8 dst_mac 02:32:fd:7e:53:80 src_ip 72.236.234.71 dst_ip 98.151.122.39 ip_proto udp src_port 52393 dst_port 1530 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10299 flower src_mac 02:5f:c6:43:59:73 dst_mac 02:2f:33:cc:59:7e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:62:68:68:0a:00 dst_mac 02:6b:ab:31:61:5f vlan_id 3445 vlan_ethtype 0x0800 src_ip 120.120.187.56 dst_ip 97.198.253.217 ip_proto tcp src_port 37292 dst_port 2070 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10301 flower src_mac 02:b3:13:17:2e:f7 dst_mac 02:ed:d7:cd:fa:e9 src_ip 71.174.109.19 dst_ip 40.254.224.217 ip_proto udp src_port 49566 dst_port 8600 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10302 flower src_mac 02:01:26:30:2c:e2 dst_mac 02:55:36:93:e3:f4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10303 flower src_mac 02:0e:b3:3a:6e:64 dst_mac 02:2d:25:9f:24:61 vlan_id 3731 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10304 flower src_mac 02:5c:6e:6d:d7:50 dst_mac 02:32:10:53:f5:0b vlan_id 1808 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10305 flower src_mac 02:e3:83:c0:13:76 dst_mac 02:2e:00:5f:6a:59 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10306 flower src_mac 02:f3:28:78:ce:3e dst_mac 02:58:47:51:94:7d src_ip 94.41.105.72 dst_ip 22.16.133.172 ip_proto tcp src_port 23948 dst_port 5616 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10307 flower src_mac 02:c8:15:e1:aa:dd dst_mac 02:39:32:58:0b:71 src_ip 22.90.158.247 dst_ip 98.170.117.121 ip_proto udp src_port 44227 dst_port 38078 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10308 flower src_mac 02:8a:7a:46:5b:fc dst_mac 02:75:15:16:ba:1c vlan_id 2937 vlan_ethtype ip src_ip 62.167.140.116 dst_ip 15.30.64.249 ip_proto udp src_port 58591 dst_port 19822 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10309 flower src_mac 02:7b:68:e1:93:18 dst_mac 02:2a:7c:e9:76:c7 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10310 flower src_mac 02:f8:a9:8d:a4:63 dst_mac 02:f0:f6:27:34:4c vlan_id 3658 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10311 flower src_mac 02:34:c6:a8:28:ed dst_mac 02:a5:80:42:ca:80 vlan_id 3751 vlan_ethtype ipv4 src_ip 55.120.121.83 dst_ip 92.15.239.181 ip_proto udp src_port 44297 dst_port 44346 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10312 flower src_mac 02:86:b9:3f:fe:38 dst_mac 02:c6:c6:b2:2c:b2 vlan_id 2985 vlan_ethtype ip src_ip 122.157.229.11 dst_ip 56.106.236.134 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10313 flower src_mac 02:b6:c8:6c:22:85 dst_mac 02:7e:0f:4a:8e:68 vlan_id 2225 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10314 flower src_mac 02:85:ae:fd:22:02 dst_mac 02:5c:c7:7e:e3:f5 vlan_id 1700 vlan_ethtype ipv4 src_ip 104.212.205.20 dst_ip 96.229.147.53 ip_proto udp src_port 21390 dst_port 14208 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:b1:36:15:a2:1b dst_mac 02:1b:56:d3:1b:07 vlan_id 230 vlan_ethtype ip src_ip 124.49.83.90 dst_ip 11.26.18.198 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10316 flower src_mac 02:91:b6:9b:dc:22 dst_mac 02:be:4e:dd:e7:60 vlan_id 3597 vlan_ethtype ip src_ip 74.58.220.24 dst_ip 99.9.167.101 ip_proto udp src_port 32404 dst_port 60006 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10317 flower src_mac 02:5d:69:51:ec:82 dst_mac 02:ab:95:e2:50:b6 vlan_id 3866 vlan_ethtype 0x0800 src_ip 119.157.25.36 dst_ip 63.148.95.228 ip_proto tcp src_port 39723 dst_port 14035 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10318 flower src_mac 02:5e:b4:fb:60:b6 dst_mac 02:29:76:b6:71:5c src_ip 45.81.166.124 dst_ip 73.123.230.154 ip_proto icmp code 138 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10319 flower src_mac 02:a2:b8:d6:93:53 dst_mac 02:e3:43:e6:96:46 vlan_id 271 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10320 flower src_mac 02:fc:1a:ed:f7:fb dst_mac 02:ee:c0:a9:89:e9 vlan_id 810 vlan_ethtype 0x0800 src_ip 93.91.219.230 dst_ip 55.228.7.62 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10321 flower src_mac 02:09:7a:7f:bb:f0 dst_mac 02:93:2e:d3:c2:fd vlan_id 3739 vlan_ethtype 0x0800 src_ip 18.179.100.92 dst_ip 79.247.122.5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10322 flower src_mac 02:31:0f:5b:f3:7b dst_mac 02:e1:1f:e4:ab:6e action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10323 flower src_mac 02:bc:72:0a:05:a0 dst_mac 02:9f:16:f7:b8:8a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10324 flower src_mac 02:aa:f2:49:12:aa dst_mac 02:9a:93:d0:34:36 vlan_id 391 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10325 flower src_mac 02:2e:b4:d0:e9:54 dst_mac 02:be:05:b5:15:5b vlan_id 3024 vlan_ethtype ipv4 src_ip 78.31.214.92 dst_ip 14.248.134.41 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10326 flower src_mac 02:12:99:63:df:31 dst_mac 02:1b:34:81:82:fa src_ip 110.108.9.167 dst_ip 39.206.74.40 ip_proto icmp code 217 type 11 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10327 flower src_mac 02:fc:40:e0:34:58 dst_mac 02:f3:f1:2d:5b:49 vlan_id 1785 vlan_ethtype ipv4 src_ip 45.101.65.162 dst_ip 118.220.203.34 ip_proto tcp src_port 30853 dst_port 40308 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10328 flower src_mac 02:10:12:6c:9f:f2 dst_mac 02:a1:34:3e:c7:a2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10329 flower src_mac 02:24:fc:1c:bd:25 dst_mac 02:c7:24:13:fc:b3 vlan_id 3451 vlan_ethtype ipv4 src_ip 75.75.216.156 dst_ip 55.165.65.67 ip_proto tcp src_port 31975 dst_port 56549 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10330 flower src_mac 02:b4:d8:cd:98:8d dst_mac 02:fd:c2:49:ff:19 src_ip 118.128.139.232 dst_ip 85.214.66.125 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10331 flower src_mac 02:9b:ea:8b:a8:92 dst_mac 02:63:f3:74:8d:4f vlan_id 2382 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10332 flower src_mac 02:42:e6:86:48:07 dst_mac 02:6a:4d:0c:5d:3d vlan_id 3618 vlan_ethtype ipv4 src_ip 79.96.1.150 dst_ip 76.156.210.138 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10333 flower src_mac 02:97:12:2c:fd:4f dst_mac 02:d6:bb:3b:66:47 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10334 flower src_mac 02:0e:86:aa:8d:7a dst_mac 02:8e:b4:89:4d:d3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10335 flower src_mac 02:63:1f:76:f7:19 dst_mac 02:e7:3d:0d:0c:3f vlan_id 1396 vlan_ethtype ip src_ip 17.151.232.77 dst_ip 72.106.41.231 ip_proto tcp src_port 37569 dst_port 58767 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10336 flower src_mac 02:cd:44:37:27:f5 dst_mac 02:41:db:0c:67:40 src_ip 126.140.122.115 dst_ip 16.220.245.225 ip_proto udp src_port 28503 dst_port 38880 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10337 flower src_mac 02:bc:25:fd:1a:94 dst_mac 02:b3:1b:cd:65:dc vlan_id 2611 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10338 flower src_mac 02:6b:af:45:1a:6a dst_mac 02:e6:2d:80:51:aa vlan_id 2252 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10339 flower src_mac 02:4e:62:37:a2:e3 dst_mac 02:66:c7:94:8b:33 src_ip 28.240.29.24 dst_ip 83.156.64.89 ip_proto tcp src_port 38956 dst_port 25014 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10340 flower src_mac 02:18:48:41:c1:c0 dst_mac 02:4c:99:ea:87:bd action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10341 flower src_mac 02:2a:4d:0c:e5:fc dst_mac 02:92:75:dd:52:b1 vlan_id 1476 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10342 flower src_mac 02:ae:22:c6:48:95 dst_mac 02:60:33:84:70:6a vlan_id 2544 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10343 flower src_mac 02:8e:25:d6:23:a1 dst_mac 02:20:08:95:14:69 src_ip 13.49.200.181 dst_ip 62.83.235.228 ip_proto tcp src_port 12220 dst_port 431 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10344 flower src_mac 02:43:78:64:9c:dd dst_mac 02:6c:a5:46:90:f1 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10345 flower src_mac 02:39:97:d1:47:33 dst_mac 02:dd:60:48:7c:83 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10346 flower src_mac 02:33:83:32:d7:b4 dst_mac 02:e6:5f:7b:b3:ba action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10347 flower src_mac 02:c0:a3:22:e1:45 dst_mac 02:1a:57:e3:83:a1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10348 flower src_mac 02:4e:34:6a:4d:7b dst_mac 02:d8:18:5b:40:8b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10349 flower src_mac 02:fc:98:b4:c9:fb dst_mac 02:0f:17:37:71:61 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10350 flower src_mac 02:b1:b9:ef:85:96 dst_mac 02:72:57:0a:b6:df src_ip 34.7.232.222 dst_ip 21.94.110.231 action drop && tc filter add dev swp33 ingress protocol ip pref 10351 flower src_mac 02:de:73:36:d3:3c dst_mac 02:03:53:38:ab:b2 src_ip 45.0.98.23 dst_ip 60.220.108.249 ip_proto udp src_port 7851 dst_port 48129 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10352 flower src_mac 02:8a:fe:f8:45:81 dst_mac 02:34:e9:e0:2c:94 vlan_id 3285 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10353 flower src_mac 02:7e:74:ac:00:87 dst_mac 02:cc:da:9c:71:f2 src_ip 98.172.184.231 dst_ip 63.192.45.218 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10354 flower src_mac 02:e4:00:49:9c:59 dst_mac 02:2f:a1:72:be:d4 vlan_id 3104 vlan_ethtype ipv4 src_ip 126.229.28.148 dst_ip 72.8.250.86 ip_proto udp src_port 31603 dst_port 34217 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10355 flower src_mac 02:df:13:30:9f:38 dst_mac 02:f3:8f:c5:4e:d8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10356 flower src_mac 02:98:b0:9c:86:64 dst_mac 02:c0:7d:60:e1:10 vlan_id 392 vlan_ethtype 0x0800 src_ip 68.158.119.112 dst_ip 37.40.29.159 ip_proto tcp src_port 60955 dst_port 941 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10357 flower src_mac 02:b8:db:78:52:a8 dst_mac 02:9d:24:23:5a:15 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10358 flower src_mac 02:8c:86:8c:f2:c2 dst_mac 02:ac:5c:f5:05:7f vlan_id 956 vlan_ethtype 0x0800 src_ip 66.33.65.162 dst_ip 102.117.223.79 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10359 flower src_mac 02:f1:07:78:88:b6 dst_mac 02:89:22:a5:98:60 src_ip 99.220.83.17 dst_ip 105.237.0.51 ip_proto icmp code 136 type 13 action trap && tc filter add dev swp33 ingress protocol ip pref 10360 flower src_mac 02:11:ce:fb:27:4b dst_mac 02:ca:38:57:b3:08 src_ip 20.161.170.231 dst_ip 91.23.14.155 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:cc:5c:5c:99:71 dst_mac 02:2a:01:e4:e4:3d vlan_id 3472 vlan_ethtype ipv4 src_ip 44.185.250.178 dst_ip 103.71.206.117 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10362 flower src_mac 02:12:ef:d7:43:d9 dst_mac 02:61:ff:8c:f8:0d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10363 flower src_mac 02:c4:01:63:81:48 dst_mac 02:50:96:2b:3a:39 vlan_id 708 vlan_ethtype ip src_ip 114.51.90.105 dst_ip 18.112.92.176 ip_proto udp src_port 63799 dst_port 22006 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10364 flower src_mac 02:0c:e5:e9:09:d8 dst_mac 02:06:40:3a:6f:2b src_ip 53.10.207.185 dst_ip 78.241.198.5 ip_proto udp src_port 7401 dst_port 50746 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10365 flower src_mac 02:b1:db:5d:9b:41 dst_mac 02:bc:c7:cc:f9:b5 vlan_id 3387 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10366 flower src_mac 02:aa:01:bf:9e:74 dst_mac 02:be:ef:b1:3b:a0 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10367 flower src_mac 02:f1:4c:9e:64:07 dst_mac 02:de:fe:bf:f1:41 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10368 flower src_mac 02:96:26:c1:7e:f0 dst_mac 02:9c:02:af:d5:4d vlan_id 1593 vlan_ethtype 0x0800 src_ip 57.48.86.149 dst_ip 41.184.118.221 ip_proto udp src_port 43503 dst_port 28216 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10369 flower src_mac 02:d7:f4:2b:3a:72 dst_mac 02:e4:fb:50:df:7f vlan_id 1567 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10370 flower src_mac 02:e5:33:79:09:66 dst_mac 02:bc:75:01:1b:b1 vlan_id 2251 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10371 flower src_mac 02:cb:cb:48:d2:fc dst_mac 02:97:07:cb:17:ce src_ip 67.153.158.195 dst_ip 44.84.65.139 ip_proto udp src_port 41360 dst_port 27452 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10372 flower src_mac 02:9f:d7:f5:28:3b dst_mac 02:c7:dc:50:1d:2d src_ip 24.230.217.243 dst_ip 90.57.34.82 ip_proto udp src_port 14417 dst_port 65511 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10373 flower src_mac 02:50:f1:3b:01:80 dst_mac 02:d3:d5:f1:5f:b4 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10374 flower src_mac 02:d0:27:78:4c:2e dst_mac 02:d4:f6:5f:10:61 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:9c:bc:9a:aa:f9 dst_mac 02:43:92:50:4a:61 vlan_id 2027 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10376 flower src_mac 02:bb:69:aa:71:3c dst_mac 02:fb:58:56:79:12 vlan_id 3989 vlan_ethtype 0x0800 src_ip 73.47.104.106 dst_ip 109.31.223.45 ip_proto tcp src_port 60701 dst_port 42451 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:7d:14:26:a4:ac dst_mac 02:cd:52:48:41:fc vlan_id 1573 vlan_ethtype 0x0800 src_ip 67.158.53.235 dst_ip 84.207.28.100 ip_proto tcp src_port 23611 dst_port 61223 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10378 flower src_mac 02:be:ca:bc:c0:e8 dst_mac 02:01:df:2a:90:cb src_ip 28.214.252.121 dst_ip 99.36.86.230 ip_proto tcp src_port 30875 dst_port 13940 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10379 flower src_mac 02:29:cd:4c:93:86 dst_mac 02:21:e9:32:af:34 vlan_id 1775 vlan_ethtype ip src_ip 73.229.167.227 dst_ip 31.123.223.69 ip_proto tcp src_port 59948 dst_port 51730 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:53:e7:33:16:34 dst_mac 02:6f:64:9a:de:b4 vlan_id 2466 vlan_ethtype ip src_ip 80.19.224.85 dst_ip 46.199.73.91 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:69:f7:25:2b:01 dst_mac 02:52:22:04:30:c8 vlan_id 400 vlan_ethtype 0x0800 src_ip 11.98.230.224 dst_ip 116.19.50.69 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10382 flower src_mac 02:0f:96:04:f3:b5 dst_mac 02:5f:27:83:9b:8c vlan_id 1819 vlan_ethtype ip src_ip 88.130.136.75 dst_ip 44.176.31.17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10383 flower src_mac 02:94:48:6f:6f:f9 dst_mac 02:33:25:ad:4c:9d vlan_id 2562 vlan_ethtype 0x0800 src_ip 50.196.243.156 dst_ip 15.172.161.102 ip_proto udp src_port 29166 dst_port 25906 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10384 flower src_mac 02:78:b0:b1:ae:db dst_mac 02:45:d6:67:e7:d7 src_ip 67.116.49.183 dst_ip 125.141.31.52 ip_proto icmp code 120 type 11 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10385 flower src_mac 02:7c:c0:8d:0e:0f dst_mac 02:e8:8d:e5:c9:84 src_ip 107.199.122.180 dst_ip 79.177.239.119 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10386 flower src_mac 02:00:48:84:dd:91 dst_mac 02:ec:81:e6:70:ba action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10387 flower src_mac 02:c0:9f:7f:8d:70 dst_mac 02:70:40:52:2d:4c vlan_id 2385 vlan_ethtype 0x0800 src_ip 14.118.186.206 dst_ip 92.206.204.246 ip_proto udp src_port 4063 dst_port 16977 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10388 flower src_mac 02:bb:de:f1:0f:71 dst_mac 02:1d:e9:1a:7e:d7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10389 flower src_mac 02:7f:28:b9:dc:cf dst_mac 02:58:eb:a5:b5:d0 vlan_id 3100 vlan_ethtype ipv4 src_ip 116.12.81.47 dst_ip 28.137.223.172 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10390 flower src_mac 02:10:1c:75:d1:68 dst_mac 02:d0:d4:0b:f8:9a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10391 flower src_mac 02:46:12:3c:85:98 dst_mac 02:fe:b6:ea:4a:0f vlan_id 3178 vlan_ethtype ip src_ip 69.150.149.147 dst_ip 114.129.134.237 ip_proto tcp src_port 15109 dst_port 516 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10392 flower src_mac 02:90:76:1a:c3:c8 dst_mac 02:40:0b:0d:f9:57 vlan_id 1858 vlan_ethtype ip src_ip 62.42.12.17 dst_ip 54.147.216.105 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10393 flower src_mac 02:a3:6a:76:69:ac dst_mac 02:51:2c:b2:89:01 vlan_id 26 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10394 flower src_mac 02:94:96:8b:7f:5b dst_mac 02:bd:d8:65:9e:53 vlan_id 197 vlan_ethtype ip src_ip 85.21.32.98 dst_ip 107.32.142.68 action pass && tc filter add dev swp33 ingress protocol ip pref 10395 flower src_mac 02:ed:66:60:b8:80 dst_mac 02:e5:fe:f0:eb:ab src_ip 75.250.130.21 dst_ip 38.208.70.124 ip_proto icmp code 17 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10396 flower src_mac 02:a2:6e:a2:29:85 dst_mac 02:b0:8d:30:ff:6c action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10397 flower src_mac 02:03:ab:ee:ac:7f dst_mac 02:1d:03:f1:56:a4 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10398 flower src_mac 02:ec:fb:81:ff:5e dst_mac 02:44:cf:a6:ca:17 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10399 flower src_mac 02:91:d7:b3:15:9b dst_mac 02:56:74:56:df:20 action pass INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 10400 flower src_mac 02:6b:4b:31:51:ed dst_mac 02:e1:f8:6f:49:6c action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10401 flower src_mac 02:aa:d2:8c:41:e8 dst_mac 02:da:a5:5f:6d:0b src_ip 20.253.155.247 dst_ip 67.188.193.174 ip_proto tcp src_port 32227 dst_port 55458 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10402 flower src_mac 02:1e:7c:c5:76:e3 dst_mac 02:49:b4:84:45:ad src_ip 97.227.204.170 dst_ip 124.202.221.181 ip_proto tcp src_port 23692 dst_port 42886 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10403 flower src_mac 02:47:b6:09:a8:f0 dst_mac 02:fc:d7:00:01:ce vlan_id 69 vlan_ethtype 0x0800 src_ip 15.126.10.65 dst_ip 118.68.48.230 ip_proto udp src_port 49088 dst_port 47402 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10404 flower src_mac 02:0d:e6:67:81:26 dst_mac 02:0d:19:ec:0e:cd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10405 flower src_mac 02:f7:7f:7f:fb:b3 dst_mac 02:b9:53:4a:a8:27 vlan_id 3707 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10406 flower src_mac 02:c0:ea:4c:58:e1 dst_mac 02:fc:aa:1f:c9:f5 src_ip 60.192.152.93 dst_ip 37.247.35.24 ip_proto icmp code 194 type 14 action pass && tc filter add dev swp33 ingress protocol ip pref 10407 flower src_mac 02:e6:00:cd:27:70 dst_mac 02:78:8f:69:f5:6f src_ip 100.215.25.106 dst_ip 91.12.21.151 ip_proto udp src_port 11014 dst_port 51496 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10408 flower src_mac 02:57:9b:1d:f7:a5 dst_mac 02:52:14:ea:2b:7c vlan_id 2763 vlan_ethtype ipv4 src_ip 55.16.37.74 dst_ip 49.239.38.101 ip_proto udp src_port 41845 dst_port 54103 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10409 flower src_mac 02:fc:51:e3:98:98 dst_mac 02:bd:e1:2e:c6:be vlan_id 399 vlan_ethtype ip src_ip 44.238.209.178 dst_ip 43.29.147.201 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10410 flower src_mac 02:e3:e4:25:f3:43 dst_mac 02:09:22:e0:f0:b1 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10411 flower src_mac 02:8c:6f:1c:16:16 dst_mac 02:d6:5d:11:b1:c7 src_ip 24.47.235.100 dst_ip 56.63.240.158 ip_proto icmp code 12 type 3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10412 flower src_mac 02:a4:c7:9f:2c:30 dst_mac 02:dc:60:fe:b6:0f vlan_id 383 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10413 flower src_mac 02:ad:99:99:4d:31 dst_mac 02:c3:f7:8d:15:24 vlan_id 3128 vlan_ethtype 0x0800 src_ip 41.150.251.221 dst_ip 29.170.247.193 ip_proto udp src_port 2373 dst_port 21528 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10414 flower src_mac 02:2d:db:4d:88:5a dst_mac 02:db:1e:7a:a5:bf action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10415 flower src_mac 02:14:5c:63:08:c5 dst_mac 02:e0:9a:40:eb:16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10416 flower src_mac 02:ca:d3:d2:b8:94 dst_mac 02:b9:31:02:4d:47 vlan_id 2378 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10417 flower src_mac 02:90:ae:b3:5a:e3 dst_mac 02:35:18:5a:47:7b src_ip 54.186.111.236 dst_ip 39.78.3.162 ip_proto icmp code 141 type 0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10418 flower src_mac 02:f6:fe:64:f9:c2 dst_mac 02:aa:09:5d:2a:cd vlan_id 2073 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10419 flower src_mac 02:62:7c:b7:fc:e8 dst_mac 02:42:99:f7:ba:0f vlan_id 1439 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10420 flower src_mac 02:5e:e4:23:99:b7 dst_mac 02:ba:3a:16:41:d7 src_ip 55.100.2.148 dst_ip 88.148.191.93 ip_proto icmp code 192 type 5 action pass && tc filter add dev swp33 ingress protocol ip pref 10421 flower src_mac 02:2b:1b:d9:aa:7c dst_mac 02:03:23:6b:17:29 src_ip 45.232.9.64 dst_ip 121.21.168.197 ip_proto udp src_port 10067 dst_port 59239 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10422 flower src_mac 02:67:e5:6f:af:c3 dst_mac 02:6c:d8:e7:09:fd src_ip 49.202.141.68 dst_ip 27.215.1.248 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10423 flower src_mac 02:42:0b:a8:c9:f4 dst_mac 02:66:7e:88:45:c8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10424 flower src_mac 02:6f:e6:76:46:12 dst_mac 02:ba:c8:9c:22:4c vlan_id 2681 vlan_ethtype ip src_ip 62.202.207.243 dst_ip 113.64.155.247 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10425 flower src_mac 02:db:d6:f5:c9:cc dst_mac 02:d7:38:3f:3b:27 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10426 flower src_mac 02:f4:09:d1:01:9f dst_mac 02:71:29:9c:c8:c2 vlan_id 3548 vlan_ethtype 0x0800 src_ip 102.226.123.169 dst_ip 115.177.130.240 ip_proto tcp src_port 47644 dst_port 44474 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10427 flower src_mac 02:f4:e2:d4:9d:a7 dst_mac 02:29:31:97:8a:c1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10428 flower src_mac 02:44:d7:49:e6:55 dst_mac 02:e4:db:65:bb:61 vlan_id 2751 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10429 flower src_mac 02:6d:6b:0b:68:9f dst_mac 02:3c:a8:85:83:67 src_ip 37.172.14.81 dst_ip 114.90.51.128 ip_proto udp src_port 29908 dst_port 25409 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10430 flower src_mac 02:68:67:87:e8:51 dst_mac 02:2b:3c:7e:f2:af vlan_id 1810 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10431 flower src_mac 02:20:0d:ea:5d:5d dst_mac 02:a1:a2:ed:d8:fd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10432 flower src_mac 02:53:1c:25:97:b2 dst_mac 02:b9:a4:63:17:e8 vlan_id 302 vlan_ethtype 0x0800 src_ip 68.185.61.171 dst_ip 86.215.216.55 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10433 flower src_mac 02:25:23:0d:e5:2b dst_mac 02:3f:b6:d5:4f:82 vlan_id 2686 vlan_ethtype ip src_ip 59.220.225.206 dst_ip 93.121.84.211 ip_proto udp src_port 905 dst_port 46680 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10434 flower src_mac 02:59:2f:31:19:da dst_mac 02:ab:84:e7:e7:05 src_ip 58.94.67.190 dst_ip 73.36.230.36 ip_proto icmp code 104 type 5 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10435 flower src_mac 02:b4:97:61:c2:44 dst_mac 02:e8:11:5f:ac:b2 src_ip 27.79.108.201 dst_ip 49.148.222.175 ip_proto icmp code 26 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10436 flower src_mac 02:ec:8b:19:18:d0 dst_mac 02:bd:3f:50:01:6e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10437 flower src_mac 02:3b:ee:7a:0f:84 dst_mac 02:65:a5:d8:9b:62 vlan_id 2993 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10438 flower src_mac 02:18:fb:66:0e:4c dst_mac 02:07:1d:73:10:f3 src_ip 67.176.254.61 dst_ip 92.246.11.205 ip_proto icmp code 77 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10439 flower src_mac 02:25:52:ba:5b:6b dst_mac 02:0e:99:e4:d2:e2 vlan_id 3846 vlan_ethtype ipv4 src_ip 67.30.172.33 dst_ip 77.58.181.236 action drop && tc filter add dev swp33 ingress protocol ip pref 10440 flower src_mac 02:1c:07:09:4a:d7 dst_mac 02:08:d2:00:a6:89 src_ip 61.36.136.167 dst_ip 105.186.209.141 ip_proto udp src_port 49626 dst_port 59814 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10441 flower src_mac 02:dd:71:66:c9:26 dst_mac 02:4c:b6:91:1c:7a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10442 flower src_mac 02:57:51:21:0b:92 dst_mac 02:92:a2:1f:33:f4 vlan_id 1197 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10443 flower src_mac 02:12:2d:82:bd:c5 dst_mac 02:7a:ca:6c:7d:6b vlan_id 3153 vlan_ethtype ipv4 src_ip 17.26.174.126 dst_ip 110.243.100.160 ip_proto tcp src_port 38607 dst_port 65029 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10444 flower src_mac 02:ab:4d:2a:c1:e9 dst_mac 02:6d:4a:b0:2a:d7 vlan_id 3250 vlan_ethtype ipv4 src_ip 96.141.40.108 dst_ip 78.123.78.121 ip_proto udp src_port 5775 dst_port 59550 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10445 flower src_mac 02:1c:4a:62:1e:f8 dst_mac 02:16:19:1e:39:3c vlan_id 1117 vlan_ethtype ipv4 src_ip 57.139.218.226 dst_ip 112.34.26.230 ip_proto tcp src_port 42165 dst_port 9377 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10446 flower src_mac 02:a8:60:61:f5:3a dst_mac 02:89:61:9a:63:73 src_ip 47.238.176.79 dst_ip 15.110.22.74 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10447 flower src_mac 02:8d:65:d6:32:3a dst_mac 02:4a:9b:f2:a5:4a action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10448 flower src_mac 02:5c:09:e8:d8:79 dst_mac 02:a0:14:cf:c8:95 src_ip 83.198.234.89 dst_ip 63.17.151.159 ip_proto icmp code 154 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10449 flower src_mac 02:76:09:2f:8f:47 dst_mac 02:74:e9:69:e9:de vlan_id 1018 vlan_ethtype ipv4 src_ip 30.145.65.193 dst_ip 42.209.195.26 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10450 flower src_mac 02:0c:77:ca:3a:f2 dst_mac 02:b2:47:4d:9f:47 vlan_id 3977 vlan_ethtype ip src_ip 86.161.84.43 dst_ip 22.135.209.183 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10451 flower src_mac 02:df:8c:7a:3f:7e dst_mac 02:41:51:eb:9e:64 vlan_id 2868 vlan_ethtype ipv4 src_ip 72.237.74.30 dst_ip 31.56.227.119 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10452 flower src_mac 02:1f:c5:e9:74:cf dst_mac 02:69:2c:16:0f:ae vlan_id 1365 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:71:f5:31:9d:d7 dst_mac 02:05:de:ac:6c:f5 vlan_id 112 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:2b:a0:37:33:90 dst_mac 02:27:5f:70:ca:00 vlan_id 3962 vlan_ethtype 0x0800 src_ip 39.198.193.111 dst_ip 39.147.136.213 ip_proto udp src_port 30453 dst_port 62845 action trap && tc filter add dev swp33 ingress protocol ip pref 10455 flower src_mac 02:96:e3:5e:b7:e6 dst_mac 02:46:a0:b9:43:ab src_ip 106.172.1.23 dst_ip 121.115.73.71 ip_proto icmp code 210 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10456 flower src_mac 02:f8:c4:26:75:bf dst_mac 02:ee:ed:a4:93:71 vlan_id 875 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10457 flower src_mac 02:c5:c7:5d:7b:41 dst_mac 02:bf:ba:a1:78:59 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10458 flower src_mac 02:e2:b3:64:70:df dst_mac 02:5e:06:33:74:3d vlan_id 3496 vlan_ethtype ip src_ip 56.144.15.43 dst_ip 15.156.14.172 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10459 flower src_mac 02:fa:5e:1e:24:54 dst_mac 02:9f:e6:df:7c:36 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10460 flower src_mac 02:db:72:d2:e1:32 dst_mac 02:47:3a:53:81:7f vlan_id 2758 vlan_ethtype 0x0800 src_ip 60.3.31.118 dst_ip 45.235.150.119 ip_proto udp src_port 42008 dst_port 39398 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10461 flower src_mac 02:5d:cd:b3:5a:b2 dst_mac 02:92:53:76:92:57 vlan_id 1613 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10462 flower src_mac 02:dc:2e:cc:fd:01 dst_mac 02:e6:df:60:0c:4c vlan_id 2163 vlan_ethtype 0x0800 src_ip 39.33.147.124 dst_ip 41.144.247.207 ip_proto tcp src_port 45068 dst_port 51056 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10463 flower src_mac 02:20:db:cd:08:13 dst_mac 02:6d:8a:8f:94:6d vlan_id 406 vlan_ethtype ipv4 src_ip 91.233.179.60 dst_ip 108.51.165.4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10464 flower src_mac 02:ba:d2:99:37:8a dst_mac 02:6b:ae:62:ef:1c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10465 flower src_mac 02:ec:7f:cf:15:07 dst_mac 02:f0:9f:92:c3:20 vlan_id 2922 vlan_ethtype ipv4 src_ip 35.119.231.52 dst_ip 32.238.79.15 ip_proto udp src_port 3131 dst_port 26670 action drop && tc filter add dev swp33 ingress protocol ip pref 10466 flower src_mac 02:3d:d4:9c:ca:38 dst_mac 02:34:5a:39:0e:57 src_ip 67.168.221.187 dst_ip 97.20.4.229 ip_proto icmp code 100 type 5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10467 flower src_mac 02:d1:aa:bd:bb:46 dst_mac 02:90:d9:3f:f4:2f vlan_id 3065 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10468 flower src_mac 02:fe:01:38:af:c2 dst_mac 02:1f:ca:bd:f5:93 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10469 flower src_mac 02:18:ed:2f:67:40 dst_mac 02:6f:4e:ea:06:32 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:b5:84:93:c4:70 dst_mac 02:3d:81:e1:e8:51 vlan_id 3507 vlan_ethtype 0x0800 src_ip 24.245.3.73 dst_ip 118.113.200.168 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10471 flower src_mac 02:26:e7:90:a2:dc dst_mac 02:b6:65:00:73:73 action trap && tc filter add dev swp33 ingress protocol ip pref 10472 flower src_mac 02:7b:4f:9d:49:18 dst_mac 02:f3:66:b9:8e:d6 src_ip 49.231.132.102 dst_ip 40.21.227.8 ip_proto icmp code 40 type 5 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10473 flower src_mac 02:73:87:a1:ad:70 dst_mac 02:bc:79:ac:2b:63 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10474 flower src_mac 02:6d:b1:62:25:93 dst_mac 02:9d:22:d5:1f:c9 src_ip 125.17.178.73 dst_ip 85.24.144.64 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10475 flower src_mac 02:8b:14:dd:58:98 dst_mac 02:ac:fd:fc:64:30 vlan_id 290 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10476 flower src_mac 02:a7:1c:2d:b0:2b dst_mac 02:d6:49:7b:2f:33 vlan_id 2518 vlan_ethtype ip src_ip 97.171.121.38 dst_ip 123.76.74.2 ip_proto tcp src_port 53467 dst_port 53775 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10477 flower src_mac 02:49:1e:0f:a9:36 dst_mac 02:05:1b:fa:68:a3 vlan_id 6 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10478 flower src_mac 02:d1:dc:11:50:50 dst_mac 02:aa:4c:46:ac:c3 action drop && tc filter add dev swp33 ingress protocol ip pref 10479 flower src_mac 02:39:f5:3a:88:7b dst_mac 02:14:fb:b9:30:f4 src_ip 67.131.22.247 dst_ip 77.97.63.165 ip_proto tcp src_port 3595 dst_port 18017 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10480 flower src_mac 02:23:da:06:7f:10 dst_mac 02:56:50:79:ff:30 src_ip 44.29.156.117 dst_ip 16.111.255.91 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10481 flower src_mac 02:12:b3:07:6c:00 dst_mac 02:02:ae:43:80:44 src_ip 49.175.9.94 dst_ip 17.254.197.78 ip_proto tcp src_port 57267 dst_port 65061 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10482 flower src_mac 02:34:85:78:9a:a3 dst_mac 02:28:25:b2:53:a2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10483 flower src_mac 02:18:5e:6b:77:61 dst_mac 02:70:9c:9e:00:0c vlan_id 1796 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10484 flower src_mac 02:dd:37:72:8b:37 dst_mac 02:a7:8e:9d:a6:9f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10485 flower src_mac 02:99:d9:86:ec:cd dst_mac 02:6b:84:e9:24:44 vlan_id 2222 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10486 flower src_mac 02:88:a9:a9:85:30 dst_mac 02:5e:71:97:8e:aa vlan_id 1821 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10487 flower src_mac 02:79:49:32:bf:89 dst_mac 02:84:a2:46:55:fe vlan_id 3221 vlan_ethtype ipv4 src_ip 104.103.69.63 dst_ip 74.92.52.172 ip_proto tcp src_port 27039 dst_port 44665 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10488 flower src_mac 02:74:d0:a1:f1:60 dst_mac 02:9d:b6:3a:4c:4a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10489 flower src_mac 02:ee:13:3c:1a:e3 dst_mac 02:19:0a:05:32:64 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10490 flower src_mac 02:2f:9b:78:24:df dst_mac 02:43:9c:b6:b5:ac vlan_id 1349 vlan_ethtype ipv4 src_ip 115.137.166.38 dst_ip 123.146.1.8 ip_proto tcp src_port 40774 dst_port 62257 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:05:58:eb:5e:17 dst_mac 02:55:3c:21:52:cc vlan_id 469 vlan_ethtype ipv4 src_ip 46.19.83.21 dst_ip 121.123.242.221 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10492 flower src_mac 02:51:47:84:d5:30 dst_mac 02:79:17:4f:2b:05 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10493 flower src_mac 02:fb:37:02:5e:27 dst_mac 02:c6:b8:be:99:ce vlan_id 1110 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10494 flower src_mac 02:8c:e0:2d:64:5f dst_mac 02:d2:cd:50:03:68 action trap && tc filter add dev swp33 ingress protocol ip pref 10495 flower src_mac 02:6f:56:20:eb:4e dst_mac 02:77:3b:fa:ef:45 src_ip 74.28.176.73 dst_ip 101.123.37.236 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10496 flower src_mac 02:7e:25:67:c3:81 dst_mac 02:ba:c1:d4:1d:33 vlan_id 1847 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10497 flower src_mac 02:d2:1c:95:a9:77 dst_mac 02:e6:5b:bb:1e:c8 vlan_id 3108 vlan_ethtype 0x0800 src_ip 106.131.25.40 dst_ip 84.131.107.174 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10498 flower src_mac 02:10:b7:60:84:28 dst_mac 02:59:5e:d0:df:1b vlan_id 4045 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10499 flower src_mac 02:c7:45:61:cf:78 dst_mac 02:55:44:5b:f8:37 vlan_id 1725 vlan_ethtype ip src_ip 117.161.20.178 dst_ip 111.107.30.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10500 flower src_mac 02:85:ce:44:2a:d3 dst_mac 02:a4:e5:bc:62:aa vlan_id 432 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10501 flower src_mac 02:58:c3:7b:b6:c5 dst_mac 02:33:88:19:85:2f vlan_id 1288 vlan_ethtype ip src_ip 21.109.185.213 dst_ip 91.179.66.117 ip_proto tcp src_port 22774 dst_port 6127 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10502 flower src_mac 02:87:21:21:00:a1 dst_mac 02:8c:f0:b5:72:d8 vlan_id 3836 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10503 flower src_mac 02:68:c8:c3:f3:c4 dst_mac 02:93:97:d4:0d:bd vlan_id 1662 vlan_ethtype ipv4 src_ip 81.108.138.159 dst_ip 49.126.187.122 ip_proto udp src_port 10600 dst_port 35429 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10504 flower src_mac 02:c5:7f:c0:05:8d dst_mac 02:32:4a:16:45:2c vlan_id 3958 vlan_ethtype ip src_ip 87.147.142.75 dst_ip 112.115.162.178 ip_proto udp src_port 29983 dst_port 42397 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10505 flower src_mac 02:79:9d:5e:7d:d1 dst_mac 02:86:19:39:b0:1a src_ip 74.149.114.227 dst_ip 119.166.229.177 action drop && tc filter add dev swp33 ingress protocol ip pref 10506 flower src_mac 02:80:d2:08:55:5e dst_mac 02:81:9f:ad:64:b1 src_ip 104.230.191.139 dst_ip 98.135.156.29 action drop && tc filter add dev swp33 ingress protocol ip pref 10507 flower src_mac 02:67:3e:a6:2b:f1 dst_mac 02:13:99:fb:81:44 src_ip 119.166.54.148 dst_ip 16.51.25.165 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10508 flower src_mac 02:32:e7:71:f1:fa dst_mac 02:fc:64:84:06:43 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10509 flower src_mac 02:83:e4:b3:50:6f dst_mac 02:d7:02:14:a7:f3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10510 flower src_mac 02:12:1e:42:a8:93 dst_mac 02:48:17:6a:60:b0 vlan_id 1065 vlan_ethtype ip src_ip 85.203.242.179 dst_ip 41.194.212.160 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10511 flower src_mac 02:4d:fe:eb:a6:f0 dst_mac 02:fe:75:0c:8c:5c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10512 flower src_mac 02:24:cc:dc:37:9f dst_mac 02:8e:3e:c1:4f:95 vlan_id 2905 vlan_ethtype ipv4 src_ip 66.145.134.182 dst_ip 86.65.42.8 ip_proto udp src_port 24056 dst_port 13457 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10513 flower src_mac 02:c6:c6:44:73:6e dst_mac 02:fe:d9:e2:8a:19 vlan_id 3224 vlan_ethtype ip src_ip 39.138.235.79 dst_ip 18.174.57.136 ip_proto udp src_port 42466 dst_port 43593 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10514 flower src_mac 02:f8:20:54:e1:6d dst_mac 02:10:b8:91:ed:30 vlan_id 248 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10515 flower src_mac 02:35:e6:ea:4f:91 dst_mac 02:69:55:db:03:6f src_ip 71.39.72.171 dst_ip 17.47.48.194 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10516 flower src_mac 02:e8:c1:55:3c:c1 dst_mac 02:9b:10:67:4e:36 vlan_id 305 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10517 flower src_mac 02:0a:25:d5:1a:ee dst_mac 02:65:7f:63:b3:ba action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10518 flower src_mac 02:75:2d:f3:be:36 dst_mac 02:34:b9:a0:0f:2d action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10519 flower src_mac 02:e2:50:e7:8a:91 dst_mac 02:2b:79:74:91:13 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10520 flower src_mac 02:96:c9:99:f1:72 dst_mac 02:fa:6f:12:25:bc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10521 flower src_mac 02:67:75:05:96:6c dst_mac 02:e1:ae:18:67:bf vlan_id 4011 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10522 flower src_mac 02:65:e7:9a:cf:4e dst_mac 02:d6:e7:96:b4:6e vlan_id 2902 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10523 flower src_mac 02:fb:45:d6:8a:4e dst_mac 02:7a:4d:bc:2e:cd vlan_id 446 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10524 flower src_mac 02:5a:6a:01:88:77 dst_mac 02:13:b3:49:02:d7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10525 flower src_mac 02:88:de:3c:bc:c1 dst_mac 02:be:16:03:bf:19 vlan_id 3566 vlan_ethtype ipv4 src_ip 75.252.14.132 dst_ip 89.42.246.175 ip_proto tcp src_port 43572 dst_port 13973 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10526 flower src_mac 02:28:04:b9:cb:da dst_mac 02:03:79:25:5d:d5 vlan_id 255 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10527 flower src_mac 02:7b:24:8a:7f:c5 dst_mac 02:f8:39:c9:62:44 vlan_id 153 vlan_ethtype ipv4 src_ip 126.210.52.244 dst_ip 25.201.7.118 ip_proto udp src_port 20894 dst_port 9993 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10528 flower src_mac 02:b6:82:0b:f2:e2 dst_mac 02:b3:85:c2:db:eb action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10529 flower src_mac 02:b0:ea:a2:1d:fb dst_mac 02:d6:c3:43:27:fd vlan_id 981 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10530 flower src_mac 02:39:16:cc:1b:6b dst_mac 02:5e:7d:b1:f1:ed vlan_id 3293 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:22:21:99:48:6c dst_mac 02:33:ca:20:c4:01 vlan_id 2643 vlan_ethtype ipv4 src_ip 31.138.0.60 dst_ip 109.231.253.207 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10532 flower src_mac 02:0a:05:c0:b0:a9 dst_mac 02:22:35:68:30:d1 vlan_id 2404 vlan_ethtype 0x0800 src_ip 51.17.84.25 dst_ip 84.217.95.154 ip_proto udp src_port 1409 dst_port 40019 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10533 flower src_mac 02:7d:b9:68:15:91 dst_mac 02:2d:b8:6e:4c:87 src_ip 44.149.51.158 dst_ip 17.112.198.17 ip_proto tcp src_port 55779 dst_port 17060 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10534 flower src_mac 02:3c:1a:12:7b:b3 dst_mac 02:87:89:79:39:9e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10535 flower src_mac 02:a6:ae:2f:0c:3f dst_mac 02:38:06:d6:fa:53 vlan_id 3446 vlan_ethtype ipv4 src_ip 116.100.175.126 dst_ip 111.25.12.33 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10536 flower src_mac 02:d4:c8:c1:5c:18 dst_mac 02:44:ba:c9:22:01 vlan_id 1190 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10537 flower src_mac 02:34:1a:17:a2:d1 dst_mac 02:0e:b8:e0:fc:ef src_ip 104.123.155.169 dst_ip 76.72.127.110 ip_proto udp src_port 62206 dst_port 38922 action pass && tc filter add dev swp33 ingress protocol ip pref 10538 flower src_mac 02:4c:56:9a:55:2d dst_mac 02:e8:9f:c4:84:88 src_ip 109.130.230.33 dst_ip 77.211.209.66 ip_proto tcp src_port 26935 dst_port 60447 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10539 flower src_mac 02:db:97:e7:64:38 dst_mac 02:bc:71:a4:1a:f4 src_ip 21.246.111.145 dst_ip 88.248.253.159 ip_proto icmp code 168 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10540 flower src_mac 02:b4:63:fb:dc:7c dst_mac 02:50:f8:51:20:27 src_ip 36.129.65.82 dst_ip 47.18.215.169 ip_proto icmp code 197 type 14 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10541 flower src_mac 02:9d:3f:34:fd:7d dst_mac 02:f3:5f:59:31:a6 vlan_id 3038 vlan_ethtype ip src_ip 26.75.113.4 dst_ip 93.227.138.193 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10542 flower src_mac 02:8b:58:a9:9b:65 dst_mac 02:06:54:d2:f7:3e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10543 flower src_mac 02:50:14:e7:d3:82 dst_mac 02:78:b7:9a:79:65 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10544 flower src_mac 02:b2:67:e8:45:fe dst_mac 02:b4:cc:ff:13:9c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10545 flower src_mac 02:33:e7:5f:85:9e dst_mac 02:e2:e6:55:62:19 vlan_id 3999 vlan_ethtype 0x0800 src_ip 113.238.107.15 dst_ip 34.173.41.20 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10546 flower src_mac 02:0c:75:3e:ee:f1 dst_mac 02:8c:6e:64:d6:b2 vlan_id 536 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10547 flower src_mac 02:95:e7:d2:10:da dst_mac 02:f4:98:63:3d:f4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10548 flower src_mac 02:ee:95:59:1f:44 dst_mac 02:58:34:f4:ce:98 vlan_id 1136 vlan_ethtype ipv4 src_ip 82.212.187.183 dst_ip 13.52.62.14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10549 flower src_mac 02:3a:5b:23:00:cc dst_mac 02:b9:fc:8d:8d:9e vlan_id 1508 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10550 flower src_mac 02:fe:50:7a:6c:55 dst_mac 02:b2:15:f0:01:d3 vlan_id 4044 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10551 flower src_mac 02:4f:ee:1f:3f:c6 dst_mac 02:7d:b4:cb:0d:db src_ip 47.75.37.49 dst_ip 74.212.0.75 ip_proto tcp src_port 56143 dst_port 36513 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10552 flower src_mac 02:fa:67:cd:5c:dc dst_mac 02:25:bd:20:ed:3c action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10553 flower src_mac 02:69:fd:79:a3:eb dst_mac 02:5f:d4:80:09:81 src_ip 93.165.246.50 dst_ip 40.124.225.240 ip_proto tcp src_port 4947 dst_port 64292 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10554 flower src_mac 02:10:d1:74:f0:b5 dst_mac 02:d7:1c:f9:ea:96 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10555 flower src_mac 02:51:6d:63:b9:00 dst_mac 02:6f:b9:d2:ec:a1 vlan_id 99 vlan_ethtype ip src_ip 56.31.196.158 dst_ip 61.243.30.2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10556 flower src_mac 02:6f:2a:af:af:ba dst_mac 02:07:52:ad:e8:b0 vlan_id 2847 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10557 flower src_mac 02:b6:5b:57:43:aa dst_mac 02:db:29:cd:eb:0e src_ip 109.76.172.26 dst_ip 91.221.58.133 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10558 flower src_mac 02:b4:4e:01:97:87 dst_mac 02:58:2d:90:91:49 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10559 flower src_mac 02:26:c8:ce:9d:0e dst_mac 02:66:9b:0d:25:fb vlan_id 3526 vlan_ethtype ipv4 src_ip 78.207.11.117 dst_ip 22.167.35.83 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10560 flower src_mac 02:8a:f0:77:53:82 dst_mac 02:b3:78:d1:77:32 src_ip 15.53.222.8 dst_ip 67.132.197.153 ip_proto tcp src_port 23137 dst_port 44176 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10561 flower src_mac 02:4f:f7:cc:d7:d3 dst_mac 02:81:b6:f3:6a:87 src_ip 41.5.129.77 dst_ip 116.174.140.57 ip_proto udp src_port 53031 dst_port 14516 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10562 flower src_mac 02:f3:2e:5d:dd:82 dst_mac 02:48:89:54:07:e4 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10563 flower src_mac 02:52:71:11:25:1c dst_mac 02:25:28:cf:2f:22 src_ip 121.151.148.153 dst_ip 124.37.216.195 ip_proto icmp code 4 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10564 flower src_mac 02:14:c0:b3:98:27 dst_mac 02:d3:99:51:29:78 vlan_id 2906 vlan_ethtype 0x0800 src_ip 60.161.126.4 dst_ip 42.143.45.59 ip_proto tcp src_port 41056 dst_port 24335 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10565 flower src_mac 02:57:ab:7c:c6:37 dst_mac 02:d9:71:13:bd:52 vlan_id 3554 vlan_ethtype ipv4 src_ip 84.240.5.248 dst_ip 82.143.197.194 ip_proto udp src_port 45213 dst_port 17928 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10566 flower src_mac 02:56:f4:07:59:f6 dst_mac 02:c5:a7:23:80:64 vlan_id 1976 vlan_ethtype ipv4 src_ip 109.64.190.148 dst_ip 52.78.124.163 ip_proto tcp src_port 16439 dst_port 37498 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10567 flower src_mac 02:a5:24:95:67:7a dst_mac 02:c9:1c:28:41:c9 vlan_id 946 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10568 flower src_mac 02:a8:68:09:fd:2d dst_mac 02:14:f1:e6:a9:47 action trap && tc filter add dev swp33 ingress protocol ip pref 10569 flower src_mac 02:01:3d:83:c0:a9 dst_mac 02:ab:20:c7:f6:34 src_ip 123.160.176.48 dst_ip 124.27.39.62 ip_proto tcp src_port 642 dst_port 6967 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:0a:b7:e0:a9:bd dst_mac 02:8b:51:e2:1b:a6 vlan_id 3850 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10571 flower src_mac 02:12:3a:fb:95:e3 dst_mac 02:ab:99:f6:e8:b1 src_ip 67.112.61.44 dst_ip 76.243.99.62 ip_proto icmp code 246 type 15 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10572 flower src_mac 02:b9:14:12:61:43 dst_mac 02:73:43:20:eb:79 vlan_id 3924 vlan_ethtype ip src_ip 67.177.248.222 dst_ip 97.81.145.77 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10573 flower src_mac 02:e5:26:3b:6a:85 dst_mac 02:81:09:7c:48:8b action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10574 flower src_mac 02:dc:d7:0c:5c:1f dst_mac 02:38:8e:92:56:d1 src_ip 40.83.5.127 dst_ip 122.23.156.33 ip_proto udp src_port 24527 dst_port 3050 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10575 flower src_mac 02:2a:f7:79:9c:df dst_mac 02:b6:19:2a:c9:4f action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10576 flower src_mac 02:4c:98:de:70:11 dst_mac 02:ff:33:50:5d:54 src_ip 33.97.6.186 dst_ip 46.169.134.17 ip_proto tcp src_port 55560 dst_port 7146 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10577 flower src_mac 02:6d:cf:6e:59:64 dst_mac 02:a5:bc:af:b8:a1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10578 flower src_mac 02:07:ba:61:69:0f dst_mac 02:7a:e0:5f:3a:4b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10579 flower src_mac 02:58:f1:7b:f9:45 dst_mac 02:9e:4b:eb:54:c6 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10580 flower src_mac 02:95:94:9f:55:30 dst_mac 02:18:f6:dc:5d:fe action pass && tc filter add dev swp33 ingress protocol ip pref 10581 flower src_mac 02:f8:a8:9d:49:50 dst_mac 02:96:45:0f:de:7a src_ip 102.39.180.174 dst_ip 56.146.71.116 ip_proto icmp code 225 type 11 action pass && tc filter add dev swp33 ingress protocol ip pref 10582 flower src_mac 02:fd:36:7e:14:ab dst_mac 02:0b:a7:b7:69:7f src_ip 42.6.36.85 dst_ip 51.230.167.33 ip_proto tcp src_port 13203 dst_port 19644 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:9f:ff:3a:4f:c4 dst_mac 02:8d:d8:13:d5:ec vlan_id 851 vlan_ethtype 0x0800 src_ip 59.215.195.127 dst_ip 110.63.123.182 action drop && tc filter add dev swp33 ingress protocol ip pref 10584 flower src_mac 02:07:b3:d8:98:f3 dst_mac 02:b9:43:b3:1a:cd src_ip 122.249.52.144 dst_ip 42.208.224.54 ip_proto udp src_port 13018 dst_port 3189 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10585 flower src_mac 02:20:61:82:91:30 dst_mac 02:fa:fd:7a:a5:45 vlan_id 4061 vlan_ethtype 0x0800 src_ip 44.226.100.85 dst_ip 89.0.179.189 ip_proto tcp src_port 25357 dst_port 27114 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10586 flower src_mac 02:d6:99:df:85:a1 dst_mac 02:37:a2:b9:31:68 vlan_id 475 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10587 flower src_mac 02:0a:23:7d:b8:7f dst_mac 02:7c:d1:7d:04:fc action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10588 flower src_mac 02:b3:70:f0:cf:63 dst_mac 02:25:b2:54:39:cb action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10589 flower src_mac 02:9b:25:70:3e:23 dst_mac 02:33:fb:0a:ce:d4 vlan_id 2631 vlan_ethtype ip src_ip 68.213.110.16 dst_ip 90.15.73.225 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10590 flower src_mac 02:94:83:66:62:c0 dst_mac 02:9b:06:39:be:fe action trap && tc filter add dev swp33 ingress protocol ip pref 10591 flower src_mac 02:22:1f:00:bd:e3 dst_mac 02:e4:45:56:2c:15 src_ip 37.73.100.223 dst_ip 42.151.143.212 ip_proto udp src_port 55979 dst_port 20392 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10592 flower src_mac 02:48:95:a7:fa:70 dst_mac 02:84:f2:89:f5:56 src_ip 96.186.9.222 dst_ip 27.47.11.215 ip_proto icmp code 32 type 4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10593 flower src_mac 02:cd:d8:30:49:b3 dst_mac 02:22:51:5c:40:36 vlan_id 652 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10594 flower src_mac 02:a2:58:4c:77:75 dst_mac 02:ef:6f:21:64:da src_ip 101.139.82.46 dst_ip 19.211.160.38 ip_proto tcp src_port 30309 dst_port 5992 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10595 flower src_mac 02:57:72:e4:9e:2e dst_mac 02:ab:94:47:af:fe vlan_id 2489 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10596 flower src_mac 02:a7:36:97:ba:a7 dst_mac 02:0a:8f:1d:8e:17 vlan_id 1664 vlan_ethtype ipv4 src_ip 60.115.5.195 dst_ip 106.124.93.203 ip_proto udp src_port 29666 dst_port 60730 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10597 flower src_mac 02:3c:48:29:de:d2 dst_mac 02:56:a7:79:d4:76 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10598 flower src_mac 02:25:1b:6f:ba:63 dst_mac 02:b2:c3:ce:6f:c2 vlan_id 1784 vlan_ethtype ip src_ip 59.206.244.250 dst_ip 29.177.140.116 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10599 flower src_mac 02:bd:9e:38:1a:9c dst_mac 02:17:fa:44:73:56 src_ip 45.125.82.241 dst_ip 86.100.211.212 ip_proto udp src_port 44422 dst_port 17819 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10600 flower src_mac 02:96:9f:d8:ba:3b dst_mac 02:7f:ca:55:16:5c vlan_id 89 vlan_ethtype ip src_ip 113.174.248.14 dst_ip 14.45.132.46 action drop && tc filter add dev swp33 ingress protocol ip pref 10601 flower src_mac 02:f7:24:12:fc:0f dst_mac 02:dc:b6:37:fe:69 src_ip 117.100.125.139 dst_ip 37.107.1.183 ip_proto icmp code 124 type 16 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10602 flower src_mac 02:79:be:9a:2c:a2 dst_mac 02:e6:c0:10:4b:ea vlan_id 2729 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10603 flower src_mac 02:00:8c:33:66:74 dst_mac 02:1e:2e:b5:5b:b5 src_ip 22.230.228.213 dst_ip 119.174.106.148 ip_proto icmp code 88 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10604 flower src_mac 02:3a:3a:06:87:e5 dst_mac 02:64:ad:d5:a4:67 vlan_id 1143 vlan_ethtype ipv4 src_ip 117.61.42.223 dst_ip 45.136.143.131 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10605 flower src_mac 02:be:31:63:6f:3e dst_mac 02:97:4a:4e:39:dc action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10606 flower src_mac 02:9f:a3:d1:d8:d7 dst_mac 02:f5:bc:8c:fd:cf action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10607 flower src_mac 02:24:a3:ce:fe:2d dst_mac 02:66:e6:84:60:05 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10608 flower src_mac 02:86:8f:2d:ea:f5 dst_mac 02:23:46:ac:d1:7e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10609 flower src_mac 02:09:05:f8:4d:6f dst_mac 02:8b:a9:28:3d:d0 vlan_id 3476 vlan_ethtype ipv4 src_ip 104.153.107.145 dst_ip 79.99.170.6 ip_proto udp src_port 38448 dst_port 8189 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10610 flower src_mac 02:f2:bb:eb:d0:07 dst_mac 02:13:6f:07:95:e0 vlan_id 2489 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10611 flower src_mac 02:bb:99:34:c4:eb dst_mac 02:9f:46:f3:94:35 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10612 flower src_mac 02:68:7e:39:f1:55 dst_mac 02:3d:88:45:fa:44 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10613 flower src_mac 02:bb:6a:a4:50:85 dst_mac 02:88:3d:45:db:7f vlan_id 2670 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10614 flower src_mac 02:b2:8b:1c:a0:0d dst_mac 02:8f:95:5d:a5:f5 vlan_id 3914 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10615 flower src_mac 02:d9:cd:e2:2a:ea dst_mac 02:df:a5:d1:64:52 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10616 flower src_mac 02:f4:87:c6:be:ca dst_mac 02:45:47:95:21:c7 vlan_id 1058 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10617 flower src_mac 02:41:72:3a:f0:a6 dst_mac 02:4b:3e:41:aa:41 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10618 flower src_mac 02:02:38:79:57:3a dst_mac 02:d0:f5:95:bd:4a vlan_id 971 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10619 flower src_mac 02:d1:0c:a1:17:9d dst_mac 02:f3:ca:2d:37:0d action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10620 flower src_mac 02:9f:2d:a6:fc:6d dst_mac 02:42:81:78:52:c0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10621 flower src_mac 02:e6:cd:13:eb:68 dst_mac 02:0f:6a:fc:b3:a2 vlan_id 3113 vlan_ethtype 0x0800 src_ip 18.231.0.52 dst_ip 123.34.23.79 ip_proto udp src_port 58999 dst_port 27265 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10622 flower src_mac 02:31:f7:7c:48:81 dst_mac 02:16:50:ed:2b:79 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10623 flower src_mac 02:c8:0b:a2:08:5b dst_mac 02:10:82:2f:8b:76 vlan_id 3989 vlan_ethtype ipv4 src_ip 51.135.81.243 dst_ip 52.81.158.180 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10624 flower src_mac 02:ec:88:71:e0:b2 dst_mac 02:e0:74:88:99:ce vlan_id 967 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10625 flower src_mac 02:f9:c9:09:31:e8 dst_mac 02:88:90:dc:a7:36 vlan_id 1403 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10626 flower src_mac 02:90:9b:6f:0d:3b dst_mac 02:11:e9:7b:4d:9d vlan_id 583 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10627 flower src_mac 02:75:8d:38:90:20 dst_mac 02:c5:90:10:28:8a src_ip 16.234.43.46 dst_ip 34.201.233.239 ip_proto udp src_port 19442 dst_port 46529 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10628 flower src_mac 02:30:ea:39:37:1f dst_mac 02:b3:6a:80:1a:ff action trap && tc filter add dev swp33 ingress protocol ip pref 10629 flower src_mac 02:ca:3a:56:d7:a8 dst_mac 02:ea:00:4c:58:4d src_ip 103.150.177.88 dst_ip 95.42.209.208 ip_proto icmp code 201 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10630 flower src_mac 02:03:b1:83:cf:e2 dst_mac 02:90:73:7b:ea:ca action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10631 flower src_mac 02:d0:b4:69:61:6a dst_mac 02:9f:11:8f:d8:a5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10632 flower src_mac 02:0c:e2:a4:16:08 dst_mac 02:68:26:33:f0:3a action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10633 flower src_mac 02:68:da:f0:59:38 dst_mac 02:02:81:d4:2c:f1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10634 flower src_mac 02:28:2b:e9:51:6e dst_mac 02:d1:b0:24:3c:b3 vlan_id 1629 vlan_ethtype 0x0800 src_ip 98.45.109.124 dst_ip 46.114.150.220 ip_proto udp src_port 34429 dst_port 56911 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10635 flower src_mac 02:65:d2:d2:03:64 dst_mac 02:27:ba:a5:2c:e6 vlan_id 3735 vlan_ethtype 0x0800 src_ip 32.164.190.89 dst_ip 21.117.95.73 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10636 flower src_mac 02:ac:a3:be:c8:bb dst_mac 02:f2:c4:66:45:d8 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10637 flower src_mac 02:18:10:b4:62:26 dst_mac 02:b9:fc:b9:d0:37 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10638 flower src_mac 02:fc:1f:f3:9f:fa dst_mac 02:a0:a7:65:2e:3a vlan_id 2324 vlan_ethtype ip src_ip 107.249.83.174 dst_ip 111.164.95.82 ip_proto tcp src_port 4346 dst_port 13205 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10639 flower src_mac 02:2e:99:4f:65:53 dst_mac 02:ce:53:c4:55:8f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:87:36:de:74:34 dst_mac 02:3a:50:05:1c:5b vlan_id 1138 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10641 flower src_mac 02:d7:3a:09:27:f1 dst_mac 02:a0:d2:44:0c:94 vlan_id 1909 vlan_ethtype ipv4 src_ip 20.23.194.85 dst_ip 122.58.164.70 ip_proto udp src_port 16364 dst_port 61953 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10642 flower src_mac 02:a1:c3:11:a8:36 dst_mac 02:95:16:91:b6:4d action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10643 flower src_mac 02:6a:0b:c0:7a:48 dst_mac 02:91:f4:5b:ca:df action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10644 flower src_mac 02:df:4c:d4:8e:d1 dst_mac 02:b8:65:82:e3:e2 vlan_id 890 vlan_ethtype 0x0800 src_ip 15.193.247.249 dst_ip 84.130.199.176 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10645 flower src_mac 02:d7:48:a1:6e:4c dst_mac 02:be:0d:44:f3:37 vlan_id 3704 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10646 flower src_mac 02:1d:36:15:a5:98 dst_mac 02:2f:dc:ae:a0:6a vlan_id 1124 vlan_ethtype 0x0800 src_ip 69.67.232.23 dst_ip 91.229.80.56 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10647 flower src_mac 02:85:5a:88:31:37 dst_mac 02:d7:5e:8d:76:66 src_ip 22.160.190.43 dst_ip 93.98.79.132 ip_proto tcp src_port 51292 dst_port 15342 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10648 flower src_mac 02:99:47:ea:ff:5d dst_mac 02:f3:3f:b1:b4:20 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10649 flower src_mac 02:01:ee:39:4b:33 dst_mac 02:bb:3f:cc:b2:85 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10650 flower src_mac 02:ce:74:22:49:42 dst_mac 02:f5:7b:f2:65:99 vlan_id 2383 vlan_ethtype 0x0800 src_ip 94.231.50.69 dst_ip 67.208.61.121 ip_proto tcp src_port 26138 dst_port 39944 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10651 flower src_mac 02:60:30:d3:b7:77 dst_mac 02:d0:f7:f6:ba:26 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10652 flower src_mac 02:d1:a3:67:61:78 dst_mac 02:2f:85:c1:16:73 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10653 flower src_mac 02:5d:00:72:82:7c dst_mac 02:db:1d:d6:2d:7d vlan_id 145 vlan_ethtype 0x0800 src_ip 99.69.126.180 dst_ip 38.159.208.51 ip_proto udp src_port 18081 dst_port 13409 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10654 flower src_mac 02:b3:3e:0b:b5:a1 dst_mac 02:d2:e9:bc:83:76 vlan_id 658 vlan_ethtype ipv4 src_ip 119.100.7.8 dst_ip 45.185.64.80 ip_proto udp src_port 14052 dst_port 53687 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10655 flower src_mac 02:a5:b3:38:e7:5b dst_mac 02:3e:36:39:26:5d vlan_id 3685 vlan_ethtype 0x0800 src_ip 62.34.69.59 dst_ip 62.103.108.115 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10656 flower src_mac 02:1f:45:03:14:35 dst_mac 02:02:41:eb:44:44 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10657 flower src_mac 02:01:9c:1c:71:99 dst_mac 02:26:30:b4:57:65 vlan_id 3959 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10658 flower src_mac 02:00:61:b6:00:da dst_mac 02:f0:ed:c9:06:ea vlan_id 3765 vlan_ethtype ip src_ip 74.52.46.138 dst_ip 53.107.87.153 ip_proto tcp src_port 54444 dst_port 53693 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10659 flower src_mac 02:fa:ae:27:43:77 dst_mac 02:3e:d2:d2:e3:35 vlan_id 1898 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10660 flower src_mac 02:b9:95:21:87:92 dst_mac 02:35:b3:ca:0e:78 src_ip 86.206.44.83 dst_ip 78.50.100.87 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10661 flower src_mac 02:2c:7c:1d:12:ff dst_mac 02:91:e6:cd:53:18 src_ip 108.224.119.70 dst_ip 13.69.234.239 ip_proto tcp src_port 49322 dst_port 64088 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10662 flower src_mac 02:b9:f7:0d:dc:96 dst_mac 02:15:c9:c3:1f:9a vlan_id 1463 vlan_ethtype ipv4 src_ip 23.14.246.201 dst_ip 126.187.8.233 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10663 flower src_mac 02:cc:0f:da:01:6d dst_mac 02:35:5d:b8:c4:f9 vlan_id 2070 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10664 flower src_mac 02:f9:33:d0:56:2b dst_mac 02:51:28:41:6a:79 action drop && tc filter add dev swp33 ingress protocol ip pref 10665 flower src_mac 02:94:c9:5f:0c:f8 dst_mac 02:84:08:10:2a:0e src_ip 76.105.212.221 dst_ip 61.15.69.166 ip_proto icmp code 164 type 13 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10666 flower src_mac 02:f8:8b:12:6f:f1 dst_mac 02:fb:78:97:33:c9 vlan_id 334 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10667 flower src_mac 02:0e:15:29:22:1b dst_mac 02:36:ea:b2:ee:47 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10668 flower src_mac 02:55:40:b7:23:dd dst_mac 02:74:d0:3f:80:f6 src_ip 39.2.148.58 dst_ip 40.156.135.28 ip_proto tcp src_port 47246 dst_port 35920 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10669 flower src_mac 02:c7:bf:35:28:c9 dst_mac 02:c2:83:5e:90:5d vlan_id 1579 vlan_ethtype ip src_ip 71.222.195.120 dst_ip 41.193.106.66 ip_proto udp src_port 14139 dst_port 51505 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10670 flower src_mac 02:79:f1:53:b5:21 dst_mac 02:df:55:a4:09:d7 src_ip 83.92.1.152 dst_ip 11.204.235.127 ip_proto tcp src_port 16129 dst_port 51422 action drop && tc filter add dev swp33 ingress protocol ip pref 10671 flower src_mac 02:5b:ea:51:fd:ec dst_mac 02:7a:52:50:df:c9 src_ip 93.227.155.9 dst_ip 103.68.172.147 ip_proto udp src_port 33458 dst_port 2478 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10672 flower src_mac 02:19:9e:d1:12:6b dst_mac 02:94:da:0c:ca:97 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10673 flower src_mac 02:fa:62:4b:28:84 dst_mac 02:06:8b:fb:c2:1b vlan_id 3947 vlan_ethtype 0x0800 src_ip 47.17.235.67 dst_ip 125.100.175.149 action pass && tc filter add dev swp33 ingress protocol ip pref 10674 flower src_mac 02:66:a4:6b:b0:50 dst_mac 02:6e:b0:44:ba:78 src_ip 43.78.162.120 dst_ip 59.38.251.235 ip_proto tcp src_port 27882 dst_port 25222 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10675 flower src_mac 02:2c:0a:30:fa:29 dst_mac 02:4e:bb:0c:b2:8e src_ip 12.121.33.123 dst_ip 125.134.90.218 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:54:14:de:77:3f dst_mac 02:43:d9:56:a7:52 vlan_id 1225 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10677 flower src_mac 02:91:e8:07:bd:cc dst_mac 02:62:50:8e:69:4f action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10678 flower src_mac 02:d8:0d:ee:8e:ef dst_mac 02:34:e0:eb:f7:83 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10679 flower src_mac 02:fb:4b:f4:55:b0 dst_mac 02:ca:32:ba:63:91 src_ip 90.163.85.61 dst_ip 56.250.30.183 ip_proto tcp src_port 13904 dst_port 61683 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10680 flower src_mac 02:81:92:74:20:99 dst_mac 02:cc:c7:b2:5b:9f src_ip 66.174.10.20 dst_ip 46.196.154.174 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10681 flower src_mac 02:e8:6a:d2:ba:01 dst_mac 02:ee:a1:59:1a:5f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10682 flower src_mac 02:4e:f5:18:1a:c7 dst_mac 02:22:71:d1:f2:da vlan_id 3539 vlan_ethtype ip src_ip 100.212.142.50 dst_ip 35.192.68.95 action trap && tc filter add dev swp33 ingress protocol ip pref 10683 flower src_mac 02:c3:65:e6:64:cf dst_mac 02:3c:57:84:96:8b src_ip 49.131.178.192 dst_ip 87.236.189.132 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10684 flower src_mac 02:0c:82:e6:36:88 dst_mac 02:d6:ef:0e:f5:c3 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10685 flower src_mac 02:4a:3e:43:0e:6f dst_mac 02:47:28:95:a4:93 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10686 flower src_mac 02:7c:06:1f:7b:29 dst_mac 02:f3:cc:0f:f8:16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10687 flower src_mac 02:d8:85:8f:45:2c dst_mac 02:f7:5e:16:b8:d4 src_ip 72.80.167.120 dst_ip 107.49.72.230 ip_proto udp src_port 8937 dst_port 41470 action pass && tc filter add dev swp33 ingress protocol ip pref 10688 flower src_mac 02:7e:85:3b:f7:29 dst_mac 02:dc:5f:ca:bd:64 src_ip 43.246.124.77 dst_ip 125.107.111.119 ip_proto tcp src_port 38269 dst_port 30414 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10689 flower src_mac 02:d8:cd:0c:ab:83 dst_mac 02:45:e8:6d:f0:d9 src_ip 114.82.81.152 dst_ip 50.245.76.205 ip_proto icmp code 166 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10690 flower src_mac 02:43:9c:f0:f8:89 dst_mac 02:9a:93:c3:61:07 vlan_id 1486 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10691 flower src_mac 02:76:19:10:b1:08 dst_mac 02:f9:2f:7c:fd:f8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10692 flower src_mac 02:f3:2b:ad:ba:b9 dst_mac 02:e3:b5:16:45:6c vlan_id 1396 vlan_ethtype ipv4 src_ip 16.25.191.234 dst_ip 88.145.224.23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10693 flower src_mac 02:00:f8:14:43:f9 dst_mac 02:32:a0:28:da:fc vlan_id 1212 vlan_ethtype ip src_ip 54.162.45.165 dst_ip 101.82.126.165 ip_proto tcp src_port 18074 dst_port 40218 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10694 flower src_mac 02:c8:26:18:53:cc dst_mac 02:6c:09:20:3a:e1 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10695 flower src_mac 02:4b:ee:90:69:25 dst_mac 02:c3:80:c1:c0:5f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10696 flower src_mac 02:bd:82:9b:71:e7 dst_mac 02:e4:7d:47:ad:b3 vlan_id 22 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10697 flower src_mac 02:12:db:0e:ee:58 dst_mac 02:93:a1:5c:b7:a5 src_ip 92.117.243.146 dst_ip 47.200.164.67 ip_proto icmp code 96 type 15 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10698 flower src_mac 02:86:9f:67:ec:43 dst_mac 02:d1:82:aa:65:cf action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10699 flower src_mac 02:60:cf:22:8d:b5 dst_mac 02:b9:cb:0b:98:aa action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10700 flower src_mac 02:44:f5:aa:6f:ec dst_mac 02:06:cd:34:7b:d8 src_ip 49.126.102.133 dst_ip 78.173.243.14 ip_proto icmp code 245 type 3 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10701 flower src_mac 02:34:66:82:ed:df dst_mac 02:09:9d:1c:f9:98 src_ip 14.228.73.49 dst_ip 109.72.55.192 ip_proto icmp code 158 type 5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10702 flower src_mac 02:2d:77:fc:c4:1e dst_mac 02:b7:1e:fd:07:50 vlan_id 1991 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10703 flower src_mac 02:95:77:63:4b:1a dst_mac 02:e4:67:15:03:6f src_ip 67.59.192.44 dst_ip 43.166.130.235 ip_proto udp src_port 24380 dst_port 31297 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10704 flower src_mac 02:2e:12:a6:4d:27 dst_mac 02:9e:5e:e1:35:70 vlan_id 1030 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10705 flower src_mac 02:a9:23:17:f9:17 dst_mac 02:bf:cf:e5:a9:0b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10706 flower src_mac 02:f9:1f:3d:08:1b dst_mac 02:6e:e9:46:ae:54 vlan_id 2717 vlan_ethtype ipv4 src_ip 115.205.58.107 dst_ip 66.40.250.158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10707 flower src_mac 02:c1:dd:38:df:2a dst_mac 02:07:a4:02:6e:34 vlan_id 2367 vlan_ethtype 0x0800 src_ip 17.74.139.250 dst_ip 87.65.154.85 action pass && tc filter add dev swp33 ingress protocol ip pref 10708 flower src_mac 02:56:3e:f6:8e:b5 dst_mac 02:a4:05:9f:27:51 src_ip 106.55.121.241 dst_ip 22.244.5.82 ip_proto icmp code 198 type 12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10709 flower src_mac 02:da:09:b7:9f:1a dst_mac 02:36:0f:74:0c:a8 vlan_id 3830 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10710 flower src_mac 02:a6:ec:fc:99:c6 dst_mac 02:10:76:a1:39:a2 src_ip 41.140.245.33 dst_ip 97.177.212.229 ip_proto tcp src_port 19544 dst_port 17483 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10711 flower src_mac 02:bb:35:1d:ad:c4 dst_mac 02:93:64:0b:85:9b vlan_id 2670 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10712 flower src_mac 02:d2:81:8d:dc:91 dst_mac 02:15:a0:49:17:b0 vlan_id 3575 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:92:8a:38:e3:7e dst_mac 02:55:6b:42:0d:5f vlan_id 445 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10714 flower src_mac 02:37:dc:b6:60:ef dst_mac 02:ba:02:49:db:61 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10715 flower src_mac 02:1e:9a:9b:d2:e1 dst_mac 02:26:a5:a5:06:d7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10716 flower src_mac 02:7e:43:f4:52:42 dst_mac 02:d4:4b:d4:6f:95 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:e8:92:cb:86:02 dst_mac 02:f0:1e:43:31:33 vlan_id 2956 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10718 flower src_mac 02:7f:91:c0:98:b7 dst_mac 02:43:d6:f9:fe:0a src_ip 63.68.132.37 dst_ip 26.210.81.164 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10719 flower src_mac 02:39:b4:20:ee:02 dst_mac 02:20:0e:95:fc:db vlan_id 1045 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10720 flower src_mac 02:47:2d:f5:4c:ac dst_mac 02:66:cd:f8:ec:6b vlan_id 1109 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10721 flower src_mac 02:1c:63:db:b0:72 dst_mac 02:b3:ab:6c:af:fc src_ip 53.148.249.50 dst_ip 123.63.56.45 ip_proto tcp src_port 38410 dst_port 5223 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10722 flower src_mac 02:18:1b:fa:1c:b2 dst_mac 02:9e:4b:46:a0:d2 vlan_id 3747 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10723 flower src_mac 02:fa:f5:9c:1b:3a dst_mac 02:79:83:7b:39:b3 src_ip 89.244.142.231 dst_ip 56.129.4.36 ip_proto udp src_port 23673 dst_port 38631 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10724 flower src_mac 02:b4:13:51:2f:b5 dst_mac 02:04:6b:d2:dc:a2 src_ip 54.192.244.220 dst_ip 93.176.157.174 ip_proto icmp code 42 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10725 flower src_mac 02:38:50:d3:4b:1a dst_mac 02:3f:d0:61:5e:d8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10726 flower src_mac 02:22:7f:d2:70:0c dst_mac 02:ca:b9:12:4d:1f vlan_id 2913 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10727 flower src_mac 02:67:69:2f:5b:f3 dst_mac 02:9c:94:68:79:3b vlan_id 3435 vlan_ethtype ipv4 src_ip 17.81.236.48 dst_ip 87.104.190.121 action trap && tc filter add dev swp33 ingress protocol ip pref 10728 flower src_mac 02:46:12:c1:2d:43 dst_mac 02:c3:2a:d3:e1:67 src_ip 108.75.4.142 dst_ip 46.235.16.21 ip_proto udp src_port 5459 dst_port 15650 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10729 flower src_mac 02:2e:ac:05:ff:98 dst_mac 02:68:a4:36:5a:e2 src_ip 81.87.130.203 dst_ip 62.148.117.152 ip_proto icmp code 163 type 14 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10730 flower src_mac 02:b4:a9:f3:aa:1f dst_mac 02:c4:de:62:ca:5d src_ip 54.42.129.60 dst_ip 14.144.13.198 ip_proto tcp src_port 47014 dst_port 47895 action trap && tc filter add dev swp33 ingress protocol ip pref 10731 flower src_mac 02:8f:ad:03:7e:1a dst_mac 02:1f:a1:86:bf:4d src_ip 31.190.114.13 dst_ip 42.61.205.155 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10732 flower src_mac 02:ba:9d:62:4c:e5 dst_mac 02:4f:0e:76:5c:cd vlan_id 584 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10733 flower src_mac 02:20:50:7a:5b:77 dst_mac 02:63:cb:5b:b3:78 vlan_id 3039 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10734 flower src_mac 02:6c:be:07:cc:1d dst_mac 02:ab:b9:ec:36:3d action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10735 flower src_mac 02:71:4c:32:e7:9f dst_mac 02:97:a4:33:fa:2c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10736 flower src_mac 02:d4:d0:b0:97:8e dst_mac 02:2a:61:5d:f3:54 vlan_id 68 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10737 flower src_mac 02:bd:79:47:9b:d1 dst_mac 02:b3:5a:3c:60:14 vlan_id 3408 vlan_ethtype ipv4 src_ip 63.13.13.78 dst_ip 46.1.34.247 ip_proto tcp src_port 42189 dst_port 8018 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10738 flower src_mac 02:7b:fd:5a:da:45 dst_mac 02:e1:a0:a4:2d:da src_ip 98.22.52.49 dst_ip 52.196.126.53 ip_proto udp src_port 55566 dst_port 47758 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10739 flower src_mac 02:05:9a:17:51:40 dst_mac 02:64:13:a7:2c:60 vlan_id 2452 vlan_ethtype ip src_ip 30.246.62.59 dst_ip 110.65.0.175 ip_proto udp src_port 53586 dst_port 16992 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10740 flower src_mac 02:52:d1:5b:c9:6e dst_mac 02:7f:54:87:2d:ee action pass && tc filter add dev swp33 ingress protocol ip pref 10741 flower src_mac 02:eb:12:6f:e7:67 dst_mac 02:52:b7:e8:d4:06 src_ip 95.222.73.26 dst_ip 125.24.235.192 ip_proto udp src_port 25762 dst_port 54440 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10742 flower src_mac 02:24:b7:d7:69:ec dst_mac 02:df:22:d9:7e:fd vlan_id 1690 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10743 flower src_mac 02:05:1e:40:7e:c1 dst_mac 02:2e:a0:e4:85:2d src_ip 40.161.153.219 dst_ip 25.227.32.168 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10744 flower src_mac 02:be:dc:23:58:32 dst_mac 02:7b:cd:fc:c1:fe src_ip 80.10.82.47 dst_ip 41.80.216.156 ip_proto udp src_port 16657 dst_port 34555 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10745 flower src_mac 02:26:bc:e8:90:fe dst_mac 02:ff:ec:34:0a:62 src_ip 22.219.208.4 dst_ip 104.129.67.210 action pass && tc filter add dev swp33 ingress protocol ip pref 10746 flower src_mac 02:b6:7b:a9:57:c9 dst_mac 02:7f:7f:c6:56:26 src_ip 31.97.45.111 dst_ip 119.29.195.232 ip_proto udp src_port 24301 dst_port 63729 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10747 flower src_mac 02:ca:22:92:2e:df dst_mac 02:38:26:6c:65:4e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10748 flower src_mac 02:5f:fd:26:2d:37 dst_mac 02:19:ca:ea:22:5f vlan_id 1716 vlan_ethtype ip src_ip 82.148.5.112 dst_ip 23.220.104.232 ip_proto udp src_port 14674 dst_port 23483 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10749 flower src_mac 02:ad:af:d1:18:15 dst_mac 02:8a:22:ff:63:5b vlan_id 1152 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10750 flower src_mac 02:d1:2c:4e:ff:38 dst_mac 02:0b:85:83:8b:91 action trap && tc filter add dev swp33 ingress protocol ip pref 10751 flower src_mac 02:9c:ec:9f:62:38 dst_mac 02:e4:86:29:57:f3 src_ip 53.77.31.176 dst_ip 120.45.214.5 ip_proto tcp src_port 28058 dst_port 7283 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10752 flower src_mac 02:5a:ea:ac:01:29 dst_mac 02:f3:79:e5:f5:d6 vlan_id 1184 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10753 flower src_mac 02:a0:1c:9f:2c:b5 dst_mac 02:de:99:a2:1a:27 vlan_id 911 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10754 flower src_mac 02:70:5a:be:92:2f dst_mac 02:ac:b5:fc:a8:c1 vlan_id 1398 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10755 flower src_mac 02:59:e6:04:a8:08 dst_mac 02:f0:3c:54:a4:20 src_ip 111.135.207.202 dst_ip 74.151.119.241 ip_proto tcp src_port 62073 dst_port 62349 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10756 flower src_mac 02:e8:57:a8:fc:c7 dst_mac 02:8a:4d:4c:fd:87 src_ip 121.1.48.100 dst_ip 119.65.204.177 ip_proto tcp src_port 27775 dst_port 20868 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10757 flower src_mac 02:2f:66:36:8c:b1 dst_mac 02:71:a4:ce:20:52 src_ip 97.200.229.89 dst_ip 102.39.178.156 ip_proto icmp code 193 type 17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10758 flower src_mac 02:72:11:86:78:cf dst_mac 02:24:e9:60:b0:d2 vlan_id 942 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10759 flower src_mac 02:ae:c5:75:d8:ff dst_mac 02:57:9f:c6:9e:c8 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10760 flower src_mac 02:eb:f0:04:18:b3 dst_mac 02:aa:80:c3:0f:26 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10761 flower src_mac 02:74:5a:ab:ca:2e dst_mac 02:5f:d4:5e:50:75 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10762 flower src_mac 02:3b:94:91:74:95 dst_mac 02:d7:19:ea:c3:2a vlan_id 3697 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10763 flower src_mac 02:bc:b1:2f:e4:1b dst_mac 02:94:c8:cc:78:6f vlan_id 1024 vlan_ethtype ipv4 src_ip 106.122.174.121 dst_ip 124.229.191.177 ip_proto tcp src_port 50856 dst_port 30505 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10764 flower src_mac 02:b7:40:7b:49:3a dst_mac 02:d2:7a:ca:07:69 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10765 flower src_mac 02:cd:81:40:47:e8 dst_mac 02:41:f2:0a:70:9b vlan_id 758 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10766 flower src_mac 02:96:68:5e:41:77 dst_mac 02:d8:0b:00:af:86 vlan_id 1672 vlan_ethtype ipv4 src_ip 125.68.152.248 dst_ip 77.50.45.238 ip_proto udp src_port 25116 dst_port 57443 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10767 flower src_mac 02:1a:15:4c:c1:e9 dst_mac 02:a8:09:25:30:7d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10768 flower src_mac 02:3b:f1:3f:95:42 dst_mac 02:1d:4c:0b:5b:64 vlan_id 3330 vlan_ethtype 0x0800 src_ip 56.158.241.199 dst_ip 71.113.155.46 ip_proto udp src_port 57683 dst_port 16064 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10769 flower src_mac 02:e0:0a:52:9c:29 dst_mac 02:a0:09:69:6c:8c action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10770 flower src_mac 02:32:c6:cc:93:00 dst_mac 02:f2:5a:23:75:50 src_ip 64.171.5.13 dst_ip 95.126.101.14 ip_proto udp src_port 45949 dst_port 52612 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10771 flower src_mac 02:8a:a1:ab:19:ea dst_mac 02:87:a2:70:be:14 vlan_id 154 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10772 flower src_mac 02:20:fc:1f:8a:75 dst_mac 02:bd:af:59:52:55 vlan_id 1333 vlan_ethtype ipv4 src_ip 34.176.68.62 dst_ip 69.107.241.47 ip_proto tcp src_port 7052 dst_port 63680 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10773 flower src_mac 02:1e:27:a5:b7:ca dst_mac 02:70:08:8a:69:b3 vlan_id 1264 vlan_ethtype ip src_ip 101.197.186.4 dst_ip 16.177.177.177 ip_proto tcp src_port 26178 dst_port 6767 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10774 flower src_mac 02:dc:95:24:7e:9c dst_mac 02:26:e8:03:a2:4d vlan_id 199 vlan_ethtype ip src_ip 124.82.65.230 dst_ip 96.136.185.132 ip_proto tcp src_port 46220 dst_port 21117 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10775 flower src_mac 02:18:79:83:ea:b8 dst_mac 02:77:9c:ac:0d:ce vlan_id 2043 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10776 flower src_mac 02:ef:cb:63:26:bc dst_mac 02:63:54:44:f9:8e src_ip 15.105.242.3 dst_ip 121.179.247.102 ip_proto tcp src_port 46593 dst_port 27013 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10777 flower src_mac 02:f5:28:58:ea:ea dst_mac 02:d3:af:e3:13:e4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10778 flower src_mac 02:58:07:05:cc:fe dst_mac 02:e6:8c:5b:1e:de vlan_id 1060 vlan_ethtype ipv4 src_ip 101.60.254.226 dst_ip 23.9.34.112 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10779 flower src_mac 02:cd:d9:63:22:c1 dst_mac 02:6a:5a:99:8b:b2 vlan_id 855 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10780 flower src_mac 02:87:63:27:9b:68 dst_mac 02:aa:97:ee:33:0c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10781 flower src_mac 02:b5:f4:d8:e5:e8 dst_mac 02:21:ff:fc:33:c8 vlan_id 1186 vlan_ethtype ip src_ip 103.180.179.96 dst_ip 34.130.51.112 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10782 flower src_mac 02:72:7d:37:9a:bc dst_mac 02:a9:e1:3a:ac:cf action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10783 flower src_mac 02:9f:bd:12:46:07 dst_mac 02:f8:5a:68:d6:48 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10784 flower src_mac 02:2d:bb:01:16:66 dst_mac 02:88:db:98:c4:dc vlan_id 3989 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10785 flower src_mac 02:0e:09:0e:75:3c dst_mac 02:37:3e:28:2a:4a vlan_id 2137 vlan_ethtype ipv4 src_ip 77.88.178.29 dst_ip 52.198.74.7 ip_proto tcp src_port 64790 dst_port 64801 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:77:ab:e1:ef:93 dst_mac 02:66:20:ee:07:69 vlan_id 3918 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10787 flower src_mac 02:a4:9a:32:8d:37 dst_mac 02:bf:82:ba:cb:4f src_ip 89.155.113.244 dst_ip 120.144.167.145 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10788 flower src_mac 02:40:6f:ad:ef:b1 dst_mac 02:f2:ea:ad:aa:89 vlan_id 2482 vlan_ethtype ipv4 src_ip 91.68.227.104 dst_ip 90.107.115.48 ip_proto tcp src_port 26546 dst_port 63479 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10789 flower src_mac 02:00:f1:91:6b:38 dst_mac 02:1e:55:bf:4d:b9 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10790 flower src_mac 02:62:a2:4e:11:21 dst_mac 02:23:c3:5d:60:5d vlan_id 363 vlan_ethtype 0x0800 src_ip 111.25.41.69 dst_ip 15.22.221.124 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10791 flower src_mac 02:18:23:81:00:b1 dst_mac 02:a4:2a:df:10:39 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10792 flower src_mac 02:a5:5d:a1:00:e7 dst_mac 02:d4:c3:3e:4c:65 src_ip 44.235.143.34 dst_ip 52.56.166.243 ip_proto tcp src_port 6110 dst_port 61026 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10793 flower src_mac 02:db:ee:42:50:a4 dst_mac 02:b7:4c:fe:cd:81 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10794 flower src_mac 02:7f:a0:1c:00:c2 dst_mac 02:f9:a7:e7:29:66 src_ip 62.41.153.12 dst_ip 33.227.252.249 ip_proto udp src_port 39917 dst_port 12177 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10795 flower src_mac 02:9a:8f:f9:28:ac dst_mac 02:e5:85:18:ec:c3 vlan_id 3302 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10796 flower src_mac 02:de:a5:37:0c:1b dst_mac 02:8e:27:b7:71:05 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10797 flower src_mac 02:6e:08:f2:0b:27 dst_mac 02:6f:6f:21:16:ae vlan_id 1185 vlan_ethtype ipv4 src_ip 65.229.50.198 dst_ip 81.220.146.63 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10798 flower src_mac 02:d0:d1:2f:34:1c dst_mac 02:ff:c0:8b:57:e7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10799 flower src_mac 02:79:f5:b1:53:dc dst_mac 02:85:c7:c3:0d:84 vlan_id 2781 vlan_ethtype 0x9200 action pass INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 10400 flower src_mac 02:6b:4b:31:51:ed dst_mac 02:e1:f8:6f:49:6c action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10401 flower src_mac 02:aa:d2:8c:41:e8 dst_mac 02:da:a5:5f:6d:0b src_ip 20.253.155.247 dst_ip 67.188.193.174 ip_proto tcp src_port 32227 dst_port 55458 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10402 flower src_mac 02:1e:7c:c5:76:e3 dst_mac 02:49:b4:84:45:ad src_ip 97.227.204.170 dst_ip 124.202.221.181 ip_proto tcp src_port 23692 dst_port 42886 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10403 flower src_mac 02:47:b6:09:a8:f0 dst_mac 02:fc:d7:00:01:ce vlan_id 69 vlan_ethtype 0x0800 src_ip 15.126.10.65 dst_ip 118.68.48.230 ip_proto udp src_port 49088 dst_port 47402 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10404 flower src_mac 02:0d:e6:67:81:26 dst_mac 02:0d:19:ec:0e:cd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10405 flower src_mac 02:f7:7f:7f:fb:b3 dst_mac 02:b9:53:4a:a8:27 vlan_id 3707 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10406 flower src_mac 02:c0:ea:4c:58:e1 dst_mac 02:fc:aa:1f:c9:f5 src_ip 60.192.152.93 dst_ip 37.247.35.24 ip_proto icmp code 194 type 14 action pass && tc filter add dev swp33 ingress protocol ip pref 10407 flower src_mac 02:e6:00:cd:27:70 dst_mac 02:78:8f:69:f5:6f src_ip 100.215.25.106 dst_ip 91.12.21.151 ip_proto udp src_port 11014 dst_port 51496 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10408 flower src_mac 02:57:9b:1d:f7:a5 dst_mac 02:52:14:ea:2b:7c vlan_id 2763 vlan_ethtype ipv4 src_ip 55.16.37.74 dst_ip 49.239.38.101 ip_proto udp src_port 41845 dst_port 54103 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10409 flower src_mac 02:fc:51:e3:98:98 dst_mac 02:bd:e1:2e:c6:be vlan_id 399 vlan_ethtype ip src_ip 44.238.209.178 dst_ip 43.29.147.201 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10410 flower src_mac 02:e3:e4:25:f3:43 dst_mac 02:09:22:e0:f0:b1 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10411 flower src_mac 02:8c:6f:1c:16:16 dst_mac 02:d6:5d:11:b1:c7 src_ip 24.47.235.100 dst_ip 56.63.240.158 ip_proto icmp code 12 type 3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10412 flower src_mac 02:a4:c7:9f:2c:30 dst_mac 02:dc:60:fe:b6:0f vlan_id 383 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10413 flower src_mac 02:ad:99:99:4d:31 dst_mac 02:c3:f7:8d:15:24 vlan_id 3128 vlan_ethtype 0x0800 src_ip 41.150.251.221 dst_ip 29.170.247.193 ip_proto udp src_port 2373 dst_port 21528 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10414 flower src_mac 02:2d:db:4d:88:5a dst_mac 02:db:1e:7a:a5:bf action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10415 flower src_mac 02:14:5c:63:08:c5 dst_mac 02:e0:9a:40:eb:16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10416 flower src_mac 02:ca:d3:d2:b8:94 dst_mac 02:b9:31:02:4d:47 vlan_id 2378 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10417 flower src_mac 02:90:ae:b3:5a:e3 dst_mac 02:35:18:5a:47:7b src_ip 54.186.111.236 dst_ip 39.78.3.162 ip_proto icmp code 141 type 0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10418 flower src_mac 02:f6:fe:64:f9:c2 dst_mac 02:aa:09:5d:2a:cd vlan_id 2073 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10419 flower src_mac 02:62:7c:b7:fc:e8 dst_mac 02:42:99:f7:ba:0f vlan_id 1439 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10420 flower src_mac 02:5e:e4:23:99:b7 dst_mac 02:ba:3a:16:41:d7 src_ip 55.100.2.148 dst_ip 88.148.191.93 ip_proto icmp code 192 type 5 action pass && tc filter add dev swp33 ingress protocol ip pref 10421 flower src_mac 02:2b:1b:d9:aa:7c dst_mac 02:03:23:6b:17:29 src_ip 45.232.9.64 dst_ip 121.21.168.197 ip_proto udp src_port 10067 dst_port 59239 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10422 flower src_mac 02:67:e5:6f:af:c3 dst_mac 02:6c:d8:e7:09:fd src_ip 49.202.141.68 dst_ip 27.215.1.248 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10423 flower src_mac 02:42:0b:a8:c9:f4 dst_mac 02:66:7e:88:45:c8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10424 flower src_mac 02:6f:e6:76:46:12 dst_mac 02:ba:c8:9c:22:4c vlan_id 2681 vlan_ethtype ip src_ip 62.202.207.243 dst_ip 113.64.155.247 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10425 flower src_mac 02:db:d6:f5:c9:cc dst_mac 02:d7:38:3f:3b:27 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10426 flower src_mac 02:f4:09:d1:01:9f dst_mac 02:71:29:9c:c8:c2 vlan_id 3548 vlan_ethtype 0x0800 src_ip 102.226.123.169 dst_ip 115.177.130.240 ip_proto tcp src_port 47644 dst_port 44474 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10427 flower src_mac 02:f4:e2:d4:9d:a7 dst_mac 02:29:31:97:8a:c1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10428 flower src_mac 02:44:d7:49:e6:55 dst_mac 02:e4:db:65:bb:61 vlan_id 2751 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10429 flower src_mac 02:6d:6b:0b:68:9f dst_mac 02:3c:a8:85:83:67 src_ip 37.172.14.81 dst_ip 114.90.51.128 ip_proto udp src_port 29908 dst_port 25409 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10430 flower src_mac 02:68:67:87:e8:51 dst_mac 02:2b:3c:7e:f2:af vlan_id 1810 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10431 flower src_mac 02:20:0d:ea:5d:5d dst_mac 02:a1:a2:ed:d8:fd action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10432 flower src_mac 02:53:1c:25:97:b2 dst_mac 02:b9:a4:63:17:e8 vlan_id 302 vlan_ethtype 0x0800 src_ip 68.185.61.171 dst_ip 86.215.216.55 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10433 flower src_mac 02:25:23:0d:e5:2b dst_mac 02:3f:b6:d5:4f:82 vlan_id 2686 vlan_ethtype ip src_ip 59.220.225.206 dst_ip 93.121.84.211 ip_proto udp src_port 905 dst_port 46680 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10434 flower src_mac 02:59:2f:31:19:da dst_mac 02:ab:84:e7:e7:05 src_ip 58.94.67.190 dst_ip 73.36.230.36 ip_proto icmp code 104 type 5 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10435 flower src_mac 02:b4:97:61:c2:44 dst_mac 02:e8:11:5f:ac:b2 src_ip 27.79.108.201 dst_ip 49.148.222.175 ip_proto icmp code 26 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10436 flower src_mac 02:ec:8b:19:18:d0 dst_mac 02:bd:3f:50:01:6e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10437 flower src_mac 02:3b:ee:7a:0f:84 dst_mac 02:65:a5:d8:9b:62 vlan_id 2993 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10438 flower src_mac 02:18:fb:66:0e:4c dst_mac 02:07:1d:73:10:f3 src_ip 67.176.254.61 dst_ip 92.246.11.205 ip_proto icmp code 77 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10439 flower src_mac 02:25:52:ba:5b:6b dst_mac 02:0e:99:e4:d2:e2 vlan_id 3846 vlan_ethtype ipv4 src_ip 67.30.172.33 dst_ip 77.58.181.236 action drop && tc filter add dev swp33 ingress protocol ip pref 10440 flower src_mac 02:1c:07:09:4a:d7 dst_mac 02:08:d2:00:a6:89 src_ip 61.36.136.167 dst_ip 105.186.209.141 ip_proto udp src_port 49626 dst_port 59814 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10441 flower src_mac 02:dd:71:66:c9:26 dst_mac 02:4c:b6:91:1c:7a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10442 flower src_mac 02:57:51:21:0b:92 dst_mac 02:92:a2:1f:33:f4 vlan_id 1197 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10443 flower src_mac 02:12:2d:82:bd:c5 dst_mac 02:7a:ca:6c:7d:6b vlan_id 3153 vlan_ethtype ipv4 src_ip 17.26.174.126 dst_ip 110.243.100.160 ip_proto tcp src_port 38607 dst_port 65029 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10444 flower src_mac 02:ab:4d:2a:c1:e9 dst_mac 02:6d:4a:b0:2a:d7 vlan_id 3250 vlan_ethtype ipv4 src_ip 96.141.40.108 dst_ip 78.123.78.121 ip_proto udp src_port 5775 dst_port 59550 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10445 flower src_mac 02:1c:4a:62:1e:f8 dst_mac 02:16:19:1e:39:3c vlan_id 1117 vlan_ethtype ipv4 src_ip 57.139.218.226 dst_ip 112.34.26.230 ip_proto tcp src_port 42165 dst_port 9377 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10446 flower src_mac 02:a8:60:61:f5:3a dst_mac 02:89:61:9a:63:73 src_ip 47.238.176.79 dst_ip 15.110.22.74 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10447 flower src_mac 02:8d:65:d6:32:3a dst_mac 02:4a:9b:f2:a5:4a action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10448 flower src_mac 02:5c:09:e8:d8:79 dst_mac 02:a0:14:cf:c8:95 src_ip 83.198.234.89 dst_ip 63.17.151.159 ip_proto icmp code 154 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10449 flower src_mac 02:76:09:2f:8f:47 dst_mac 02:74:e9:69:e9:de vlan_id 1018 vlan_ethtype ipv4 src_ip 30.145.65.193 dst_ip 42.209.195.26 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10450 flower src_mac 02:0c:77:ca:3a:f2 dst_mac 02:b2:47:4d:9f:47 vlan_id 3977 vlan_ethtype ip src_ip 86.161.84.43 dst_ip 22.135.209.183 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10451 flower src_mac 02:df:8c:7a:3f:7e dst_mac 02:41:51:eb:9e:64 vlan_id 2868 vlan_ethtype ipv4 src_ip 72.237.74.30 dst_ip 31.56.227.119 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10452 flower src_mac 02:1f:c5:e9:74:cf dst_mac 02:69:2c:16:0f:ae vlan_id 1365 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:71:f5:31:9d:d7 dst_mac 02:05:de:ac:6c:f5 vlan_id 112 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:2b:a0:37:33:90 dst_mac 02:27:5f:70:ca:00 vlan_id 3962 vlan_ethtype 0x0800 src_ip 39.198.193.111 dst_ip 39.147.136.213 ip_proto udp src_port 30453 dst_port 62845 action trap && tc filter add dev swp33 ingress protocol ip pref 10455 flower src_mac 02:96:e3:5e:b7:e6 dst_mac 02:46:a0:b9:43:ab src_ip 106.172.1.23 dst_ip 121.115.73.71 ip_proto icmp code 210 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10456 flower src_mac 02:f8:c4:26:75:bf dst_mac 02:ee:ed:a4:93:71 vlan_id 875 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10457 flower src_mac 02:c5:c7:5d:7b:41 dst_mac 02:bf:ba:a1:78:59 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10458 flower src_mac 02:e2:b3:64:70:df dst_mac 02:5e:06:33:74:3d vlan_id 3496 vlan_ethtype ip src_ip 56.144.15.43 dst_ip 15.156.14.172 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10459 flower src_mac 02:fa:5e:1e:24:54 dst_mac 02:9f:e6:df:7c:36 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10460 flower src_mac 02:db:72:d2:e1:32 dst_mac 02:47:3a:53:81:7f vlan_id 2758 vlan_ethtype 0x0800 src_ip 60.3.31.118 dst_ip 45.235.150.119 ip_proto udp src_port 42008 dst_port 39398 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10461 flower src_mac 02:5d:cd:b3:5a:b2 dst_mac 02:92:53:76:92:57 vlan_id 1613 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10462 flower src_mac 02:dc:2e:cc:fd:01 dst_mac 02:e6:df:60:0c:4c vlan_id 2163 vlan_ethtype 0x0800 src_ip 39.33.147.124 dst_ip 41.144.247.207 ip_proto tcp src_port 45068 dst_port 51056 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10463 flower src_mac 02:20:db:cd:08:13 dst_mac 02:6d:8a:8f:94:6d vlan_id 406 vlan_ethtype ipv4 src_ip 91.233.179.60 dst_ip 108.51.165.4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10464 flower src_mac 02:ba:d2:99:37:8a dst_mac 02:6b:ae:62:ef:1c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10465 flower src_mac 02:ec:7f:cf:15:07 dst_mac 02:f0:9f:92:c3:20 vlan_id 2922 vlan_ethtype ipv4 src_ip 35.119.231.52 dst_ip 32.238.79.15 ip_proto udp src_port 3131 dst_port 26670 action drop && tc filter add dev swp33 ingress protocol ip pref 10466 flower src_mac 02:3d:d4:9c:ca:38 dst_mac 02:34:5a:39:0e:57 src_ip 67.168.221.187 dst_ip 97.20.4.229 ip_proto icmp code 100 type 5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10467 flower src_mac 02:d1:aa:bd:bb:46 dst_mac 02:90:d9:3f:f4:2f vlan_id 3065 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10468 flower src_mac 02:fe:01:38:af:c2 dst_mac 02:1f:ca:bd:f5:93 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10469 flower src_mac 02:18:ed:2f:67:40 dst_mac 02:6f:4e:ea:06:32 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:b5:84:93:c4:70 dst_mac 02:3d:81:e1:e8:51 vlan_id 3507 vlan_ethtype 0x0800 src_ip 24.245.3.73 dst_ip 118.113.200.168 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10471 flower src_mac 02:26:e7:90:a2:dc dst_mac 02:b6:65:00:73:73 action trap && tc filter add dev swp33 ingress protocol ip pref 10472 flower src_mac 02:7b:4f:9d:49:18 dst_mac 02:f3:66:b9:8e:d6 src_ip 49.231.132.102 dst_ip 40.21.227.8 ip_proto icmp code 40 type 5 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10473 flower src_mac 02:73:87:a1:ad:70 dst_mac 02:bc:79:ac:2b:63 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10474 flower src_mac 02:6d:b1:62:25:93 dst_mac 02:9d:22:d5:1f:c9 src_ip 125.17.178.73 dst_ip 85.24.144.64 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10475 flower src_mac 02:8b:14:dd:58:98 dst_mac 02:ac:fd:fc:64:30 vlan_id 290 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10476 flower src_mac 02:a7:1c:2d:b0:2b dst_mac 02:d6:49:7b:2f:33 vlan_id 2518 vlan_ethtype ip src_ip 97.171.121.38 dst_ip 123.76.74.2 ip_proto tcp src_port 53467 dst_port 53775 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10477 flower src_mac 02:49:1e:0f:a9:36 dst_mac 02:05:1b:fa:68:a3 vlan_id 6 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10478 flower src_mac 02:d1:dc:11:50:50 dst_mac 02:aa:4c:46:ac:c3 action drop && tc filter add dev swp33 ingress protocol ip pref 10479 flower src_mac 02:39:f5:3a:88:7b dst_mac 02:14:fb:b9:30:f4 src_ip 67.131.22.247 dst_ip 77.97.63.165 ip_proto tcp src_port 3595 dst_port 18017 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10480 flower src_mac 02:23:da:06:7f:10 dst_mac 02:56:50:79:ff:30 src_ip 44.29.156.117 dst_ip 16.111.255.91 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10481 flower src_mac 02:12:b3:07:6c:00 dst_mac 02:02:ae:43:80:44 src_ip 49.175.9.94 dst_ip 17.254.197.78 ip_proto tcp src_port 57267 dst_port 65061 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10482 flower src_mac 02:34:85:78:9a:a3 dst_mac 02:28:25:b2:53:a2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10483 flower src_mac 02:18:5e:6b:77:61 dst_mac 02:70:9c:9e:00:0c vlan_id 1796 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10484 flower src_mac 02:dd:37:72:8b:37 dst_mac 02:a7:8e:9d:a6:9f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10485 flower src_mac 02:99:d9:86:ec:cd dst_mac 02:6b:84:e9:24:44 vlan_id 2222 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10486 flower src_mac 02:88:a9:a9:85:30 dst_mac 02:5e:71:97:8e:aa vlan_id 1821 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10487 flower src_mac 02:79:49:32:bf:89 dst_mac 02:84:a2:46:55:fe vlan_id 3221 vlan_ethtype ipv4 src_ip 104.103.69.63 dst_ip 74.92.52.172 ip_proto tcp src_port 27039 dst_port 44665 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10488 flower src_mac 02:74:d0:a1:f1:60 dst_mac 02:9d:b6:3a:4c:4a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10489 flower src_mac 02:ee:13:3c:1a:e3 dst_mac 02:19:0a:05:32:64 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10490 flower src_mac 02:2f:9b:78:24:df dst_mac 02:43:9c:b6:b5:ac vlan_id 1349 vlan_ethtype ipv4 src_ip 115.137.166.38 dst_ip 123.146.1.8 ip_proto tcp src_port 40774 dst_port 62257 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:05:58:eb:5e:17 dst_mac 02:55:3c:21:52:cc vlan_id 469 vlan_ethtype ipv4 src_ip 46.19.83.21 dst_ip 121.123.242.221 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10492 flower src_mac 02:51:47:84:d5:30 dst_mac 02:79:17:4f:2b:05 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10493 flower src_mac 02:fb:37:02:5e:27 dst_mac 02:c6:b8:be:99:ce vlan_id 1110 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10494 flower src_mac 02:8c:e0:2d:64:5f dst_mac 02:d2:cd:50:03:68 action trap && tc filter add dev swp33 ingress protocol ip pref 10495 flower src_mac 02:6f:56:20:eb:4e dst_mac 02:77:3b:fa:ef:45 src_ip 74.28.176.73 dst_ip 101.123.37.236 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10496 flower src_mac 02:7e:25:67:c3:81 dst_mac 02:ba:c1:d4:1d:33 vlan_id 1847 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10497 flower src_mac 02:d2:1c:95:a9:77 dst_mac 02:e6:5b:bb:1e:c8 vlan_id 3108 vlan_ethtype 0x0800 src_ip 106.131.25.40 dst_ip 84.131.107.174 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10498 flower src_mac 02:10:b7:60:84:28 dst_mac 02:59:5e:d0:df:1b vlan_id 4045 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10499 flower src_mac 02:c7:45:61:cf:78 dst_mac 02:55:44:5b:f8:37 vlan_id 1725 vlan_ethtype ip src_ip 117.161.20.178 dst_ip 111.107.30.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10500 flower src_mac 02:85:ce:44:2a:d3 dst_mac 02:a4:e5:bc:62:aa vlan_id 432 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10501 flower src_mac 02:58:c3:7b:b6:c5 dst_mac 02:33:88:19:85:2f vlan_id 1288 vlan_ethtype ip src_ip 21.109.185.213 dst_ip 91.179.66.117 ip_proto tcp src_port 22774 dst_port 6127 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10502 flower src_mac 02:87:21:21:00:a1 dst_mac 02:8c:f0:b5:72:d8 vlan_id 3836 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10503 flower src_mac 02:68:c8:c3:f3:c4 dst_mac 02:93:97:d4:0d:bd vlan_id 1662 vlan_ethtype ipv4 src_ip 81.108.138.159 dst_ip 49.126.187.122 ip_proto udp src_port 10600 dst_port 35429 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10504 flower src_mac 02:c5:7f:c0:05:8d dst_mac 02:32:4a:16:45:2c vlan_id 3958 vlan_ethtype ip src_ip 87.147.142.75 dst_ip 112.115.162.178 ip_proto udp src_port 29983 dst_port 42397 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10505 flower src_mac 02:79:9d:5e:7d:d1 dst_mac 02:86:19:39:b0:1a src_ip 74.149.114.227 dst_ip 119.166.229.177 action drop && tc filter add dev swp33 ingress protocol ip pref 10506 flower src_mac 02:80:d2:08:55:5e dst_mac 02:81:9f:ad:64:b1 src_ip 104.230.191.139 dst_ip 98.135.156.29 action drop && tc filter add dev swp33 ingress protocol ip pref 10507 flower src_mac 02:67:3e:a6:2b:f1 dst_mac 02:13:99:fb:81:44 src_ip 119.166.54.148 dst_ip 16.51.25.165 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10508 flower src_mac 02:32:e7:71:f1:fa dst_mac 02:fc:64:84:06:43 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10509 flower src_mac 02:83:e4:b3:50:6f dst_mac 02:d7:02:14:a7:f3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10510 flower src_mac 02:12:1e:42:a8:93 dst_mac 02:48:17:6a:60:b0 vlan_id 1065 vlan_ethtype ip src_ip 85.203.242.179 dst_ip 41.194.212.160 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10511 flower src_mac 02:4d:fe:eb:a6:f0 dst_mac 02:fe:75:0c:8c:5c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10512 flower src_mac 02:24:cc:dc:37:9f dst_mac 02:8e:3e:c1:4f:95 vlan_id 2905 vlan_ethtype ipv4 src_ip 66.145.134.182 dst_ip 86.65.42.8 ip_proto udp src_port 24056 dst_port 13457 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10513 flower src_mac 02:c6:c6:44:73:6e dst_mac 02:fe:d9:e2:8a:19 vlan_id 3224 vlan_ethtype ip src_ip 39.138.235.79 dst_ip 18.174.57.136 ip_proto udp src_port 42466 dst_port 43593 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10514 flower src_mac 02:f8:20:54:e1:6d dst_mac 02:10:b8:91:ed:30 vlan_id 248 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10515 flower src_mac 02:35:e6:ea:4f:91 dst_mac 02:69:55:db:03:6f src_ip 71.39.72.171 dst_ip 17.47.48.194 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10516 flower src_mac 02:e8:c1:55:3c:c1 dst_mac 02:9b:10:67:4e:36 vlan_id 305 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10517 flower src_mac 02:0a:25:d5:1a:ee dst_mac 02:65:7f:63:b3:ba action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10518 flower src_mac 02:75:2d:f3:be:36 dst_mac 02:34:b9:a0:0f:2d action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10519 flower src_mac 02:e2:50:e7:8a:91 dst_mac 02:2b:79:74:91:13 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10520 flower src_mac 02:96:c9:99:f1:72 dst_mac 02:fa:6f:12:25:bc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10521 flower src_mac 02:67:75:05:96:6c dst_mac 02:e1:ae:18:67:bf vlan_id 4011 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10522 flower src_mac 02:65:e7:9a:cf:4e dst_mac 02:d6:e7:96:b4:6e vlan_id 2902 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10523 flower src_mac 02:fb:45:d6:8a:4e dst_mac 02:7a:4d:bc:2e:cd vlan_id 446 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10524 flower src_mac 02:5a:6a:01:88:77 dst_mac 02:13:b3:49:02:d7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10525 flower src_mac 02:88:de:3c:bc:c1 dst_mac 02:be:16:03:bf:19 vlan_id 3566 vlan_ethtype ipv4 src_ip 75.252.14.132 dst_ip 89.42.246.175 ip_proto tcp src_port 43572 dst_port 13973 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10526 flower src_mac 02:28:04:b9:cb:da dst_mac 02:03:79:25:5d:d5 vlan_id 255 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10527 flower src_mac 02:7b:24:8a:7f:c5 dst_mac 02:f8:39:c9:62:44 vlan_id 153 vlan_ethtype ipv4 src_ip 126.210.52.244 dst_ip 25.201.7.118 ip_proto udp src_port 20894 dst_port 9993 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10528 flower src_mac 02:b6:82:0b:f2:e2 dst_mac 02:b3:85:c2:db:eb action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10529 flower src_mac 02:b0:ea:a2:1d:fb dst_mac 02:d6:c3:43:27:fd vlan_id 981 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10530 flower src_mac 02:39:16:cc:1b:6b dst_mac 02:5e:7d:b1:f1:ed vlan_id 3293 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:22:21:99:48:6c dst_mac 02:33:ca:20:c4:01 vlan_id 2643 vlan_ethtype ipv4 src_ip 31.138.0.60 dst_ip 109.231.253.207 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10532 flower src_mac 02:0a:05:c0:b0:a9 dst_mac 02:22:35:68:30:d1 vlan_id 2404 vlan_ethtype 0x0800 src_ip 51.17.84.25 dst_ip 84.217.95.154 ip_proto udp src_port 1409 dst_port 40019 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10533 flower src_mac 02:7d:b9:68:15:91 dst_mac 02:2d:b8:6e:4c:87 src_ip 44.149.51.158 dst_ip 17.112.198.17 ip_proto tcp src_port 55779 dst_port 17060 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10534 flower src_mac 02:3c:1a:12:7b:b3 dst_mac 02:87:89:79:39:9e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10535 flower src_mac 02:a6:ae:2f:0c:3f dst_mac 02:38:06:d6:fa:53 vlan_id 3446 vlan_ethtype ipv4 src_ip 116.100.175.126 dst_ip 111.25.12.33 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10536 flower src_mac 02:d4:c8:c1:5c:18 dst_mac 02:44:ba:c9:22:01 vlan_id 1190 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10537 flower src_mac 02:34:1a:17:a2:d1 dst_mac 02:0e:b8:e0:fc:ef src_ip 104.123.155.169 dst_ip 76.72.127.110 ip_proto udp src_port 62206 dst_port 38922 action pass && tc filter add dev swp33 ingress protocol ip pref 10538 flower src_mac 02:4c:56:9a:55:2d dst_mac 02:e8:9f:c4:84:88 src_ip 109.130.230.33 dst_ip 77.211.209.66 ip_proto tcp src_port 26935 dst_port 60447 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10539 flower src_mac 02:db:97:e7:64:38 dst_mac 02:bc:71:a4:1a:f4 src_ip 21.246.111.145 dst_ip 88.248.253.159 ip_proto icmp code 168 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10540 flower src_mac 02:b4:63:fb:dc:7c dst_mac 02:50:f8:51:20:27 src_ip 36.129.65.82 dst_ip 47.18.215.169 ip_proto icmp code 197 type 14 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10541 flower src_mac 02:9d:3f:34:fd:7d dst_mac 02:f3:5f:59:31:a6 vlan_id 3038 vlan_ethtype ip src_ip 26.75.113.4 dst_ip 93.227.138.193 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10542 flower src_mac 02:8b:58:a9:9b:65 dst_mac 02:06:54:d2:f7:3e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10543 flower src_mac 02:50:14:e7:d3:82 dst_mac 02:78:b7:9a:79:65 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10544 flower src_mac 02:b2:67:e8:45:fe dst_mac 02:b4:cc:ff:13:9c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10545 flower src_mac 02:33:e7:5f:85:9e dst_mac 02:e2:e6:55:62:19 vlan_id 3999 vlan_ethtype 0x0800 src_ip 113.238.107.15 dst_ip 34.173.41.20 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10546 flower src_mac 02:0c:75:3e:ee:f1 dst_mac 02:8c:6e:64:d6:b2 vlan_id 536 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10547 flower src_mac 02:95:e7:d2:10:da dst_mac 02:f4:98:63:3d:f4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10548 flower src_mac 02:ee:95:59:1f:44 dst_mac 02:58:34:f4:ce:98 vlan_id 1136 vlan_ethtype ipv4 src_ip 82.212.187.183 dst_ip 13.52.62.14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10549 flower src_mac 02:3a:5b:23:00:cc dst_mac 02:b9:fc:8d:8d:9e vlan_id 1508 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10550 flower src_mac 02:fe:50:7a:6c:55 dst_mac 02:b2:15:f0:01:d3 vlan_id 4044 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10551 flower src_mac 02:4f:ee:1f:3f:c6 dst_mac 02:7d:b4:cb:0d:db src_ip 47.75.37.49 dst_ip 74.212.0.75 ip_proto tcp src_port 56143 dst_port 36513 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10552 flower src_mac 02:fa:67:cd:5c:dc dst_mac 02:25:bd:20:ed:3c action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10553 flower src_mac 02:69:fd:79:a3:eb dst_mac 02:5f:d4:80:09:81 src_ip 93.165.246.50 dst_ip 40.124.225.240 ip_proto tcp src_port 4947 dst_port 64292 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10554 flower src_mac 02:10:d1:74:f0:b5 dst_mac 02:d7:1c:f9:ea:96 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10555 flower src_mac 02:51:6d:63:b9:00 dst_mac 02:6f:b9:d2:ec:a1 vlan_id 99 vlan_ethtype ip src_ip 56.31.196.158 dst_ip 61.243.30.2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10556 flower src_mac 02:6f:2a:af:af:ba dst_mac 02:07:52:ad:e8:b0 vlan_id 2847 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10557 flower src_mac 02:b6:5b:57:43:aa dst_mac 02:db:29:cd:eb:0e src_ip 109.76.172.26 dst_ip 91.221.58.133 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10558 flower src_mac 02:b4:4e:01:97:87 dst_mac 02:58:2d:90:91:49 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10559 flower src_mac 02:26:c8:ce:9d:0e dst_mac 02:66:9b:0d:25:fb vlan_id 3526 vlan_ethtype ipv4 src_ip 78.207.11.117 dst_ip 22.167.35.83 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10560 flower src_mac 02:8a:f0:77:53:82 dst_mac 02:b3:78:d1:77:32 src_ip 15.53.222.8 dst_ip 67.132.197.153 ip_proto tcp src_port 23137 dst_port 44176 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10561 flower src_mac 02:4f:f7:cc:d7:d3 dst_mac 02:81:b6:f3:6a:87 src_ip 41.5.129.77 dst_ip 116.174.140.57 ip_proto udp src_port 53031 dst_port 14516 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10562 flower src_mac 02:f3:2e:5d:dd:82 dst_mac 02:48:89:54:07:e4 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10563 flower src_mac 02:52:71:11:25:1c dst_mac 02:25:28:cf:2f:22 src_ip 121.151.148.153 dst_ip 124.37.216.195 ip_proto icmp code 4 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10564 flower src_mac 02:14:c0:b3:98:27 dst_mac 02:d3:99:51:29:78 vlan_id 2906 vlan_ethtype 0x0800 src_ip 60.161.126.4 dst_ip 42.143.45.59 ip_proto tcp src_port 41056 dst_port 24335 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10565 flower src_mac 02:57:ab:7c:c6:37 dst_mac 02:d9:71:13:bd:52 vlan_id 3554 vlan_ethtype ipv4 src_ip 84.240.5.248 dst_ip 82.143.197.194 ip_proto udp src_port 45213 dst_port 17928 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10566 flower src_mac 02:56:f4:07:59:f6 dst_mac 02:c5:a7:23:80:64 vlan_id 1976 vlan_ethtype ipv4 src_ip 109.64.190.148 dst_ip 52.78.124.163 ip_proto tcp src_port 16439 dst_port 37498 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10567 flower src_mac 02:a5:24:95:67:7a dst_mac 02:c9:1c:28:41:c9 vlan_id 946 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10568 flower src_mac 02:a8:68:09:fd:2d dst_mac 02:14:f1:e6:a9:47 action trap && tc filter add dev swp33 ingress protocol ip pref 10569 flower src_mac 02:01:3d:83:c0:a9 dst_mac 02:ab:20:c7:f6:34 src_ip 123.160.176.48 dst_ip 124.27.39.62 ip_proto tcp src_port 642 dst_port 6967 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:0a:b7:e0:a9:bd dst_mac 02:8b:51:e2:1b:a6 vlan_id 3850 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10571 flower src_mac 02:12:3a:fb:95:e3 dst_mac 02:ab:99:f6:e8:b1 src_ip 67.112.61.44 dst_ip 76.243.99.62 ip_proto icmp code 246 type 15 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10572 flower src_mac 02:b9:14:12:61:43 dst_mac 02:73:43:20:eb:79 vlan_id 3924 vlan_ethtype ip src_ip 67.177.248.222 dst_ip 97.81.145.77 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10573 flower src_mac 02:e5:26:3b:6a:85 dst_mac 02:81:09:7c:48:8b action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10574 flower src_mac 02:dc:d7:0c:5c:1f dst_mac 02:38:8e:92:56:d1 src_ip 40.83.5.127 dst_ip 122.23.156.33 ip_proto udp src_port 24527 dst_port 3050 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10575 flower src_mac 02:2a:f7:79:9c:df dst_mac 02:b6:19:2a:c9:4f action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10576 flower src_mac 02:4c:98:de:70:11 dst_mac 02:ff:33:50:5d:54 src_ip 33.97.6.186 dst_ip 46.169.134.17 ip_proto tcp src_port 55560 dst_port 7146 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10577 flower src_mac 02:6d:cf:6e:59:64 dst_mac 02:a5:bc:af:b8:a1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10578 flower src_mac 02:07:ba:61:69:0f dst_mac 02:7a:e0:5f:3a:4b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10579 flower src_mac 02:58:f1:7b:f9:45 dst_mac 02:9e:4b:eb:54:c6 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10580 flower src_mac 02:95:94:9f:55:30 dst_mac 02:18:f6:dc:5d:fe action pass && tc filter add dev swp33 ingress protocol ip pref 10581 flower src_mac 02:f8:a8:9d:49:50 dst_mac 02:96:45:0f:de:7a src_ip 102.39.180.174 dst_ip 56.146.71.116 ip_proto icmp code 225 type 11 action pass && tc filter add dev swp33 ingress protocol ip pref 10582 flower src_mac 02:fd:36:7e:14:ab dst_mac 02:0b:a7:b7:69:7f src_ip 42.6.36.85 dst_ip 51.230.167.33 ip_proto tcp src_port 13203 dst_port 19644 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:9f:ff:3a:4f:c4 dst_mac 02:8d:d8:13:d5:ec vlan_id 851 vlan_ethtype 0x0800 src_ip 59.215.195.127 dst_ip 110.63.123.182 action drop && tc filter add dev swp33 ingress protocol ip pref 10584 flower src_mac 02:07:b3:d8:98:f3 dst_mac 02:b9:43:b3:1a:cd src_ip 122.249.52.144 dst_ip 42.208.224.54 ip_proto udp src_port 13018 dst_port 3189 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10585 flower src_mac 02:20:61:82:91:30 dst_mac 02:fa:fd:7a:a5:45 vlan_id 4061 vlan_ethtype 0x0800 src_ip 44.226.100.85 dst_ip 89.0.179.189 ip_proto tcp src_port 25357 dst_port 27114 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10586 flower src_mac 02:d6:99:df:85:a1 dst_mac 02:37:a2:b9:31:68 vlan_id 475 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10587 flower src_mac 02:0a:23:7d:b8:7f dst_mac 02:7c:d1:7d:04:fc action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10588 flower src_mac 02:b3:70:f0:cf:63 dst_mac 02:25:b2:54:39:cb action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10589 flower src_mac 02:9b:25:70:3e:23 dst_mac 02:33:fb:0a:ce:d4 vlan_id 2631 vlan_ethtype ip src_ip 68.213.110.16 dst_ip 90.15.73.225 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10590 flower src_mac 02:94:83:66:62:c0 dst_mac 02:9b:06:39:be:fe action trap && tc filter add dev swp33 ingress protocol ip pref 10591 flower src_mac 02:22:1f:00:bd:e3 dst_mac 02:e4:45:56:2c:15 src_ip 37.73.100.223 dst_ip 42.151.143.212 ip_proto udp src_port 55979 dst_port 20392 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10592 flower src_mac 02:48:95:a7:fa:70 dst_mac 02:84:f2:89:f5:56 src_ip 96.186.9.222 dst_ip 27.47.11.215 ip_proto icmp code 32 type 4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10593 flower src_mac 02:cd:d8:30:49:b3 dst_mac 02:22:51:5c:40:36 vlan_id 652 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10594 flower src_mac 02:a2:58:4c:77:75 dst_mac 02:ef:6f:21:64:da src_ip 101.139.82.46 dst_ip 19.211.160.38 ip_proto tcp src_port 30309 dst_port 5992 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10595 flower src_mac 02:57:72:e4:9e:2e dst_mac 02:ab:94:47:af:fe vlan_id 2489 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10596 flower src_mac 02:a7:36:97:ba:a7 dst_mac 02:0a:8f:1d:8e:17 vlan_id 1664 vlan_ethtype ipv4 src_ip 60.115.5.195 dst_ip 106.124.93.203 ip_proto udp src_port 29666 dst_port 60730 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10597 flower src_mac 02:3c:48:29:de:d2 dst_mac 02:56:a7:79:d4:76 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10598 flower src_mac 02:25:1b:6f:ba:63 dst_mac 02:b2:c3:ce:6f:c2 vlan_id 1784 vlan_ethtype ip src_ip 59.206.244.250 dst_ip 29.177.140.116 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10599 flower src_mac 02:bd:9e:38:1a:9c dst_mac 02:17:fa:44:73:56 src_ip 45.125.82.241 dst_ip 86.100.211.212 ip_proto udp src_port 44422 dst_port 17819 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10600 flower src_mac 02:96:9f:d8:ba:3b dst_mac 02:7f:ca:55:16:5c vlan_id 89 vlan_ethtype ip src_ip 113.174.248.14 dst_ip 14.45.132.46 action drop && tc filter add dev swp33 ingress protocol ip pref 10601 flower src_mac 02:f7:24:12:fc:0f dst_mac 02:dc:b6:37:fe:69 src_ip 117.100.125.139 dst_ip 37.107.1.183 ip_proto icmp code 124 type 16 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10602 flower src_mac 02:79:be:9a:2c:a2 dst_mac 02:e6:c0:10:4b:ea vlan_id 2729 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10603 flower src_mac 02:00:8c:33:66:74 dst_mac 02:1e:2e:b5:5b:b5 src_ip 22.230.228.213 dst_ip 119.174.106.148 ip_proto icmp code 88 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10604 flower src_mac 02:3a:3a:06:87:e5 dst_mac 02:64:ad:d5:a4:67 vlan_id 1143 vlan_ethtype ipv4 src_ip 117.61.42.223 dst_ip 45.136.143.131 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10605 flower src_mac 02:be:31:63:6f:3e dst_mac 02:97:4a:4e:39:dc action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10606 flower src_mac 02:9f:a3:d1:d8:d7 dst_mac 02:f5:bc:8c:fd:cf action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10607 flower src_mac 02:24:a3:ce:fe:2d dst_mac 02:66:e6:84:60:05 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10608 flower src_mac 02:86:8f:2d:ea:f5 dst_mac 02:23:46:ac:d1:7e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10609 flower src_mac 02:09:05:f8:4d:6f dst_mac 02:8b:a9:28:3d:d0 vlan_id 3476 vlan_ethtype ipv4 src_ip 104.153.107.145 dst_ip 79.99.170.6 ip_proto udp src_port 38448 dst_port 8189 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10610 flower src_mac 02:f2:bb:eb:d0:07 dst_mac 02:13:6f:07:95:e0 vlan_id 2489 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10611 flower src_mac 02:bb:99:34:c4:eb dst_mac 02:9f:46:f3:94:35 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10612 flower src_mac 02:68:7e:39:f1:55 dst_mac 02:3d:88:45:fa:44 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10613 flower src_mac 02:bb:6a:a4:50:85 dst_mac 02:88:3d:45:db:7f vlan_id 2670 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10614 flower src_mac 02:b2:8b:1c:a0:0d dst_mac 02:8f:95:5d:a5:f5 vlan_id 3914 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10615 flower src_mac 02:d9:cd:e2:2a:ea dst_mac 02:df:a5:d1:64:52 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10616 flower src_mac 02:f4:87:c6:be:ca dst_mac 02:45:47:95:21:c7 vlan_id 1058 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10617 flower src_mac 02:41:72:3a:f0:a6 dst_mac 02:4b:3e:41:aa:41 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10618 flower src_mac 02:02:38:79:57:3a dst_mac 02:d0:f5:95:bd:4a vlan_id 971 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10619 flower src_mac 02:d1:0c:a1:17:9d dst_mac 02:f3:ca:2d:37:0d action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10620 flower src_mac 02:9f:2d:a6:fc:6d dst_mac 02:42:81:78:52:c0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10621 flower src_mac 02:e6:cd:13:eb:68 dst_mac 02:0f:6a:fc:b3:a2 vlan_id 3113 vlan_ethtype 0x0800 src_ip 18.231.0.52 dst_ip 123.34.23.79 ip_proto udp src_port 58999 dst_port 27265 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10622 flower src_mac 02:31:f7:7c:48:81 dst_mac 02:16:50:ed:2b:79 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10623 flower src_mac 02:c8:0b:a2:08:5b dst_mac 02:10:82:2f:8b:76 vlan_id 3989 vlan_ethtype ipv4 src_ip 51.135.81.243 dst_ip 52.81.158.180 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10624 flower src_mac 02:ec:88:71:e0:b2 dst_mac 02:e0:74:88:99:ce vlan_id 967 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10625 flower src_mac 02:f9:c9:09:31:e8 dst_mac 02:88:90:dc:a7:36 vlan_id 1403 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10626 flower src_mac 02:90:9b:6f:0d:3b dst_mac 02:11:e9:7b:4d:9d vlan_id 583 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10627 flower src_mac 02:75:8d:38:90:20 dst_mac 02:c5:90:10:28:8a src_ip 16.234.43.46 dst_ip 34.201.233.239 ip_proto udp src_port 19442 dst_port 46529 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10628 flower src_mac 02:30:ea:39:37:1f dst_mac 02:b3:6a:80:1a:ff action trap && tc filter add dev swp33 ingress protocol ip pref 10629 flower src_mac 02:ca:3a:56:d7:a8 dst_mac 02:ea:00:4c:58:4d src_ip 103.150.177.88 dst_ip 95.42.209.208 ip_proto icmp code 201 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10630 flower src_mac 02:03:b1:83:cf:e2 dst_mac 02:90:73:7b:ea:ca action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10631 flower src_mac 02:d0:b4:69:61:6a dst_mac 02:9f:11:8f:d8:a5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10632 flower src_mac 02:0c:e2:a4:16:08 dst_mac 02:68:26:33:f0:3a action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10633 flower src_mac 02:68:da:f0:59:38 dst_mac 02:02:81:d4:2c:f1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10634 flower src_mac 02:28:2b:e9:51:6e dst_mac 02:d1:b0:24:3c:b3 vlan_id 1629 vlan_ethtype 0x0800 src_ip 98.45.109.124 dst_ip 46.114.150.220 ip_proto udp src_port 34429 dst_port 56911 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10635 flower src_mac 02:65:d2:d2:03:64 dst_mac 02:27:ba:a5:2c:e6 vlan_id 3735 vlan_ethtype 0x0800 src_ip 32.164.190.89 dst_ip 21.117.95.73 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10636 flower src_mac 02:ac:a3:be:c8:bb dst_mac 02:f2:c4:66:45:d8 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10637 flower src_mac 02:18:10:b4:62:26 dst_mac 02:b9:fc:b9:d0:37 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10638 flower src_mac 02:fc:1f:f3:9f:fa dst_mac 02:a0:a7:65:2e:3a vlan_id 2324 vlan_ethtype ip src_ip 107.249.83.174 dst_ip 111.164.95.82 ip_proto tcp src_port 4346 dst_port 13205 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10639 flower src_mac 02:2e:99:4f:65:53 dst_mac 02:ce:53:c4:55:8f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:87:36:de:74:34 dst_mac 02:3a:50:05:1c:5b vlan_id 1138 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10641 flower src_mac 02:d7:3a:09:27:f1 dst_mac 02:a0:d2:44:0c:94 vlan_id 1909 vlan_ethtype ipv4 src_ip 20.23.194.85 dst_ip 122.58.164.70 ip_proto udp src_port 16364 dst_port 61953 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10642 flower src_mac 02:a1:c3:11:a8:36 dst_mac 02:95:16:91:b6:4d action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10643 flower src_mac 02:6a:0b:c0:7a:48 dst_mac 02:91:f4:5b:ca:df action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10644 flower src_mac 02:df:4c:d4:8e:d1 dst_mac 02:b8:65:82:e3:e2 vlan_id 890 vlan_ethtype 0x0800 src_ip 15.193.247.249 dst_ip 84.130.199.176 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10645 flower src_mac 02:d7:48:a1:6e:4c dst_mac 02:be:0d:44:f3:37 vlan_id 3704 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10646 flower src_mac 02:1d:36:15:a5:98 dst_mac 02:2f:dc:ae:a0:6a vlan_id 1124 vlan_ethtype 0x0800 src_ip 69.67.232.23 dst_ip 91.229.80.56 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10647 flower src_mac 02:85:5a:88:31:37 dst_mac 02:d7:5e:8d:76:66 src_ip 22.160.190.43 dst_ip 93.98.79.132 ip_proto tcp src_port 51292 dst_port 15342 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10648 flower src_mac 02:99:47:ea:ff:5d dst_mac 02:f3:3f:b1:b4:20 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10649 flower src_mac 02:01:ee:39:4b:33 dst_mac 02:bb:3f:cc:b2:85 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10650 flower src_mac 02:ce:74:22:49:42 dst_mac 02:f5:7b:f2:65:99 vlan_id 2383 vlan_ethtype 0x0800 src_ip 94.231.50.69 dst_ip 67.208.61.121 ip_proto tcp src_port 26138 dst_port 39944 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10651 flower src_mac 02:60:30:d3:b7:77 dst_mac 02:d0:f7:f6:ba:26 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10652 flower src_mac 02:d1:a3:67:61:78 dst_mac 02:2f:85:c1:16:73 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10653 flower src_mac 02:5d:00:72:82:7c dst_mac 02:db:1d:d6:2d:7d vlan_id 145 vlan_ethtype 0x0800 src_ip 99.69.126.180 dst_ip 38.159.208.51 ip_proto udp src_port 18081 dst_port 13409 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10654 flower src_mac 02:b3:3e:0b:b5:a1 dst_mac 02:d2:e9:bc:83:76 vlan_id 658 vlan_ethtype ipv4 src_ip 119.100.7.8 dst_ip 45.185.64.80 ip_proto udp src_port 14052 dst_port 53687 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10655 flower src_mac 02:a5:b3:38:e7:5b dst_mac 02:3e:36:39:26:5d vlan_id 3685 vlan_ethtype 0x0800 src_ip 62.34.69.59 dst_ip 62.103.108.115 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10656 flower src_mac 02:1f:45:03:14:35 dst_mac 02:02:41:eb:44:44 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10657 flower src_mac 02:01:9c:1c:71:99 dst_mac 02:26:30:b4:57:65 vlan_id 3959 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10658 flower src_mac 02:00:61:b6:00:da dst_mac 02:f0:ed:c9:06:ea vlan_id 3765 vlan_ethtype ip src_ip 74.52.46.138 dst_ip 53.107.87.153 ip_proto tcp src_port 54444 dst_port 53693 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10659 flower src_mac 02:fa:ae:27:43:77 dst_mac 02:3e:d2:d2:e3:35 vlan_id 1898 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10660 flower src_mac 02:b9:95:21:87:92 dst_mac 02:35:b3:ca:0e:78 src_ip 86.206.44.83 dst_ip 78.50.100.87 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10661 flower src_mac 02:2c:7c:1d:12:ff dst_mac 02:91:e6:cd:53:18 src_ip 108.224.119.70 dst_ip 13.69.234.239 ip_proto tcp src_port 49322 dst_port 64088 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10662 flower src_mac 02:b9:f7:0d:dc:96 dst_mac 02:15:c9:c3:1f:9a vlan_id 1463 vlan_ethtype ipv4 src_ip 23.14.246.201 dst_ip 126.187.8.233 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10663 flower src_mac 02:cc:0f:da:01:6d dst_mac 02:35:5d:b8:c4:f9 vlan_id 2070 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10664 flower src_mac 02:f9:33:d0:56:2b dst_mac 02:51:28:41:6a:79 action drop && tc filter add dev swp33 ingress protocol ip pref 10665 flower src_mac 02:94:c9:5f:0c:f8 dst_mac 02:84:08:10:2a:0e src_ip 76.105.212.221 dst_ip 61.15.69.166 ip_proto icmp code 164 type 13 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10666 flower src_mac 02:f8:8b:12:6f:f1 dst_mac 02:fb:78:97:33:c9 vlan_id 334 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10667 flower src_mac 02:0e:15:29:22:1b dst_mac 02:36:ea:b2:ee:47 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10668 flower src_mac 02:55:40:b7:23:dd dst_mac 02:74:d0:3f:80:f6 src_ip 39.2.148.58 dst_ip 40.156.135.28 ip_proto tcp src_port 47246 dst_port 35920 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10669 flower src_mac 02:c7:bf:35:28:c9 dst_mac 02:c2:83:5e:90:5d vlan_id 1579 vlan_ethtype ip src_ip 71.222.195.120 dst_ip 41.193.106.66 ip_proto udp src_port 14139 dst_port 51505 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10670 flower src_mac 02:79:f1:53:b5:21 dst_mac 02:df:55:a4:09:d7 src_ip 83.92.1.152 dst_ip 11.204.235.127 ip_proto tcp src_port 16129 dst_port 51422 action drop && tc filter add dev swp33 ingress protocol ip pref 10671 flower src_mac 02:5b:ea:51:fd:ec dst_mac 02:7a:52:50:df:c9 src_ip 93.227.155.9 dst_ip 103.68.172.147 ip_proto udp src_port 33458 dst_port 2478 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10672 flower src_mac 02:19:9e:d1:12:6b dst_mac 02:94:da:0c:ca:97 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10673 flower src_mac 02:fa:62:4b:28:84 dst_mac 02:06:8b:fb:c2:1b vlan_id 3947 vlan_ethtype 0x0800 src_ip 47.17.235.67 dst_ip 125.100.175.149 action pass && tc filter add dev swp33 ingress protocol ip pref 10674 flower src_mac 02:66:a4:6b:b0:50 dst_mac 02:6e:b0:44:ba:78 src_ip 43.78.162.120 dst_ip 59.38.251.235 ip_proto tcp src_port 27882 dst_port 25222 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10675 flower src_mac 02:2c:0a:30:fa:29 dst_mac 02:4e:bb:0c:b2:8e src_ip 12.121.33.123 dst_ip 125.134.90.218 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:54:14:de:77:3f dst_mac 02:43:d9:56:a7:52 vlan_id 1225 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10677 flower src_mac 02:91:e8:07:bd:cc dst_mac 02:62:50:8e:69:4f action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10678 flower src_mac 02:d8:0d:ee:8e:ef dst_mac 02:34:e0:eb:f7:83 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10679 flower src_mac 02:fb:4b:f4:55:b0 dst_mac 02:ca:32:ba:63:91 src_ip 90.163.85.61 dst_ip 56.250.30.183 ip_proto tcp src_port 13904 dst_port 61683 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10680 flower src_mac 02:81:92:74:20:99 dst_mac 02:cc:c7:b2:5b:9f src_ip 66.174.10.20 dst_ip 46.196.154.174 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10681 flower src_mac 02:e8:6a:d2:ba:01 dst_mac 02:ee:a1:59:1a:5f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10682 flower src_mac 02:4e:f5:18:1a:c7 dst_mac 02:22:71:d1:f2:da vlan_id 3539 vlan_ethtype ip src_ip 100.212.142.50 dst_ip 35.192.68.95 action trap && tc filter add dev swp33 ingress protocol ip pref 10683 flower src_mac 02:c3:65:e6:64:cf dst_mac 02:3c:57:84:96:8b src_ip 49.131.178.192 dst_ip 87.236.189.132 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10684 flower src_mac 02:0c:82:e6:36:88 dst_mac 02:d6:ef:0e:f5:c3 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10685 flower src_mac 02:4a:3e:43:0e:6f dst_mac 02:47:28:95:a4:93 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10686 flower src_mac 02:7c:06:1f:7b:29 dst_mac 02:f3:cc:0f:f8:16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10687 flower src_mac 02:d8:85:8f:45:2c dst_mac 02:f7:5e:16:b8:d4 src_ip 72.80.167.120 dst_ip 107.49.72.230 ip_proto udp src_port 8937 dst_port 41470 action pass && tc filter add dev swp33 ingress protocol ip pref 10688 flower src_mac 02:7e:85:3b:f7:29 dst_mac 02:dc:5f:ca:bd:64 src_ip 43.246.124.77 dst_ip 125.107.111.119 ip_proto tcp src_port 38269 dst_port 30414 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10689 flower src_mac 02:d8:cd:0c:ab:83 dst_mac 02:45:e8:6d:f0:d9 src_ip 114.82.81.152 dst_ip 50.245.76.205 ip_proto icmp code 166 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10690 flower src_mac 02:43:9c:f0:f8:89 dst_mac 02:9a:93:c3:61:07 vlan_id 1486 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10691 flower src_mac 02:76:19:10:b1:08 dst_mac 02:f9:2f:7c:fd:f8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10692 flower src_mac 02:f3:2b:ad:ba:b9 dst_mac 02:e3:b5:16:45:6c vlan_id 1396 vlan_ethtype ipv4 src_ip 16.25.191.234 dst_ip 88.145.224.23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10693 flower src_mac 02:00:f8:14:43:f9 dst_mac 02:32:a0:28:da:fc vlan_id 1212 vlan_ethtype ip src_ip 54.162.45.165 dst_ip 101.82.126.165 ip_proto tcp src_port 18074 dst_port 40218 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10694 flower src_mac 02:c8:26:18:53:cc dst_mac 02:6c:09:20:3a:e1 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10695 flower src_mac 02:4b:ee:90:69:25 dst_mac 02:c3:80:c1:c0:5f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10696 flower src_mac 02:bd:82:9b:71:e7 dst_mac 02:e4:7d:47:ad:b3 vlan_id 22 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10697 flower src_mac 02:12:db:0e:ee:58 dst_mac 02:93:a1:5c:b7:a5 src_ip 92.117.243.146 dst_ip 47.200.164.67 ip_proto icmp code 96 type 15 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10698 flower src_mac 02:86:9f:67:ec:43 dst_mac 02:d1:82:aa:65:cf action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10699 flower src_mac 02:60:cf:22:8d:b5 dst_mac 02:b9:cb:0b:98:aa action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10700 flower src_mac 02:44:f5:aa:6f:ec dst_mac 02:06:cd:34:7b:d8 src_ip 49.126.102.133 dst_ip 78.173.243.14 ip_proto icmp code 245 type 3 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10701 flower src_mac 02:34:66:82:ed:df dst_mac 02:09:9d:1c:f9:98 src_ip 14.228.73.49 dst_ip 109.72.55.192 ip_proto icmp code 158 type 5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10702 flower src_mac 02:2d:77:fc:c4:1e dst_mac 02:b7:1e:fd:07:50 vlan_id 1991 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10703 flower src_mac 02:95:77:63:4b:1a dst_mac 02:e4:67:15:03:6f src_ip 67.59.192.44 dst_ip 43.166.130.235 ip_proto udp src_port 24380 dst_port 31297 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10704 flower src_mac 02:2e:12:a6:4d:27 dst_mac 02:9e:5e:e1:35:70 vlan_id 1030 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10705 flower src_mac 02:a9:23:17:f9:17 dst_mac 02:bf:cf:e5:a9:0b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10706 flower src_mac 02:f9:1f:3d:08:1b dst_mac 02:6e:e9:46:ae:54 vlan_id 2717 vlan_ethtype ipv4 src_ip 115.205.58.107 dst_ip 66.40.250.158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10707 flower src_mac 02:c1:dd:38:df:2a dst_mac 02:07:a4:02:6e:34 vlan_id 2367 vlan_ethtype 0x0800 src_ip 17.74.139.250 dst_ip 87.65.154.85 action pass && tc filter add dev swp33 ingress protocol ip pref 10708 flower src_mac 02:56:3e:f6:8e:b5 dst_mac 02:a4:05:9f:27:51 src_ip 106.55.121.241 dst_ip 22.244.5.82 ip_proto icmp code 198 type 12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10709 flower src_mac 02:da:09:b7:9f:1a dst_mac 02:36:0f:74:0c:a8 vlan_id 3830 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10710 flower src_mac 02:a6:ec:fc:99:c6 dst_mac 02:10:76:a1:39:a2 src_ip 41.140.245.33 dst_ip 97.177.212.229 ip_proto tcp src_port 19544 dst_port 17483 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10711 flower src_mac 02:bb:35:1d:ad:c4 dst_mac 02:93:64:0b:85:9b vlan_id 2670 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10712 flower src_mac 02:d2:81:8d:dc:91 dst_mac 02:15:a0:49:17:b0 vlan_id 3575 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:92:8a:38:e3:7e dst_mac 02:55:6b:42:0d:5f vlan_id 445 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10714 flower src_mac 02:37:dc:b6:60:ef dst_mac 02:ba:02:49:db:61 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10715 flower src_mac 02:1e:9a:9b:d2:e1 dst_mac 02:26:a5:a5:06:d7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10716 flower src_mac 02:7e:43:f4:52:42 dst_mac 02:d4:4b:d4:6f:95 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:e8:92:cb:86:02 dst_mac 02:f0:1e:43:31:33 vlan_id 2956 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10718 flower src_mac 02:7f:91:c0:98:b7 dst_mac 02:43:d6:f9:fe:0a src_ip 63.68.132.37 dst_ip 26.210.81.164 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10719 flower src_mac 02:39:b4:20:ee:02 dst_mac 02:20:0e:95:fc:db vlan_id 1045 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10720 flower src_mac 02:47:2d:f5:4c:ac dst_mac 02:66:cd:f8:ec:6b vlan_id 1109 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10721 flower src_mac 02:1c:63:db:b0:72 dst_mac 02:b3:ab:6c:af:fc src_ip 53.148.249.50 dst_ip 123.63.56.45 ip_proto tcp src_port 38410 dst_port 5223 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10722 flower src_mac 02:18:1b:fa:1c:b2 dst_mac 02:9e:4b:46:a0:d2 vlan_id 3747 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10723 flower src_mac 02:fa:f5:9c:1b:3a dst_mac 02:79:83:7b:39:b3 src_ip 89.244.142.231 dst_ip 56.129.4.36 ip_proto udp src_port 23673 dst_port 38631 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10724 flower src_mac 02:b4:13:51:2f:b5 dst_mac 02:04:6b:d2:dc:a2 src_ip 54.192.244.220 dst_ip 93.176.157.174 ip_proto icmp code 42 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10725 flower src_mac 02:38:50:d3:4b:1a dst_mac 02:3f:d0:61:5e:d8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10726 flower src_mac 02:22:7f:d2:70:0c dst_mac 02:ca:b9:12:4d:1f vlan_id 2913 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10727 flower src_mac 02:67:69:2f:5b:f3 dst_mac 02:9c:94:68:79:3b vlan_id 3435 vlan_ethtype ipv4 src_ip 17.81.236.48 dst_ip 87.104.190.121 action trap && tc filter add dev swp33 ingress protocol ip pref 10728 flower src_mac 02:46:12:c1:2d:43 dst_mac 02:c3:2a:d3:e1:67 src_ip 108.75.4.142 dst_ip 46.235.16.21 ip_proto udp src_port 5459 dst_port 15650 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10729 flower src_mac 02:2e:ac:05:ff:98 dst_mac 02:68:a4:36:5a:e2 src_ip 81.87.130.203 dst_ip 62.148.117.152 ip_proto icmp code 163 type 14 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10730 flower src_mac 02:b4:a9:f3:aa:1f dst_mac 02:c4:de:62:ca:5d src_ip 54.42.129.60 dst_ip 14.144.13.198 ip_proto tcp src_port 47014 dst_port 47895 action trap && tc filter add dev swp33 ingress protocol ip pref 10731 flower src_mac 02:8f:ad:03:7e:1a dst_mac 02:1f:a1:86:bf:4d src_ip 31.190.114.13 dst_ip 42.61.205.155 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10732 flower src_mac 02:ba:9d:62:4c:e5 dst_mac 02:4f:0e:76:5c:cd vlan_id 584 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10733 flower src_mac 02:20:50:7a:5b:77 dst_mac 02:63:cb:5b:b3:78 vlan_id 3039 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10734 flower src_mac 02:6c:be:07:cc:1d dst_mac 02:ab:b9:ec:36:3d action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10735 flower src_mac 02:71:4c:32:e7:9f dst_mac 02:97:a4:33:fa:2c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10736 flower src_mac 02:d4:d0:b0:97:8e dst_mac 02:2a:61:5d:f3:54 vlan_id 68 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10737 flower src_mac 02:bd:79:47:9b:d1 dst_mac 02:b3:5a:3c:60:14 vlan_id 3408 vlan_ethtype ipv4 src_ip 63.13.13.78 dst_ip 46.1.34.247 ip_proto tcp src_port 42189 dst_port 8018 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10738 flower src_mac 02:7b:fd:5a:da:45 dst_mac 02:e1:a0:a4:2d:da src_ip 98.22.52.49 dst_ip 52.196.126.53 ip_proto udp src_port 55566 dst_port 47758 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10739 flower src_mac 02:05:9a:17:51:40 dst_mac 02:64:13:a7:2c:60 vlan_id 2452 vlan_ethtype ip src_ip 30.246.62.59 dst_ip 110.65.0.175 ip_proto udp src_port 53586 dst_port 16992 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10740 flower src_mac 02:52:d1:5b:c9:6e dst_mac 02:7f:54:87:2d:ee action pass && tc filter add dev swp33 ingress protocol ip pref 10741 flower src_mac 02:eb:12:6f:e7:67 dst_mac 02:52:b7:e8:d4:06 src_ip 95.222.73.26 dst_ip 125.24.235.192 ip_proto udp src_port 25762 dst_port 54440 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10742 flower src_mac 02:24:b7:d7:69:ec dst_mac 02:df:22:d9:7e:fd vlan_id 1690 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10743 flower src_mac 02:05:1e:40:7e:c1 dst_mac 02:2e:a0:e4:85:2d src_ip 40.161.153.219 dst_ip 25.227.32.168 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10744 flower src_mac 02:be:dc:23:58:32 dst_mac 02:7b:cd:fc:c1:fe src_ip 80.10.82.47 dst_ip 41.80.216.156 ip_proto udp src_port 16657 dst_port 34555 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10745 flower src_mac 02:26:bc:e8:90:fe dst_mac 02:ff:ec:34:0a:62 src_ip 22.219.208.4 dst_ip 104.129.67.210 action pass && tc filter add dev swp33 ingress protocol ip pref 10746 flower src_mac 02:b6:7b:a9:57:c9 dst_mac 02:7f:7f:c6:56:26 src_ip 31.97.45.111 dst_ip 119.29.195.232 ip_proto udp src_port 24301 dst_port 63729 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10747 flower src_mac 02:ca:22:92:2e:df dst_mac 02:38:26:6c:65:4e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10748 flower src_mac 02:5f:fd:26:2d:37 dst_mac 02:19:ca:ea:22:5f vlan_id 1716 vlan_ethtype ip src_ip 82.148.5.112 dst_ip 23.220.104.232 ip_proto udp src_port 14674 dst_port 23483 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10749 flower src_mac 02:ad:af:d1:18:15 dst_mac 02:8a:22:ff:63:5b vlan_id 1152 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10750 flower src_mac 02:d1:2c:4e:ff:38 dst_mac 02:0b:85:83:8b:91 action trap && tc filter add dev swp33 ingress protocol ip pref 10751 flower src_mac 02:9c:ec:9f:62:38 dst_mac 02:e4:86:29:57:f3 src_ip 53.77.31.176 dst_ip 120.45.214.5 ip_proto tcp src_port 28058 dst_port 7283 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10752 flower src_mac 02:5a:ea:ac:01:29 dst_mac 02:f3:79:e5:f5:d6 vlan_id 1184 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10753 flower src_mac 02:a0:1c:9f:2c:b5 dst_mac 02:de:99:a2:1a:27 vlan_id 911 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10754 flower src_mac 02:70:5a:be:92:2f dst_mac 02:ac:b5:fc:a8:c1 vlan_id 1398 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10755 flower src_mac 02:59:e6:04:a8:08 dst_mac 02:f0:3c:54:a4:20 src_ip 111.135.207.202 dst_ip 74.151.119.241 ip_proto tcp src_port 62073 dst_port 62349 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10756 flower src_mac 02:e8:57:a8:fc:c7 dst_mac 02:8a:4d:4c:fd:87 src_ip 121.1.48.100 dst_ip 119.65.204.177 ip_proto tcp src_port 27775 dst_port 20868 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10757 flower src_mac 02:2f:66:36:8c:b1 dst_mac 02:71:a4:ce:20:52 src_ip 97.200.229.89 dst_ip 102.39.178.156 ip_proto icmp code 193 type 17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10758 flower src_mac 02:72:11:86:78:cf dst_mac 02:24:e9:60:b0:d2 vlan_id 942 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10759 flower src_mac 02:ae:c5:75:d8:ff dst_mac 02:57:9f:c6:9e:c8 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10760 flower src_mac 02:eb:f0:04:18:b3 dst_mac 02:aa:80:c3:0f:26 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10761 flower src_mac 02:74:5a:ab:ca:2e dst_mac 02:5f:d4:5e:50:75 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10762 flower src_mac 02:3b:94:91:74:95 dst_mac 02:d7:19:ea:c3:2a vlan_id 3697 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10763 flower src_mac 02:bc:b1:2f:e4:1b dst_mac 02:94:c8:cc:78:6f vlan_id 1024 vlan_ethtype ipv4 src_ip 106.122.174.121 dst_ip 124.229.191.177 ip_proto tcp src_port 50856 dst_port 30505 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10764 flower src_mac 02:b7:40:7b:49:3a dst_mac 02:d2:7a:ca:07:69 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10765 flower src_mac 02:cd:81:40:47:e8 dst_mac 02:41:f2:0a:70:9b vlan_id 758 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10766 flower src_mac 02:96:68:5e:41:77 dst_mac 02:d8:0b:00:af:86 vlan_id 1672 vlan_ethtype ipv4 src_ip 125.68.152.248 dst_ip 77.50.45.238 ip_proto udp src_port 25116 dst_port 57443 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10767 flower src_mac 02:1a:15:4c:c1:e9 dst_mac 02:a8:09:25:30:7d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10768 flower src_mac 02:3b:f1:3f:95:42 dst_mac 02:1d:4c:0b:5b:64 vlan_id 3330 vlan_ethtype 0x0800 src_ip 56.158.241.199 dst_ip 71.113.155.46 ip_proto udp src_port 57683 dst_port 16064 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10769 flower src_mac 02:e0:0a:52:9c:29 dst_mac 02:a0:09:69:6c:8c action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10770 flower src_mac 02:32:c6:cc:93:00 dst_mac 02:f2:5a:23:75:50 src_ip 64.171.5.13 dst_ip 95.126.101.14 ip_proto udp src_port 45949 dst_port 52612 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10771 flower src_mac 02:8a:a1:ab:19:ea dst_mac 02:87:a2:70:be:14 vlan_id 154 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10772 flower src_mac 02:20:fc:1f:8a:75 dst_mac 02:bd:af:59:52:55 vlan_id 1333 vlan_ethtype ipv4 src_ip 34.176.68.62 dst_ip 69.107.241.47 ip_proto tcp src_port 7052 dst_port 63680 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10773 flower src_mac 02:1e:27:a5:b7:ca dst_mac 02:70:08:8a:69:b3 vlan_id 1264 vlan_ethtype ip src_ip 101.197.186.4 dst_ip 16.177.177.177 ip_proto tcp src_port 26178 dst_port 6767 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10774 flower src_mac 02:dc:95:24:7e:9c dst_mac 02:26:e8:03:a2:4d vlan_id 199 vlan_ethtype ip src_ip 124.82.65.230 dst_ip 96.136.185.132 ip_proto tcp src_port 46220 dst_port 21117 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10775 flower src_mac 02:18:79:83:ea:b8 dst_mac 02:77:9c:ac:0d:ce vlan_id 2043 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10776 flower src_mac 02:ef:cb:63:26:bc dst_mac 02:63:54:44:f9:8e src_ip 15.105.242.3 dst_ip 121.179.247.102 ip_proto tcp src_port 46593 dst_port 27013 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10777 flower src_mac 02:f5:28:58:ea:ea dst_mac 02:d3:af:e3:13:e4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10778 flower src_mac 02:58:07:05:cc:fe dst_mac 02:e6:8c:5b:1e:de vlan_id 1060 vlan_ethtype ipv4 src_ip 101.60.254.226 dst_ip 23.9.34.112 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10779 flower src_mac 02:cd:d9:63:22:c1 dst_mac 02:6a:5a:99:8b:b2 vlan_id 855 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10780 flower src_mac 02:87:63:27:9b:68 dst_mac 02:aa:97:ee:33:0c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10781 flower src_mac 02:b5:f4:d8:e5:e8 dst_mac 02:21:ff:fc:33:c8 vlan_id 1186 vlan_ethtype ip src_ip 103.180.179.96 dst_ip 34.130.51.112 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10782 flower src_mac 02:72:7d:37:9a:bc dst_mac 02:a9:e1:3a:ac:cf action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10783 flower src_mac 02:9f:bd:12:46:07 dst_mac 02:f8:5a:68:d6:48 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10784 flower src_mac 02:2d:bb:01:16:66 dst_mac 02:88:db:98:c4:dc vlan_id 3989 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10785 flower src_mac 02:0e:09:0e:75:3c dst_mac 02:37:3e:28:2a:4a vlan_id 2137 vlan_ethtype ipv4 src_ip 77.88.178.29 dst_ip 52.198.74.7 ip_proto tcp src_port 64790 dst_port 64801 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:77:ab:e1:ef:93 dst_mac 02:66:20:ee:07:69 vlan_id 3918 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10787 flower src_mac 02:a4:9a:32:8d:37 dst_mac 02:bf:82:ba:cb:4f src_ip 89.155.113.244 dst_ip 120.144.167.145 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10788 flower src_mac 02:40:6f:ad:ef:b1 dst_mac 02:f2:ea:ad:aa:89 vlan_id 2482 vlan_ethtype ipv4 src_ip 91.68.227.104 dst_ip 90.107.115.48 ip_proto tcp src_port 26546 dst_port 63479 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10789 flower src_mac 02:00:f1:91:6b:38 dst_mac 02:1e:55:bf:4d:b9 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10790 flower src_mac 02:62:a2:4e:11:21 dst_mac 02:23:c3:5d:60:5d vlan_id 363 vlan_ethtype 0x0800 src_ip 111.25.41.69 dst_ip 15.22.221.124 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10791 flower src_mac 02:18:23:81:00:b1 dst_mac 02:a4:2a:df:10:39 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10792 flower src_mac 02:a5:5d:a1:00:e7 dst_mac 02:d4:c3:3e:4c:65 src_ip 44.235.143.34 dst_ip 52.56.166.243 ip_proto tcp src_port 6110 dst_port 61026 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10793 flower src_mac 02:db:ee:42:50:a4 dst_mac 02:b7:4c:fe:cd:81 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10794 flower src_mac 02:7f:a0:1c:00:c2 dst_mac 02:f9:a7:e7:29:66 src_ip 62.41.153.12 dst_ip 33.227.252.249 ip_proto udp src_port 39917 dst_port 12177 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10795 flower src_mac 02:9a:8f:f9:28:ac dst_mac 02:e5:85:18:ec:c3 vlan_id 3302 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10796 flower src_mac 02:de:a5:37:0c:1b dst_mac 02:8e:27:b7:71:05 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10797 flower src_mac 02:6e:08:f2:0b:27 dst_mac 02:6f:6f:21:16:ae vlan_id 1185 vlan_ethtype ipv4 src_ip 65.229.50.198 dst_ip 81.220.146.63 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10798 flower src_mac 02:d0:d1:2f:34:1c dst_mac 02:ff:c0:8b:57:e7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10799 flower src_mac 02:79:f5:b1:53:dc dst_mac 02:85:c7:c3:0d:84 vlan_id 2781 vlan_ethtype 0x9200 action pass INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:29:3f:9a:77:7e dst_mac 02:b3:a5:9b:9c:ba vlan_id 2377 vlan_ethtype 0x0800 src_ip 55.26.189.186 dst_ip 69.82.232.133 ip_proto tcp src_port 14492 dst_port 29545 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10801 flower src_mac 02:bc:c3:05:10:51 dst_mac 02:3b:a0:8c:eb:46 vlan_id 3328 vlan_ethtype ipv4 src_ip 76.192.64.226 dst_ip 14.25.137.23 ip_proto tcp src_port 49081 dst_port 58587 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10802 flower src_mac 02:e3:24:90:59:81 dst_mac 02:81:f9:9c:37:be vlan_id 2215 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10803 flower src_mac 02:76:c4:f3:84:ad dst_mac 02:86:11:dc:e5:44 vlan_id 3978 vlan_ethtype ipv4 src_ip 25.37.238.114 dst_ip 29.92.190.137 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10804 flower src_mac 02:21:93:ab:a7:30 dst_mac 02:b0:dd:c3:c2:3b src_ip 20.113.168.229 dst_ip 102.105.59.36 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10805 flower src_mac 02:fd:e2:64:b9:c2 dst_mac 02:7f:6e:58:02:4f action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10806 flower src_mac 02:10:ee:d5:de:62 dst_mac 02:7e:ee:2c:23:04 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10807 flower src_mac 02:54:18:09:9b:78 dst_mac 02:f8:8c:fd:a6:3a vlan_id 3870 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10808 flower src_mac 02:ca:74:6c:b7:30 dst_mac 02:1b:30:3c:96:85 src_ip 114.168.2.234 dst_ip 97.78.142.72 ip_proto icmp code 29 type 4 action pass && tc filter add dev swp33 ingress protocol ip pref 10809 flower src_mac 02:5e:11:93:f7:9e dst_mac 02:54:27:05:f0:75 src_ip 61.17.15.69 dst_ip 35.135.75.75 action trap && tc filter add dev swp33 ingress protocol ip pref 10810 flower src_mac 02:38:f4:46:42:ca dst_mac 02:c2:d7:41:39:c6 src_ip 97.122.8.37 dst_ip 89.138.238.144 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10811 flower src_mac 02:fc:56:ca:35:82 dst_mac 02:d7:97:ac:80:de src_ip 121.109.89.125 dst_ip 21.5.90.142 ip_proto tcp src_port 18050 dst_port 64442 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10812 flower src_mac 02:ab:38:ce:70:2a dst_mac 02:78:37:84:6d:8b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:73:4d:a5:85:44 dst_mac 02:c7:30:73:ba:94 vlan_id 2754 vlan_ethtype ip src_ip 18.15.129.206 dst_ip 78.84.192.144 ip_proto tcp src_port 21400 dst_port 1579 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10814 flower src_mac 02:10:fc:5b:7a:69 dst_mac 02:b2:3c:ef:8e:cb vlan_id 3825 vlan_ethtype ip src_ip 53.243.217.211 dst_ip 54.196.21.133 ip_proto tcp src_port 62573 dst_port 52879 action pass && tc filter add dev swp33 ingress protocol ip pref 10815 flower src_mac 02:45:b0:3c:6b:32 dst_mac 02:b3:76:b1:f0:f4 src_ip 86.5.72.226 dst_ip 17.236.139.189 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10816 flower src_mac 02:cc:54:0e:30:03 dst_mac 02:f9:12:b8:47:7f vlan_id 1265 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10817 flower src_mac 02:ae:51:82:a3:49 dst_mac 02:9a:66:7d:73:34 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10818 flower src_mac 02:d0:28:cc:f9:58 dst_mac 02:51:bd:0f:39:40 vlan_id 647 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10819 flower src_mac 02:99:5b:4d:5e:fe dst_mac 02:8e:11:cf:c5:dc vlan_id 2884 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10820 flower src_mac 02:2a:a1:3f:87:5c dst_mac 02:fd:b0:5a:61:0e vlan_id 24 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10821 flower src_mac 02:68:58:ed:55:1c dst_mac 02:b5:35:8a:88:9e src_ip 75.132.28.13 dst_ip 111.250.135.66 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10822 flower src_mac 02:81:75:fb:f0:aa dst_mac 02:cf:13:b7:a7:4e vlan_id 1088 vlan_ethtype ip src_ip 98.130.104.52 dst_ip 49.199.97.87 ip_proto tcp src_port 53286 dst_port 39348 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10823 flower src_mac 02:3a:9b:86:b0:e4 dst_mac 02:af:d8:33:1e:29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10824 flower src_mac 02:55:93:2c:12:31 dst_mac 02:32:de:32:29:ec vlan_id 1737 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10825 flower src_mac 02:67:f6:66:d9:46 dst_mac 02:6c:ca:06:ea:64 src_ip 15.110.8.98 dst_ip 78.174.122.18 ip_proto udp src_port 17874 dst_port 45757 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10826 flower src_mac 02:d6:c2:de:bf:3f dst_mac 02:48:0f:12:05:cc src_ip 75.163.73.236 dst_ip 27.98.114.48 ip_proto tcp src_port 60894 dst_port 32886 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10827 flower src_mac 02:c3:7d:89:d4:30 dst_mac 02:10:33:dc:39:bc vlan_id 470 vlan_ethtype ip src_ip 102.164.139.7 dst_ip 81.244.251.203 ip_proto tcp src_port 2001 dst_port 36241 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10828 flower src_mac 02:16:08:30:45:d1 dst_mac 02:b4:0a:be:92:df vlan_id 1359 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10829 flower src_mac 02:ff:25:c6:e9:9f dst_mac 02:00:12:0c:56:db vlan_id 646 vlan_ethtype ip src_ip 67.224.60.248 dst_ip 15.167.104.84 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10830 flower src_mac 02:a8:49:06:13:8f dst_mac 02:93:a1:6f:dd:2a src_ip 22.244.231.188 dst_ip 102.54.17.51 ip_proto tcp src_port 52667 dst_port 5633 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10831 flower src_mac 02:2f:27:31:b2:62 dst_mac 02:ae:05:8c:b8:a6 vlan_id 1945 vlan_ethtype ip src_ip 104.205.35.184 dst_ip 95.185.173.179 ip_proto tcp src_port 56921 dst_port 23083 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10832 flower src_mac 02:ee:9a:48:17:ac dst_mac 02:0c:bc:88:23:57 vlan_id 2686 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10833 flower src_mac 02:32:10:c8:79:32 dst_mac 02:c2:6a:f1:f7:f6 src_ip 16.111.191.244 dst_ip 100.33.135.63 ip_proto tcp src_port 36880 dst_port 50487 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10834 flower src_mac 02:26:8d:f3:fa:f0 dst_mac 02:2b:57:b9:98:dc action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10835 flower src_mac 02:aa:00:19:49:7d dst_mac 02:04:a9:e0:4c:a1 vlan_id 166 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10836 flower src_mac 02:38:e4:81:de:36 dst_mac 02:11:f0:70:6d:dc vlan_id 2120 vlan_ethtype 0x0800 src_ip 100.214.192.212 dst_ip 81.254.9.195 ip_proto udp src_port 58356 dst_port 50262 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10837 flower src_mac 02:71:1b:53:86:47 dst_mac 02:f0:da:0d:13:b4 vlan_id 1507 vlan_ethtype 0x0800 src_ip 113.3.144.61 dst_ip 66.5.211.153 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10838 flower src_mac 02:ba:de:43:1b:1d dst_mac 02:f6:e2:ca:29:4f vlan_id 2855 vlan_ethtype 0x0800 src_ip 116.154.28.237 dst_ip 102.215.197.140 ip_proto udp src_port 45820 dst_port 33832 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10839 flower src_mac 02:96:fe:96:1f:a2 dst_mac 02:f4:2d:5e:cc:ba vlan_id 1965 vlan_ethtype 0x0800 src_ip 74.149.232.188 dst_ip 68.71.41.228 ip_proto udp src_port 32567 dst_port 11495 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10840 flower src_mac 02:f6:bc:ae:a8:b2 dst_mac 02:14:ca:e3:fc:9f vlan_id 1542 vlan_ethtype ipv4 src_ip 30.162.239.180 dst_ip 20.237.16.75 ip_proto udp src_port 36522 dst_port 38681 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10841 flower src_mac 02:57:d6:76:36:da dst_mac 02:cf:ea:9b:f7:72 vlan_id 1414 vlan_ethtype ip src_ip 74.131.184.108 dst_ip 115.202.57.14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:6d:8d:6f:fe:00 dst_mac 02:b5:f4:64:30:49 vlan_id 3303 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:c0:5b:30:61:33 dst_mac 02:15:69:8c:96:d9 vlan_id 177 vlan_ethtype ip src_ip 72.0.8.197 dst_ip 118.102.216.89 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10844 flower src_mac 02:60:1c:9c:d9:f0 dst_mac 02:89:03:aa:5f:a9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10845 flower src_mac 02:85:b1:34:7d:81 dst_mac 02:2f:f2:f7:32:0e vlan_id 384 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10846 flower src_mac 02:b3:36:6c:c7:36 dst_mac 02:82:ab:9e:1b:1c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10847 flower src_mac 02:25:d0:84:e7:25 dst_mac 02:f4:fc:38:a1:f2 vlan_id 2574 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10848 flower src_mac 02:08:9b:68:36:e3 dst_mac 02:54:5d:75:a4:d4 src_ip 104.207.26.79 dst_ip 35.59.103.10 ip_proto udp src_port 29806 dst_port 57476 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10849 flower src_mac 02:0a:a5:a9:ec:98 dst_mac 02:6b:d5:13:53:49 src_ip 119.220.26.180 dst_ip 73.144.87.46 ip_proto tcp src_port 51765 dst_port 27573 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10850 flower src_mac 02:83:1f:0d:3b:23 dst_mac 02:7e:20:73:6e:2d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10851 flower src_mac 02:13:73:61:38:9f dst_mac 02:f9:b8:bf:3e:6b vlan_id 269 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10852 flower src_mac 02:ea:dd:a1:6d:f4 dst_mac 02:b4:5f:dd:da:ae src_ip 24.131.138.177 dst_ip 22.245.124.70 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10853 flower src_mac 02:69:6e:41:0f:70 dst_mac 02:79:52:9e:ac:be action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10854 flower src_mac 02:b2:2b:8c:90:8c dst_mac 02:d8:64:1e:e5:c6 src_ip 11.27.84.56 dst_ip 125.51.174.8 ip_proto udp src_port 33373 dst_port 51257 action pass && tc filter add dev swp33 ingress protocol ip pref 10855 flower src_mac 02:db:7e:c4:09:82 dst_mac 02:f1:04:10:74:d2 src_ip 80.13.155.222 dst_ip 96.196.159.105 ip_proto tcp src_port 1616 dst_port 12988 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10856 flower src_mac 02:27:9c:7b:8e:54 dst_mac 02:e1:45:0f:ab:55 vlan_id 1197 vlan_ethtype ipv4 src_ip 75.10.80.18 dst_ip 30.20.68.150 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10857 flower src_mac 02:88:60:36:63:7d dst_mac 02:85:b1:82:e9:3a vlan_id 100 vlan_ethtype 0x0800 src_ip 112.80.55.152 dst_ip 31.193.121.109 ip_proto tcp src_port 51550 dst_port 13210 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10858 flower src_mac 02:4a:fe:4a:61:d5 dst_mac 02:06:d3:64:d2:d4 src_ip 61.164.108.124 dst_ip 24.99.162.90 ip_proto udp src_port 44171 dst_port 60082 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10859 flower src_mac 02:42:eb:18:38:13 dst_mac 02:06:66:30:f2:d1 vlan_id 2237 vlan_ethtype 0x0800 src_ip 15.111.157.140 dst_ip 103.90.244.133 ip_proto tcp src_port 26166 dst_port 9415 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10860 flower src_mac 02:11:44:88:0e:a5 dst_mac 02:e8:3e:08:d1:71 vlan_id 3073 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10861 flower src_mac 02:ac:7a:69:cc:bd dst_mac 02:06:e6:70:4d:b4 src_ip 35.19.199.138 dst_ip 24.229.79.128 ip_proto udp src_port 60904 dst_port 22214 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10862 flower src_mac 02:1a:3f:d2:5a:c2 dst_mac 02:e9:72:e8:ba:43 vlan_id 190 vlan_ethtype ipv4 src_ip 56.237.7.146 dst_ip 113.76.39.154 ip_proto udp src_port 54891 dst_port 46074 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10863 flower src_mac 02:3b:d5:5b:59:8b dst_mac 02:c7:90:58:ec:4d vlan_id 3950 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10864 flower src_mac 02:34:96:9b:3e:7d dst_mac 02:0b:6c:bf:e8:49 vlan_id 1169 vlan_ethtype ip src_ip 114.164.223.53 dst_ip 97.251.216.178 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10865 flower src_mac 02:fb:ee:85:54:07 dst_mac 02:3b:ec:4e:fb:f2 vlan_id 2607 vlan_ethtype 0x0800 src_ip 21.120.236.223 dst_ip 34.120.139.73 ip_proto udp src_port 40069 dst_port 45245 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10866 flower src_mac 02:16:e9:e5:a6:6e dst_mac 02:84:69:73:0e:1c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10867 flower src_mac 02:af:ed:41:6d:d3 dst_mac 02:df:97:91:9c:b6 vlan_id 1258 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10868 flower src_mac 02:f9:87:a0:78:d9 dst_mac 02:bf:3a:f4:96:77 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10869 flower src_mac 02:5c:39:12:48:c7 dst_mac 02:47:d3:01:60:4f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10870 flower src_mac 02:88:ca:51:3a:2c dst_mac 02:e1:0e:a1:76:bc vlan_id 1902 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10871 flower src_mac 02:5e:a0:e2:cd:88 dst_mac 02:80:14:22:b7:c5 vlan_id 3816 vlan_ethtype ipv4 src_ip 11.185.121.242 dst_ip 123.225.93.65 ip_proto tcp src_port 28162 dst_port 64756 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10872 flower src_mac 02:d8:2d:dd:3c:a2 dst_mac 02:71:b5:56:09:f2 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10873 flower src_mac 02:e9:17:95:a1:0f dst_mac 02:51:74:de:0b:02 src_ip 27.138.5.57 dst_ip 70.246.115.80 ip_proto udp src_port 26185 dst_port 35348 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10874 flower src_mac 02:51:ca:99:eb:5c dst_mac 02:96:74:52:3b:ac vlan_id 700 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10875 flower src_mac 02:3d:65:9d:5c:f8 dst_mac 02:55:48:df:29:7e vlan_id 25 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10876 flower src_mac 02:5f:12:95:a5:68 dst_mac 02:6f:6e:81:99:e7 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10877 flower src_mac 02:02:e4:37:3b:cd dst_mac 02:b6:22:6e:48:87 src_ip 23.122.22.241 dst_ip 83.25.112.162 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:6b:ec:18:82:0e dst_mac 02:6f:83:60:db:f0 vlan_id 2176 vlan_ethtype 0x0800 src_ip 63.41.192.217 dst_ip 44.204.218.42 ip_proto tcp src_port 55293 dst_port 28786 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10879 flower src_mac 02:83:be:34:2d:9a dst_mac 02:c2:ad:e4:7f:df vlan_id 452 vlan_ethtype ipv4 src_ip 45.218.72.38 dst_ip 22.192.31.190 ip_proto tcp src_port 54259 dst_port 18377 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10880 flower src_mac 02:76:7a:26:fc:d3 dst_mac 02:3e:d2:58:f6:f3 vlan_id 1407 vlan_ethtype 0x0800 src_ip 37.78.160.13 dst_ip 40.223.233.118 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10881 flower src_mac 02:a3:9e:2e:b4:2e dst_mac 02:d0:1c:5b:b4:ae vlan_id 3218 vlan_ethtype ipv4 src_ip 54.193.36.194 dst_ip 125.40.40.45 ip_proto udp src_port 30585 dst_port 33937 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10882 flower src_mac 02:8d:0c:9d:16:21 dst_mac 02:c9:91:28:00:42 vlan_id 2180 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:3b:53:3a:95:9d dst_mac 02:2d:fb:ef:05:2b vlan_id 1498 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10884 flower src_mac 02:77:39:5a:47:92 dst_mac 02:66:96:a4:31:98 src_ip 38.68.247.79 dst_ip 17.154.0.66 ip_proto udp src_port 59765 dst_port 33157 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10885 flower src_mac 02:0f:4c:ea:b3:7e dst_mac 02:8f:4b:b8:78:e5 src_ip 104.215.80.42 dst_ip 27.233.252.47 ip_proto tcp src_port 13088 dst_port 40763 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10886 flower src_mac 02:0c:d7:6c:e5:0d dst_mac 02:2c:1d:3f:a8:2c vlan_id 3655 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10887 flower src_mac 02:df:cd:a0:fe:e6 dst_mac 02:a5:df:96:8e:7d src_ip 31.40.179.9 dst_ip 67.22.240.192 ip_proto udp src_port 31012 dst_port 55888 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10888 flower src_mac 02:f9:03:cb:01:3f dst_mac 02:5c:26:f7:5d:30 vlan_id 408 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10889 flower src_mac 02:e5:2f:60:5f:f1 dst_mac 02:a6:7c:fc:57:ec src_ip 117.53.44.167 dst_ip 14.202.222.233 ip_proto udp src_port 44499 dst_port 40071 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10890 flower src_mac 02:58:98:ce:87:d1 dst_mac 02:5c:f4:ce:ce:9e vlan_id 2883 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10891 flower src_mac 02:1d:90:ce:fd:46 dst_mac 02:21:2c:2d:89:3f src_ip 113.97.207.197 dst_ip 78.232.114.99 ip_proto icmp code 92 type 17 action pass && tc filter add dev swp33 ingress protocol ip pref 10892 flower src_mac 02:19:9e:01:ea:6b dst_mac 02:7a:71:9d:dc:09 src_ip 67.241.81.46 dst_ip 59.175.166.17 ip_proto tcp src_port 32343 dst_port 30336 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10893 flower src_mac 02:f3:76:70:be:b8 dst_mac 02:f9:a6:ad:ca:d2 src_ip 115.225.242.231 dst_ip 48.12.173.12 ip_proto tcp src_port 41040 dst_port 63082 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10894 flower src_mac 02:b6:80:a0:82:78 dst_mac 02:2a:bd:86:92:80 vlan_id 3097 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10895 flower src_mac 02:d8:1f:d7:f0:4c dst_mac 02:21:22:69:ad:45 vlan_id 1100 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10896 flower src_mac 02:3b:c8:d2:f6:bf dst_mac 02:91:27:c6:b9:78 src_ip 25.197.28.215 dst_ip 118.195.86.112 ip_proto udp src_port 54852 dst_port 26719 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10897 flower src_mac 02:9d:a9:e2:76:d5 dst_mac 02:d0:f2:41:24:2b vlan_id 3408 vlan_ethtype 0x0800 src_ip 45.255.175.59 dst_ip 45.218.28.172 ip_proto udp src_port 6185 dst_port 24584 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10898 flower src_mac 02:ee:de:6b:19:d3 dst_mac 02:83:9e:44:2c:4e vlan_id 2839 vlan_ethtype ipv4 src_ip 82.60.7.217 dst_ip 86.82.230.127 ip_proto tcp src_port 42961 dst_port 51616 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10899 flower src_mac 02:1a:11:11:a4:62 dst_mac 02:a1:f2:5e:54:de src_ip 121.139.99.39 dst_ip 97.150.81.60 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10900 flower src_mac 02:3e:92:46:61:e8 dst_mac 02:90:74:31:5d:90 vlan_id 3534 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10901 flower src_mac 02:d1:3d:73:fb:09 dst_mac 02:6e:9a:1a:23:33 vlan_id 4093 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10902 flower src_mac 02:27:42:26:00:d7 dst_mac 02:0c:6d:f5:d0:b5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10903 flower src_mac 02:98:77:f7:ed:df dst_mac 02:cf:b6:b2:ec:48 vlan_id 700 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10904 flower src_mac 02:7f:0b:d2:36:97 dst_mac 02:95:2f:7c:26:df action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10905 flower src_mac 02:17:67:51:38:ec dst_mac 02:b1:b4:18:de:a2 vlan_id 3772 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10906 flower src_mac 02:9c:55:7c:00:12 dst_mac 02:fd:bd:e1:a9:0d vlan_id 318 vlan_ethtype ipv4 src_ip 40.72.19.246 dst_ip 23.172.19.88 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10907 flower src_mac 02:f1:1d:bb:4f:39 dst_mac 02:46:fd:81:8e:e8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10908 flower src_mac 02:e3:c8:0b:6c:f3 dst_mac 02:a6:1a:15:53:8a vlan_id 1464 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10909 flower src_mac 02:12:54:05:2d:3f dst_mac 02:65:11:ad:13:0a action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10910 flower src_mac 02:e0:f2:50:a7:5b dst_mac 02:9b:a3:ca:ba:ff src_ip 15.36.57.183 dst_ip 111.153.166.54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10911 flower src_mac 02:1c:e3:6c:d5:83 dst_mac 02:17:b2:ee:28:fa vlan_id 2287 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10912 flower src_mac 02:c3:60:18:e7:7c dst_mac 02:d6:6c:61:a4:30 vlan_id 40 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10913 flower src_mac 02:2a:da:f3:89:c9 dst_mac 02:1c:dd:46:cd:aa src_ip 60.102.252.101 dst_ip 21.170.76.126 ip_proto udp src_port 58226 dst_port 31893 action pass && tc filter add dev swp33 ingress protocol ip pref 10914 flower src_mac 02:0b:b3:8e:09:36 dst_mac 02:7e:59:5c:b2:80 src_ip 125.76.121.146 dst_ip 112.116.7.10 ip_proto tcp src_port 38173 dst_port 19499 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10915 flower src_mac 02:27:bd:bd:63:b4 dst_mac 02:83:46:0f:eb:2d src_ip 59.254.206.193 dst_ip 48.199.69.158 ip_proto tcp src_port 52012 dst_port 8085 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10916 flower src_mac 02:51:40:56:e2:ef dst_mac 02:e2:50:04:7d:6f vlan_id 959 vlan_ethtype ipv4 src_ip 37.227.254.173 dst_ip 75.97.148.52 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:d0:42:cd:1c:05 dst_mac 02:9f:ad:25:88:1b vlan_id 337 vlan_ethtype ip src_ip 18.31.231.201 dst_ip 26.149.222.180 ip_proto tcp src_port 58805 dst_port 11611 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10918 flower src_mac 02:7e:46:76:48:15 dst_mac 02:6b:48:60:51:fe src_ip 46.18.251.233 dst_ip 56.8.8.234 ip_proto udp src_port 54331 dst_port 11010 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10919 flower src_mac 02:b9:56:cb:8e:fc dst_mac 02:9e:76:8b:b1:2b vlan_id 3470 vlan_ethtype ip src_ip 82.196.188.83 dst_ip 88.29.148.30 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10920 flower src_mac 02:04:eb:8c:69:b2 dst_mac 02:ea:c6:dd:0a:93 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10921 flower src_mac 02:52:32:08:09:60 dst_mac 02:0d:f0:73:31:e9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10922 flower src_mac 02:48:07:cd:74:5a dst_mac 02:66:2c:b9:db:f8 vlan_id 1447 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10923 flower src_mac 02:e2:90:07:f3:d6 dst_mac 02:4f:3f:d0:f0:61 vlan_id 2447 vlan_ethtype 0x0800 src_ip 58.8.193.152 dst_ip 124.42.126.110 ip_proto udp src_port 32330 dst_port 65526 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10924 flower src_mac 02:ad:a2:35:f5:12 dst_mac 02:f7:50:04:39:1e src_ip 123.90.198.211 dst_ip 74.98.167.153 ip_proto icmp code 213 type 3 action pass && tc filter add dev swp33 ingress protocol ip pref 10925 flower src_mac 02:9a:bf:ac:30:3c dst_mac 02:4b:91:a0:49:83 src_ip 70.70.29.59 dst_ip 60.119.24.180 ip_proto udp src_port 7293 dst_port 38640 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:2c:5d:a3:a9:92 dst_mac 02:b8:a0:ec:5c:43 vlan_id 1556 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10927 flower src_mac 02:62:05:b8:53:d5 dst_mac 02:da:03:35:b2:ad action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10928 flower src_mac 02:8e:4c:a2:00:76 dst_mac 02:82:84:0f:b3:7c src_ip 95.179.28.201 dst_ip 54.228.187.63 ip_proto udp src_port 49726 dst_port 39102 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10929 flower src_mac 02:57:21:16:64:ce dst_mac 02:0c:c1:81:08:04 src_ip 43.179.184.215 dst_ip 106.129.6.144 ip_proto tcp src_port 13344 dst_port 6732 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10930 flower src_mac 02:f0:fd:6e:cb:a1 dst_mac 02:cd:f8:a1:56:08 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10931 flower src_mac 02:1f:0e:e6:62:64 dst_mac 02:1e:a7:44:3a:e9 vlan_id 1458 vlan_ethtype ip src_ip 26.146.108.168 dst_ip 94.89.78.127 ip_proto udp src_port 6404 dst_port 31072 action trap && tc filter add dev swp33 ingress protocol ip pref 10932 flower src_mac 02:9a:e6:f2:cc:17 dst_mac 02:04:30:8f:67:88 src_ip 103.85.18.177 dst_ip 117.16.245.51 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10933 flower src_mac 02:25:27:e7:cf:65 dst_mac 02:af:b3:d4:ad:c7 vlan_id 2591 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10934 flower src_mac 02:6b:d6:ef:a4:ad dst_mac 02:f0:b4:87:f5:6d vlan_id 3746 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10935 flower src_mac 02:b8:9c:d8:96:b2 dst_mac 02:4c:1f:51:4c:51 src_ip 100.171.58.120 dst_ip 39.92.162.62 ip_proto icmp code 208 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10936 flower src_mac 02:21:00:33:73:71 dst_mac 02:c3:38:f5:1f:30 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10937 flower src_mac 02:f6:ff:7e:75:90 dst_mac 02:25:0b:39:6b:81 vlan_id 1993 vlan_ethtype 0x0800 src_ip 49.65.179.127 dst_ip 24.94.255.15 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10938 flower src_mac 02:b2:a9:a6:06:5c dst_mac 02:36:f7:cf:c2:24 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10939 flower src_mac 02:aa:c4:b7:1e:97 dst_mac 02:fa:76:28:a4:48 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10940 flower src_mac 02:a2:84:22:f3:a0 dst_mac 02:eb:dd:04:9a:b5 vlan_id 1277 vlan_ethtype ip src_ip 65.212.131.70 dst_ip 41.69.203.153 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10941 flower src_mac 02:cc:5e:74:49:10 dst_mac 02:78:0e:6e:78:eb src_ip 125.7.229.133 dst_ip 106.17.229.240 ip_proto icmp code 168 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10942 flower src_mac 02:d2:f7:90:96:91 dst_mac 02:68:70:18:93:4b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10943 flower src_mac 02:54:27:fa:58:43 dst_mac 02:44:d7:15:92:b8 vlan_id 4008 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10944 flower src_mac 02:0a:7f:8f:b8:c5 dst_mac 02:06:11:11:62:ca action trap && tc filter add dev swp33 ingress protocol ip pref 10945 flower src_mac 02:35:79:2d:18:c4 dst_mac 02:98:0a:4e:d9:e6 src_ip 122.254.56.203 dst_ip 88.32.147.212 ip_proto tcp src_port 3367 dst_port 712 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10946 flower src_mac 02:7c:4e:b8:39:ae dst_mac 02:fd:17:91:d0:84 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10947 flower src_mac 02:75:4e:ce:ec:ec dst_mac 02:cb:65:f5:b6:0c src_ip 42.246.67.229 dst_ip 117.237.81.43 ip_proto udp src_port 15102 dst_port 16545 action trap && tc filter add dev swp33 ingress protocol ip pref 10948 flower src_mac 02:2b:7d:92:61:4f dst_mac 02:37:99:f3:af:64 src_ip 65.96.198.213 dst_ip 58.116.142.229 ip_proto tcp src_port 38402 dst_port 18371 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10949 flower src_mac 02:ff:34:ab:53:99 dst_mac 02:94:4d:2d:d8:de vlan_id 3735 vlan_ethtype ip src_ip 57.91.151.73 dst_ip 52.63.6.138 ip_proto tcp src_port 39407 dst_port 59712 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10950 flower src_mac 02:bd:f5:f1:47:82 dst_mac 02:e6:de:78:70:05 vlan_id 1338 vlan_ethtype ipv4 src_ip 24.138.73.46 dst_ip 100.228.246.61 action drop && tc filter add dev swp33 ingress protocol ip pref 10951 flower src_mac 02:e0:d8:71:68:bf dst_mac 02:97:d2:48:88:56 src_ip 19.105.196.158 dst_ip 61.60.10.81 ip_proto udp src_port 10821 dst_port 18683 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10952 flower src_mac 02:48:af:fb:fd:91 dst_mac 02:4d:f5:e9:d8:fa action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10953 flower src_mac 02:bc:37:3d:2b:4c dst_mac 02:6f:88:3f:b3:c8 vlan_id 1130 vlan_ethtype 0x0800 src_ip 21.120.211.237 dst_ip 38.88.213.72 ip_proto udp src_port 33957 dst_port 49443 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10954 flower src_mac 02:58:d2:0a:ab:15 dst_mac 02:29:e1:d0:12:ca src_ip 18.218.151.191 dst_ip 120.204.225.79 ip_proto tcp src_port 19241 dst_port 60809 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10955 flower src_mac 02:a8:68:bf:48:32 dst_mac 02:06:ec:f1:87:4f vlan_id 2158 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10956 flower src_mac 02:b0:95:54:2c:ed dst_mac 02:29:22:bd:70:21 src_ip 108.60.70.88 dst_ip 44.9.211.227 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10957 flower src_mac 02:e0:b9:d5:be:aa dst_mac 02:fd:ee:f1:28:c0 vlan_id 1173 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10958 flower src_mac 02:9e:47:9a:3f:84 dst_mac 02:a4:90:15:9d:0c action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10959 flower src_mac 02:d2:a0:7b:3b:8e dst_mac 02:ee:d4:e0:e8:dd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10960 flower src_mac 02:65:22:90:3f:51 dst_mac 02:ef:ae:4a:66:ed vlan_id 4068 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10961 flower src_mac 02:5d:a4:68:65:4e dst_mac 02:e0:a3:ed:72:0d vlan_id 1631 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10962 flower src_mac 02:59:2d:42:98:5a dst_mac 02:28:c7:54:7e:1d vlan_id 1750 vlan_ethtype ipv4 src_ip 16.181.193.164 dst_ip 23.149.19.163 ip_proto tcp src_port 28169 dst_port 31602 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10963 flower src_mac 02:34:2e:50:62:87 dst_mac 02:16:75:7f:ad:ed vlan_id 292 vlan_ethtype ipv4 src_ip 71.74.229.93 dst_ip 63.91.26.193 ip_proto tcp src_port 11535 dst_port 37240 action trap && tc filter add dev swp33 ingress protocol ip pref 10964 flower src_mac 02:84:e9:bf:02:bb dst_mac 02:db:11:94:56:5b src_ip 68.132.72.98 dst_ip 52.159.248.168 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10965 flower src_mac 02:45:d6:1e:4f:2b dst_mac 02:09:29:ea:d0:56 vlan_id 1349 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10966 flower src_mac 02:72:1e:d3:b6:56 dst_mac 02:22:91:d2:de:78 vlan_id 2646 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10967 flower src_mac 02:6a:28:6f:22:6e dst_mac 02:d4:32:1c:67:f0 vlan_id 3429 vlan_ethtype ip src_ip 106.236.231.196 dst_ip 22.53.149.85 ip_proto udp src_port 14578 dst_port 47059 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10968 flower src_mac 02:ec:54:51:dd:5d dst_mac 02:e9:aa:2a:3a:b1 vlan_id 2435 vlan_ethtype 0x0800 src_ip 90.246.12.119 dst_ip 17.198.196.236 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10969 flower src_mac 02:c7:22:5f:0a:fc dst_mac 02:49:cf:6f:f0:2c src_ip 118.91.86.6 dst_ip 119.242.6.1 ip_proto icmp code 179 type 15 action trap && tc filter add dev swp33 ingress protocol ip pref 10970 flower src_mac 02:23:11:8d:2d:00 dst_mac 02:b4:3f:6b:56:1e src_ip 22.241.156.246 dst_ip 91.204.100.212 ip_proto icmp code 96 type 0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10971 flower src_mac 02:78:97:9a:06:5e dst_mac 02:ee:42:ef:c1:f4 vlan_id 3734 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10972 flower src_mac 02:76:bc:50:4e:63 dst_mac 02:2b:8c:90:91:86 vlan_id 1621 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10973 flower src_mac 02:c4:48:ad:e7:9b dst_mac 02:88:e0:3c:85:b9 src_ip 52.31.151.13 dst_ip 17.194.112.139 ip_proto tcp src_port 56668 dst_port 50898 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10974 flower src_mac 02:49:ae:82:69:c3 dst_mac 02:06:53:77:c5:ca vlan_id 738 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10975 flower src_mac 02:8a:a3:b6:4b:aa dst_mac 02:8f:33:6f:47:1b action drop && tc filter add dev swp33 ingress protocol ip pref 10976 flower src_mac 02:47:34:a1:75:bb dst_mac 02:5d:2a:e0:d9:41 src_ip 53.210.208.245 dst_ip 55.107.149.62 ip_proto icmp code 237 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10977 flower src_mac 02:7e:36:4d:58:40 dst_mac 02:50:27:51:cc:8d vlan_id 3588 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10978 flower src_mac 02:3d:cf:d7:17:62 dst_mac 02:3c:89:08:7b:a5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10979 flower src_mac 02:ef:d1:4b:a2:c5 dst_mac 02:9c:0e:dd:82:17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10980 flower src_mac 02:4d:7a:a2:89:62 dst_mac 02:81:60:b9:ce:64 vlan_id 337 vlan_ethtype 0x0800 src_ip 77.143.56.146 dst_ip 61.191.131.90 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:d3:35:0a:96:38 dst_mac 02:e8:9a:d0:1b:87 vlan_id 1714 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10982 flower src_mac 02:d5:87:2f:73:f5 dst_mac 02:1c:21:a3:7b:32 vlan_id 2473 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10983 flower src_mac 02:3e:ae:84:9b:6d dst_mac 02:e8:2b:81:68:38 src_ip 67.89.41.135 dst_ip 63.33.98.197 ip_proto tcp src_port 20881 dst_port 50832 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10984 flower src_mac 02:83:fa:47:39:25 dst_mac 02:93:0a:10:e2:ea vlan_id 768 vlan_ethtype 0x0800 src_ip 79.30.248.44 dst_ip 46.37.94.179 ip_proto udp src_port 24067 dst_port 13070 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10985 flower src_mac 02:a1:5e:c4:b0:a3 dst_mac 02:b3:da:40:d8:5f src_ip 126.255.85.213 dst_ip 39.120.224.233 ip_proto tcp src_port 347 dst_port 13978 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10986 flower src_mac 02:71:cc:ca:68:2d dst_mac 02:58:87:ef:f4:b1 vlan_id 728 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10987 flower src_mac 02:b6:d2:20:c3:e1 dst_mac 02:47:8a:08:ed:93 vlan_id 2133 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10988 flower src_mac 02:4d:44:63:90:e8 dst_mac 02:47:6b:25:eb:ad action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10989 flower src_mac 02:e8:c6:a8:18:59 dst_mac 02:4b:bf:11:fe:20 vlan_id 672 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10990 flower src_mac 02:46:8c:2e:d9:1b dst_mac 02:15:1e:fa:5e:df src_ip 88.112.216.79 dst_ip 95.113.163.186 ip_proto tcp src_port 46634 dst_port 42345 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10991 flower src_mac 02:90:6b:00:4d:ac dst_mac 02:0a:69:5c:1b:c8 src_ip 27.176.173.162 dst_ip 19.9.65.7 ip_proto udp src_port 1802 dst_port 6129 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10992 flower src_mac 02:b5:a2:7c:63:ea dst_mac 02:3c:8c:33:8f:df vlan_id 3924 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10993 flower src_mac 02:d0:e9:cb:7a:12 dst_mac 02:40:d3:a2:45:2f vlan_id 16 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10994 flower src_mac 02:51:59:34:c3:5c dst_mac 02:1a:24:99:22:4e vlan_id 3884 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10995 flower src_mac 02:14:86:21:a9:96 dst_mac 02:85:b8:19:b9:a6 src_ip 36.225.211.190 dst_ip 69.206.66.50 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10996 flower src_mac 02:cc:18:1d:30:b2 dst_mac 02:01:d3:a7:2b:24 src_ip 41.187.39.16 dst_ip 14.15.114.137 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10997 flower src_mac 02:81:c3:1f:40:95 dst_mac 02:1b:b4:f8:d3:81 src_ip 111.179.79.10 dst_ip 43.73.62.82 ip_proto udp src_port 42631 dst_port 151 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10998 flower src_mac 02:e8:44:6a:85:3a dst_mac 02:08:cd:68:b4:e7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10999 flower src_mac 02:b2:d2:18:ee:7d dst_mac 02:51:8e:ac:aa:b3 vlan_id 1781 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11000 flower src_mac 02:8b:7b:1e:03:e8 dst_mac 02:e3:f5:87:0c:bb vlan_id 1163 vlan_ethtype ip src_ip 106.141.188.61 dst_ip 54.60.158.201 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11001 flower src_mac 02:8f:8c:ad:63:33 dst_mac 02:2e:3f:1a:e2:1a src_ip 76.254.187.236 dst_ip 35.125.202.237 ip_proto icmp code 89 type 11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11002 flower src_mac 02:07:ab:b2:cf:38 dst_mac 02:13:50:c2:4c:74 vlan_id 567 vlan_ethtype ipv4 src_ip 44.192.74.50 dst_ip 55.41.198.132 ip_proto udp src_port 20900 dst_port 41718 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11003 flower src_mac 02:fa:87:88:c4:4b dst_mac 02:46:39:71:94:c1 vlan_id 209 vlan_ethtype ip src_ip 31.7.139.231 dst_ip 18.167.217.239 action trap && tc filter add dev swp33 ingress protocol ip pref 11004 flower src_mac 02:13:a0:66:64:48 dst_mac 02:80:56:a3:11:71 src_ip 27.231.137.11 dst_ip 43.34.164.150 ip_proto udp src_port 31341 dst_port 34979 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11005 flower src_mac 02:ed:97:1a:ad:b2 dst_mac 02:52:f6:b2:5d:71 vlan_id 457 vlan_ethtype ip src_ip 57.188.196.240 dst_ip 90.81.249.192 ip_proto udp src_port 31644 dst_port 20204 action drop && tc filter add dev swp33 ingress protocol ip pref 11006 flower src_mac 02:c1:7a:95:0e:94 dst_mac 02:95:00:5b:8c:b1 src_ip 33.145.156.4 dst_ip 57.180.135.236 ip_proto udp src_port 5509 dst_port 43469 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11007 flower src_mac 02:1b:a9:8a:44:bf dst_mac 02:95:79:ba:05:9f vlan_id 2635 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11008 flower src_mac 02:5b:19:96:9b:0e dst_mac 02:a3:de:38:b2:85 src_ip 82.133.212.40 dst_ip 30.195.9.116 ip_proto udp src_port 7179 dst_port 16039 action drop && tc filter add dev swp33 ingress protocol ip pref 11009 flower src_mac 02:d9:ac:bf:c9:7f dst_mac 02:5b:d4:aa:7f:c3 src_ip 37.247.197.192 dst_ip 126.223.44.71 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11010 flower src_mac 02:eb:b7:f3:04:74 dst_mac 02:9a:36:1d:05:db vlan_id 1298 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11011 flower src_mac 02:55:29:e4:16:13 dst_mac 02:37:bc:99:0a:05 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11012 flower src_mac 02:78:c0:35:43:de dst_mac 02:b9:a0:71:4d:37 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11013 flower src_mac 02:a1:63:c0:50:c2 dst_mac 02:38:25:16:01:e6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11014 flower src_mac 02:69:8a:d5:0f:a3 dst_mac 02:66:cc:8d:05:b2 vlan_id 3624 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11015 flower src_mac 02:38:db:f7:5c:d8 dst_mac 02:18:ae:a1:c9:7d action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11016 flower src_mac 02:bd:8f:02:69:03 dst_mac 02:5f:70:a5:48:30 src_ip 80.184.186.118 dst_ip 124.49.96.239 ip_proto udp src_port 54049 dst_port 36361 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11017 flower src_mac 02:1e:8a:b1:92:4b dst_mac 02:02:fa:39:75:8b src_ip 30.172.136.59 dst_ip 103.155.89.3 ip_proto tcp src_port 63621 dst_port 63537 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11018 flower src_mac 02:be:99:ae:e9:b6 dst_mac 02:62:6e:42:60:d9 src_ip 122.235.176.84 dst_ip 85.10.234.16 ip_proto tcp src_port 48837 dst_port 24189 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11019 flower src_mac 02:93:53:80:97:6b dst_mac 02:ee:14:28:a0:64 vlan_id 1657 vlan_ethtype ip src_ip 21.203.75.37 dst_ip 40.8.122.75 ip_proto udp src_port 26839 dst_port 31348 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11020 flower src_mac 02:71:cd:76:2c:c9 dst_mac 02:8f:6c:69:d7:57 vlan_id 205 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11021 flower src_mac 02:84:2d:1c:84:f6 dst_mac 02:ed:9b:5c:98:80 src_ip 38.227.83.57 dst_ip 44.139.215.32 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11022 flower src_mac 02:2f:d6:b0:03:2f dst_mac 02:57:be:37:09:e3 vlan_id 2388 vlan_ethtype 0x0800 src_ip 41.70.102.152 dst_ip 114.225.130.117 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11023 flower src_mac 02:b0:45:78:00:39 dst_mac 02:a0:7e:3f:02:e2 src_ip 93.177.80.30 dst_ip 102.50.22.20 ip_proto tcp src_port 41483 dst_port 5005 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11024 flower src_mac 02:8a:bd:2e:f9:d1 dst_mac 02:7f:55:1a:dc:b1 vlan_id 1145 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11025 flower src_mac 02:aa:15:13:ea:65 dst_mac 02:67:4a:71:34:c1 vlan_id 3997 vlan_ethtype 0x0800 src_ip 31.194.114.121 dst_ip 46.218.74.189 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11026 flower src_mac 02:0e:ba:0f:0d:9b dst_mac 02:f8:df:30:c1:67 src_ip 101.14.238.219 dst_ip 50.74.158.112 ip_proto icmp code 126 type 15 action drop && tc filter add dev swp33 ingress protocol ip pref 11027 flower src_mac 02:46:d9:e9:e7:8d dst_mac 02:50:a7:84:db:b2 src_ip 60.4.48.172 dst_ip 99.165.39.188 ip_proto icmp code 71 type 0 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11028 flower src_mac 02:df:0e:25:70:62 dst_mac 02:5f:47:13:71:8d src_ip 56.171.22.183 dst_ip 32.99.221.228 ip_proto tcp src_port 37519 dst_port 31747 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11029 flower src_mac 02:f4:95:36:83:bf dst_mac 02:48:5f:c9:2b:7b vlan_id 1362 vlan_ethtype ip src_ip 39.26.149.99 dst_ip 21.237.137.98 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11030 flower src_mac 02:9d:28:66:7a:0b dst_mac 02:5c:bf:8d:28:f0 src_ip 70.50.43.247 dst_ip 30.239.189.179 ip_proto tcp src_port 59526 dst_port 46955 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11031 flower src_mac 02:f0:78:e1:f2:ae dst_mac 02:68:e9:4d:f1:dc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11032 flower src_mac 02:cd:fd:85:de:b3 dst_mac 02:e2:a5:d8:93:0e vlan_id 238 vlan_ethtype ipv4 src_ip 12.51.22.18 dst_ip 108.205.74.62 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11033 flower src_mac 02:2d:44:25:aa:23 dst_mac 02:21:57:28:b1:83 vlan_id 2616 vlan_ethtype ipv4 src_ip 40.53.164.206 dst_ip 126.129.231.234 ip_proto tcp src_port 36489 dst_port 31930 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11034 flower src_mac 02:5b:6e:54:5c:c0 dst_mac 02:8d:a5:3c:a8:0d src_ip 113.146.159.17 dst_ip 97.22.230.237 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11035 flower src_mac 02:7e:67:63:a2:57 dst_mac 02:9a:64:15:b4:39 src_ip 60.53.163.51 dst_ip 91.172.92.82 ip_proto udp src_port 50708 dst_port 36825 action drop && tc filter add dev swp33 ingress protocol ip pref 11036 flower src_mac 02:a0:fa:03:86:86 dst_mac 02:89:80:2e:23:1f src_ip 41.228.223.94 dst_ip 105.174.101.216 ip_proto udp src_port 61495 dst_port 58877 action trap && tc filter add dev swp33 ingress protocol ip pref 11037 flower src_mac 02:e4:96:54:2c:5e dst_mac 02:a1:5e:59:73:0d src_ip 61.160.16.161 dst_ip 98.251.250.93 ip_proto udp src_port 23085 dst_port 18089 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11038 flower src_mac 02:57:58:a9:1c:06 dst_mac 02:f1:15:d1:e3:1c vlan_id 3845 vlan_ethtype 0x0800 src_ip 41.106.43.37 dst_ip 124.243.54.175 ip_proto udp src_port 16829 dst_port 55420 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11039 flower src_mac 02:41:a2:ab:f0:5f dst_mac 02:1a:e6:57:17:4a src_ip 76.202.74.156 dst_ip 116.77.28.147 ip_proto tcp src_port 43857 dst_port 15504 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11040 flower src_mac 02:29:13:7e:c1:06 dst_mac 02:b7:08:d1:c9:5e action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11041 flower src_mac 02:bd:f2:3f:b6:f8 dst_mac 02:07:ed:bf:3d:05 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11042 flower src_mac 02:87:f2:2d:42:eb dst_mac 02:ef:18:6a:09:f0 vlan_id 1402 vlan_ethtype ipv4 src_ip 58.157.97.200 dst_ip 20.37.186.30 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11043 flower src_mac 02:c8:f4:35:e1:0d dst_mac 02:06:34:62:83:4a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11044 flower src_mac 02:90:a6:60:9f:07 dst_mac 02:c4:b7:1d:d7:7c vlan_id 3775 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11045 flower src_mac 02:17:9f:47:30:2a dst_mac 02:23:b6:07:a2:5f src_ip 110.154.73.244 dst_ip 23.29.2.166 ip_proto udp src_port 61367 dst_port 41068 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11046 flower src_mac 02:43:50:db:79:19 dst_mac 02:8b:3d:7e:a0:28 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11047 flower src_mac 02:82:33:7b:10:88 dst_mac 02:6b:65:c5:58:c2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:e6:5f:5b:1a:82 dst_mac 02:7e:cd:5d:0d:91 vlan_id 2015 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11049 flower src_mac 02:2a:bf:0d:6f:12 dst_mac 02:59:5c:a0:37:55 src_ip 64.89.100.58 dst_ip 111.7.198.113 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11050 flower src_mac 02:97:b1:5c:1a:5b dst_mac 02:84:1b:d8:0c:1d vlan_id 1145 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11051 flower src_mac 02:9b:b0:64:34:c6 dst_mac 02:f0:c1:b1:87:44 vlan_id 1410 vlan_ethtype 0x0800 src_ip 83.100.50.149 dst_ip 29.16.255.107 ip_proto tcp src_port 53715 dst_port 21160 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11052 flower src_mac 02:83:cc:2a:b3:ca dst_mac 02:a8:78:30:d6:f2 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11053 flower src_mac 02:1f:14:30:fd:dc dst_mac 02:32:df:d1:50:40 src_ip 107.130.13.243 dst_ip 52.44.15.237 ip_proto udp src_port 45927 dst_port 26573 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11054 flower src_mac 02:31:80:5c:39:a3 dst_mac 02:65:d0:7d:ae:0e vlan_id 1639 vlan_ethtype ipv4 src_ip 42.61.19.94 dst_ip 11.177.173.216 ip_proto udp src_port 35520 dst_port 7673 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11055 flower src_mac 02:ab:1b:9e:b1:05 dst_mac 02:1d:f5:6e:32:78 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:2e:f3:75:60:3b dst_mac 02:2f:09:71:de:f0 vlan_id 2511 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11057 flower src_mac 02:43:da:b3:bf:d4 dst_mac 02:86:6b:90:15:ad vlan_id 1696 vlan_ethtype ipv4 src_ip 20.178.182.104 dst_ip 93.69.128.118 ip_proto udp src_port 59622 dst_port 55942 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11058 flower src_mac 02:ec:08:8a:93:6a dst_mac 02:92:b3:f3:f6:1d src_ip 48.195.2.187 dst_ip 74.16.132.3 action pass && tc filter add dev swp33 ingress protocol ip pref 11059 flower src_mac 02:2f:cc:c9:ba:ce dst_mac 02:2c:9f:5e:7f:47 src_ip 65.146.185.36 dst_ip 39.17.65.92 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11060 flower src_mac 02:8d:f8:69:7c:d0 dst_mac 02:0f:ce:2b:0c:94 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11061 flower src_mac 02:30:ab:bc:1e:07 dst_mac 02:b9:47:7d:50:3c vlan_id 1220 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11062 flower src_mac 02:d2:95:ce:c5:c6 dst_mac 02:5f:58:f0:20:ea src_ip 92.44.167.165 dst_ip 81.20.131.214 ip_proto udp src_port 27743 dst_port 62272 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11063 flower src_mac 02:bb:87:c6:fe:14 dst_mac 02:a1:0e:38:93:96 action drop && tc filter add dev swp33 ingress protocol ip pref 11064 flower src_mac 02:e6:b7:e1:68:9c dst_mac 02:e0:d4:51:98:a7 src_ip 27.163.2.52 dst_ip 49.118.19.31 ip_proto tcp src_port 8713 dst_port 2714 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11065 flower src_mac 02:8d:6e:cc:52:92 dst_mac 02:03:01:1f:bb:2b vlan_id 567 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11066 flower src_mac 02:46:4b:06:71:c0 dst_mac 02:a2:1d:dd:2d:b6 vlan_id 1597 vlan_ethtype 0x0800 src_ip 71.19.184.164 dst_ip 67.97.122.158 ip_proto udp src_port 48923 dst_port 46455 action drop && tc filter add dev swp33 ingress protocol ip pref 11067 flower src_mac 02:e6:7c:41:51:db dst_mac 02:d1:7f:e5:78:63 src_ip 116.208.102.84 dst_ip 67.241.153.235 ip_proto icmp code 166 type 18 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11068 flower src_mac 02:75:4d:b5:01:19 dst_mac 02:67:19:0c:92:b8 src_ip 105.209.62.7 dst_ip 49.161.67.196 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11069 flower src_mac 02:a8:26:43:80:5a dst_mac 02:36:84:28:16:a5 vlan_id 3106 vlan_ethtype ipv4 src_ip 108.228.216.197 dst_ip 81.31.113.141 ip_proto tcp src_port 54796 dst_port 25979 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11070 flower src_mac 02:c7:06:fe:ed:34 dst_mac 02:e1:51:99:d9:8e vlan_id 3186 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11071 flower src_mac 02:f7:c1:46:78:f5 dst_mac 02:93:17:ce:35:fd action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11072 flower src_mac 02:82:09:63:61:be dst_mac 02:e5:40:33:06:bb src_ip 66.176.222.43 dst_ip 126.236.127.188 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11073 flower src_mac 02:7f:a3:f7:43:67 dst_mac 02:8f:a7:6e:45:1a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11074 flower src_mac 02:d7:ef:8f:f6:07 dst_mac 02:66:25:39:ad:b4 vlan_id 628 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11075 flower src_mac 02:0f:25:6a:80:37 dst_mac 02:a6:fa:f7:42:8c src_ip 91.175.101.94 dst_ip 17.199.143.88 ip_proto tcp src_port 20088 dst_port 21462 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11076 flower src_mac 02:b1:4c:93:86:18 dst_mac 02:3b:bc:aa:57:d9 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11077 flower src_mac 02:e3:ec:f0:01:bb dst_mac 02:bd:5f:a0:09:12 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11078 flower src_mac 02:ec:12:96:bb:0e dst_mac 02:76:39:bf:05:11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11079 flower src_mac 02:cf:96:bf:78:38 dst_mac 02:cd:3b:f1:bb:36 vlan_id 2214 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11080 flower src_mac 02:ee:d1:ad:e3:e1 dst_mac 02:14:0b:1c:01:6d src_ip 73.97.204.236 dst_ip 120.213.57.62 ip_proto tcp src_port 11252 dst_port 57093 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11081 flower src_mac 02:ff:96:fa:c3:c1 dst_mac 02:fd:60:06:9d:14 vlan_id 2577 vlan_ethtype ipv4 src_ip 112.129.175.98 dst_ip 113.9.235.53 ip_proto udp src_port 603 dst_port 19340 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11082 flower src_mac 02:8c:a8:b1:d4:aa dst_mac 02:3b:7b:9a:40:1c vlan_id 312 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11083 flower src_mac 02:c4:c2:1c:6b:01 dst_mac 02:06:ef:55:12:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11084 flower src_mac 02:c9:b3:60:bc:39 dst_mac 02:bd:14:1f:77:61 vlan_id 1878 vlan_ethtype 0x0800 src_ip 121.50.64.173 dst_ip 27.118.112.195 ip_proto tcp src_port 19692 dst_port 10694 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11085 flower src_mac 02:ed:75:42:cc:e4 dst_mac 02:42:c1:0b:96:88 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11086 flower src_mac 02:09:60:45:d3:04 dst_mac 02:b7:21:c3:48:8c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11087 flower src_mac 02:4f:c1:a0:ca:7e dst_mac 02:76:51:65:a3:a6 vlan_id 1842 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11088 flower src_mac 02:4b:b4:88:c0:20 dst_mac 02:32:52:49:d5:86 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11089 flower src_mac 02:05:22:9c:19:9b dst_mac 02:8c:8d:ba:a6:d6 vlan_id 1690 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11090 flower src_mac 02:89:33:6f:7d:32 dst_mac 02:67:6e:38:17:6b action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11091 flower src_mac 02:78:43:ca:c0:bc dst_mac 02:b8:8b:46:2d:f1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11092 flower src_mac 02:64:02:50:77:8a dst_mac 02:e7:91:c0:d4:0c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11093 flower src_mac 02:64:f2:32:76:9c dst_mac 02:1e:49:b6:5c:69 vlan_id 688 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11094 flower src_mac 02:39:59:67:c6:76 dst_mac 02:74:97:f7:f0:22 vlan_id 1806 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11095 flower src_mac 02:d6:62:07:b1:8b dst_mac 02:e2:43:af:3b:cd vlan_id 3696 vlan_ethtype 0x0800 src_ip 106.253.145.30 dst_ip 84.169.106.18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:1e:26:08:1a:be dst_mac 02:b6:3b:40:22:88 vlan_id 3381 vlan_ethtype 0x0800 src_ip 28.214.198.177 dst_ip 66.10.96.156 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11097 flower src_mac 02:a2:80:08:5c:c8 dst_mac 02:fb:5a:1f:40:41 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11098 flower src_mac 02:da:db:15:b8:74 dst_mac 02:80:ca:d1:5e:bf vlan_id 1450 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11099 flower src_mac 02:da:03:4d:c6:1b dst_mac 02:6d:11:6a:9f:73 src_ip 23.16.246.246 dst_ip 75.152.144.54 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11100 flower src_mac 02:8d:5f:d9:b1:97 dst_mac 02:29:05:04:53:3f vlan_id 2476 vlan_ethtype 0x0800 src_ip 62.129.232.67 dst_ip 29.161.212.173 ip_proto tcp src_port 36597 dst_port 2518 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11101 flower src_mac 02:b7:44:0b:fd:01 dst_mac 02:97:5e:8a:0c:83 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11102 flower src_mac 02:73:50:8d:f6:5e dst_mac 02:d6:b0:94:06:48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11103 flower src_mac 02:9e:5a:49:57:e1 dst_mac 02:bd:83:fa:57:50 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11104 flower src_mac 02:88:7b:10:40:2f dst_mac 02:ba:cb:7b:b6:a8 vlan_id 3266 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11105 flower src_mac 02:55:5f:fb:d9:7f dst_mac 02:c9:d5:5a:a1:4e vlan_id 1414 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11106 flower src_mac 02:37:2d:c4:cc:2d dst_mac 02:0c:3a:3e:b8:e3 vlan_id 2258 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11107 flower src_mac 02:03:49:7e:c2:b5 dst_mac 02:9f:a0:66:3f:1c vlan_id 3034 vlan_ethtype ipv4 src_ip 116.142.41.178 dst_ip 21.2.239.136 ip_proto udp src_port 4441 dst_port 38010 action trap && tc filter add dev swp33 ingress protocol ip pref 11108 flower src_mac 02:fd:e8:27:ea:93 dst_mac 02:fb:9e:de:bc:85 src_ip 77.171.88.170 dst_ip 37.106.201.27 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11109 flower src_mac 02:5b:bc:c3:3d:91 dst_mac 02:3e:52:2d:ab:d2 src_ip 41.111.55.62 dst_ip 77.254.155.7 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11110 flower src_mac 02:02:71:97:75:96 dst_mac 02:9d:f0:f5:cb:cc src_ip 74.249.15.213 dst_ip 113.46.155.92 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11111 flower src_mac 02:b6:63:6e:69:4b dst_mac 02:5a:e0:eb:3a:f9 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11112 flower src_mac 02:b9:28:ca:a0:2b dst_mac 02:d6:55:1a:21:0c src_ip 78.37.176.187 dst_ip 71.96.214.167 ip_proto udp src_port 32675 dst_port 16843 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11113 flower src_mac 02:eb:f0:23:ca:11 dst_mac 02:f2:15:00:c2:90 vlan_id 1367 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11114 flower src_mac 02:5f:40:81:6e:86 dst_mac 02:44:13:52:02:4b vlan_id 3105 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11115 flower src_mac 02:1d:98:59:4b:98 dst_mac 02:c4:92:ab:01:59 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11116 flower src_mac 02:d6:93:06:92:51 dst_mac 02:ab:4f:bc:81:9e vlan_id 3469 vlan_ethtype ipv4 src_ip 45.28.73.166 dst_ip 67.122.151.28 ip_proto udp src_port 39931 dst_port 23252 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11117 flower src_mac 02:96:07:fd:1f:61 dst_mac 02:c1:10:5f:3e:55 vlan_id 1001 vlan_ethtype ipv4 src_ip 72.214.5.139 dst_ip 39.55.227.186 action trap && tc filter add dev swp33 ingress protocol ip pref 11118 flower src_mac 02:3a:70:93:37:1c dst_mac 02:4d:30:d5:9c:e6 src_ip 14.172.94.134 dst_ip 56.201.199.11 ip_proto tcp src_port 49020 dst_port 5883 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11119 flower src_mac 02:55:ac:17:33:64 dst_mac 02:c0:d1:73:d6:05 vlan_id 3134 vlan_ethtype ip src_ip 70.231.70.50 dst_ip 86.131.95.66 ip_proto udp src_port 22695 dst_port 35782 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11120 flower src_mac 02:0f:ac:2a:6b:8e dst_mac 02:ae:7f:ce:cb:d8 vlan_id 3234 vlan_ethtype ipv4 src_ip 69.192.172.60 dst_ip 113.206.94.147 ip_proto udp src_port 34364 dst_port 13398 action pass && tc filter add dev swp33 ingress protocol ip pref 11121 flower src_mac 02:a5:bc:1e:d8:70 dst_mac 02:3d:a8:3f:b3:57 src_ip 65.175.81.201 dst_ip 64.57.254.11 ip_proto tcp src_port 34055 dst_port 8966 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11122 flower src_mac 02:7f:9d:52:12:84 dst_mac 02:c5:5a:1f:83:06 src_ip 38.242.78.147 dst_ip 81.26.68.125 ip_proto udp src_port 27974 dst_port 60306 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11123 flower src_mac 02:d0:56:ab:3c:ec dst_mac 02:45:00:53:fa:1a vlan_id 573 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11124 flower src_mac 02:dd:ea:a0:e5:ef dst_mac 02:c3:08:a8:5f:7b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11125 flower src_mac 02:d2:7d:4b:d9:ab dst_mac 02:a1:f0:63:b1:06 vlan_id 3736 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11126 flower src_mac 02:e8:b9:be:d6:13 dst_mac 02:af:08:54:5d:cf vlan_id 1731 vlan_ethtype 0x0800 src_ip 37.99.25.41 dst_ip 48.41.179.171 ip_proto tcp src_port 41558 dst_port 19998 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11127 flower src_mac 02:eb:29:af:68:24 dst_mac 02:9f:7a:61:cb:18 vlan_id 982 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11128 flower src_mac 02:24:38:b9:f9:46 dst_mac 02:3a:19:6f:21:2e vlan_id 2622 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11129 flower src_mac 02:43:0e:9d:cc:49 dst_mac 02:a6:3e:46:ea:94 vlan_id 1661 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11130 flower src_mac 02:37:6a:4a:5d:3f dst_mac 02:c9:a7:22:f9:56 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11131 flower src_mac 02:4b:69:6a:b7:6c dst_mac 02:dd:b7:1c:a7:5d src_ip 32.211.178.32 dst_ip 41.200.154.130 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11132 flower src_mac 02:9d:fa:38:c8:5d dst_mac 02:23:ca:7c:51:c6 vlan_id 2315 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11133 flower src_mac 02:46:ea:39:80:e0 dst_mac 02:5d:f1:7b:ff:dc vlan_id 3456 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11134 flower src_mac 02:66:c5:ac:6a:ed dst_mac 02:17:5e:6c:8b:3f src_ip 98.124.189.198 dst_ip 116.113.212.178 ip_proto icmp code 45 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11135 flower src_mac 02:9d:97:f8:24:6e dst_mac 02:10:36:a2:25:f2 vlan_id 2788 vlan_ethtype ip src_ip 44.54.91.162 dst_ip 73.66.232.113 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11136 flower src_mac 02:70:5a:58:1a:47 dst_mac 02:5e:11:fd:26:ee src_ip 11.199.218.220 dst_ip 101.111.113.168 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11137 flower src_mac 02:8e:c7:38:10:27 dst_mac 02:8a:e1:33:fd:a5 vlan_id 815 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11138 flower src_mac 02:07:93:fc:12:3a dst_mac 02:ee:fa:1e:a8:48 vlan_id 3592 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11139 flower src_mac 02:01:f1:de:d7:bd dst_mac 02:69:43:92:b7:48 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11140 flower src_mac 02:c4:3e:6b:78:48 dst_mac 02:b6:c7:55:d6:8d vlan_id 1873 vlan_ethtype ip src_ip 101.187.154.163 dst_ip 75.60.105.159 ip_proto tcp src_port 55140 dst_port 37915 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11141 flower src_mac 02:d4:7c:2c:f9:55 dst_mac 02:8c:c6:90:7b:a4 vlan_id 3228 vlan_ethtype 0x0800 src_ip 86.98.222.140 dst_ip 104.143.143.144 ip_proto tcp src_port 5133 dst_port 7363 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11142 flower src_mac 02:f7:de:d5:cb:7f dst_mac 02:20:b9:35:4f:d9 src_ip 13.43.213.78 dst_ip 122.169.254.190 ip_proto tcp src_port 12767 dst_port 60547 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11143 flower src_mac 02:b5:50:be:b8:9c dst_mac 02:35:45:38:64:64 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11144 flower src_mac 02:a3:f6:fb:58:0e dst_mac 02:55:da:05:ec:a2 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11145 flower src_mac 02:0f:41:63:28:ce dst_mac 02:90:b5:d7:57:66 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11146 flower src_mac 02:16:9d:25:e9:fe dst_mac 02:ea:b2:29:e3:00 vlan_id 1669 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 11147 flower src_mac 02:95:90:c8:1f:da dst_mac 02:73:16:f8:49:99 src_ip 95.252.228.143 dst_ip 75.170.57.8 ip_proto icmp code 240 type 18 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11148 flower src_mac 02:c5:3a:99:38:da dst_mac 02:e9:ec:33:6f:03 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11149 flower src_mac 02:d2:3a:61:35:24 dst_mac 02:fa:20:bd:8e:f4 vlan_id 2935 vlan_ethtype 0x0800 src_ip 31.98.69.106 dst_ip 33.37.122.157 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11150 flower src_mac 02:a0:9c:97:ef:72 dst_mac 02:92:d2:31:2a:6c vlan_id 802 vlan_ethtype 0x0800 src_ip 76.174.240.125 dst_ip 13.249.8.107 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11151 flower src_mac 02:8e:04:b6:82:43 dst_mac 02:9f:2d:f3:2e:61 vlan_id 3042 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11152 flower src_mac 02:80:45:00:50:43 dst_mac 02:cf:15:31:bb:8b vlan_id 3264 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11153 flower src_mac 02:65:75:f3:8b:cd dst_mac 02:f2:cf:16:7d:1b vlan_id 2316 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11154 flower src_mac 02:f5:07:17:44:ed dst_mac 02:95:fc:0e:f8:38 src_ip 54.153.154.89 dst_ip 43.97.233.57 ip_proto udp src_port 35215 dst_port 54052 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11155 flower src_mac 02:f2:3a:1d:01:80 dst_mac 02:14:76:67:5c:ff vlan_id 2141 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11156 flower src_mac 02:24:17:c8:c9:35 dst_mac 02:85:38:7b:82:72 vlan_id 3094 vlan_ethtype ip src_ip 41.166.118.152 dst_ip 33.28.145.146 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11157 flower src_mac 02:b5:64:62:46:65 dst_mac 02:2f:bb:5f:0c:5b vlan_id 545 vlan_ethtype 0x0800 src_ip 39.248.210.205 dst_ip 36.81.106.20 action pass && tc filter add dev swp33 ingress protocol ip pref 11158 flower src_mac 02:4d:f1:78:4e:d7 dst_mac 02:e9:dc:0a:cb:5b src_ip 107.63.216.237 dst_ip 34.17.85.215 ip_proto udp src_port 50573 dst_port 52692 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11159 flower src_mac 02:38:40:f4:ab:11 dst_mac 02:9b:85:b8:91:9c vlan_id 3632 vlan_ethtype ip src_ip 120.176.248.243 dst_ip 74.244.222.21 ip_proto tcp src_port 49913 dst_port 36344 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11160 flower src_mac 02:d8:58:7d:57:1e dst_mac 02:24:e7:78:72:8f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11161 flower src_mac 02:c3:f3:03:2a:89 dst_mac 02:2d:36:95:38:6a vlan_id 2362 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11162 flower src_mac 02:f6:d0:db:ae:ef dst_mac 02:06:cc:56:ab:5e vlan_id 677 vlan_ethtype ip src_ip 93.81.66.30 dst_ip 96.212.120.53 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11163 flower src_mac 02:11:66:39:50:93 dst_mac 02:14:bb:cf:27:2a vlan_id 2934 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11164 flower src_mac 02:8f:17:2b:3b:6f dst_mac 02:96:82:82:10:c9 src_ip 114.227.172.7 dst_ip 74.234.77.181 ip_proto icmp code 181 type 0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11165 flower src_mac 02:d7:f4:11:21:95 dst_mac 02:73:99:c9:eb:af vlan_id 2233 vlan_ethtype 0x0800 src_ip 97.56.53.110 dst_ip 35.138.48.7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:86:bd:e6:fb:f8 dst_mac 02:9e:50:0f:21:66 vlan_id 2482 vlan_ethtype 0x0800 src_ip 102.1.107.152 dst_ip 26.218.36.129 ip_proto tcp src_port 24158 dst_port 57486 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11167 flower src_mac 02:6d:c4:78:c6:c9 dst_mac 02:10:9f:0a:dc:36 src_ip 21.192.189.213 dst_ip 123.118.206.119 ip_proto tcp src_port 44835 dst_port 62848 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11168 flower src_mac 02:87:35:e4:ef:64 dst_mac 02:66:70:6d:d7:75 src_ip 73.172.22.245 dst_ip 95.248.3.6 ip_proto icmp code 106 type 16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11169 flower src_mac 02:25:9b:1b:39:fb dst_mac 02:6c:13:ff:c3:47 src_ip 47.156.182.119 dst_ip 44.34.25.232 ip_proto tcp src_port 10940 dst_port 38360 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11170 flower src_mac 02:73:54:81:55:f6 dst_mac 02:35:e4:65:42:71 src_ip 41.219.188.197 dst_ip 95.63.40.186 ip_proto udp src_port 27935 dst_port 2295 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11171 flower src_mac 02:ca:1a:34:d2:7e dst_mac 02:e0:f8:18:25:0a vlan_id 3871 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11172 flower src_mac 02:52:81:4f:1c:2e dst_mac 02:ab:60:41:7b:ad vlan_id 1505 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11173 flower src_mac 02:e5:63:8a:9c:38 dst_mac 02:50:cb:1f:2d:87 vlan_id 3791 vlan_ethtype ipv4 src_ip 85.199.222.89 dst_ip 92.183.96.153 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11174 flower src_mac 02:d5:e4:a6:6f:ec dst_mac 02:ce:e0:c9:2a:09 action trap && tc filter add dev swp33 ingress protocol ip pref 11175 flower src_mac 02:c9:6d:f9:27:eb dst_mac 02:15:39:3a:65:e9 src_ip 116.170.49.229 dst_ip 111.86.215.119 ip_proto udp src_port 48165 dst_port 32336 action drop && tc filter add dev swp33 ingress protocol ip pref 11176 flower src_mac 02:69:df:3b:13:2c dst_mac 02:59:87:33:85:3e src_ip 54.89.101.96 dst_ip 37.17.214.106 ip_proto udp src_port 41405 dst_port 2201 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11177 flower src_mac 02:bf:a0:a4:71:cf dst_mac 02:50:e3:44:0d:d1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11178 flower src_mac 02:1d:98:50:f4:4a dst_mac 02:d0:6f:76:f0:da vlan_id 428 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11179 flower src_mac 02:fa:ab:75:76:b5 dst_mac 02:21:75:1f:89:29 vlan_id 3810 vlan_ethtype ipv4 src_ip 52.147.120.161 dst_ip 72.59.72.236 ip_proto tcp src_port 35845 dst_port 18824 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11180 flower src_mac 02:bc:d1:b0:7a:22 dst_mac 02:6d:eb:c5:ee:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11181 flower src_mac 02:16:ed:92:8b:fa dst_mac 02:44:3d:8f:ad:d9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11182 flower src_mac 02:a5:b2:16:c6:d4 dst_mac 02:cd:81:ce:c1:b1 vlan_id 1199 vlan_ethtype ipv4 src_ip 82.205.143.214 dst_ip 64.242.22.119 ip_proto udp src_port 6958 dst_port 10929 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11183 flower src_mac 02:6b:de:64:0b:33 dst_mac 02:63:9b:5b:06:8e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11184 flower src_mac 02:a6:4f:c0:af:05 dst_mac 02:67:bc:e5:9e:6c vlan_id 4017 vlan_ethtype ip src_ip 55.124.78.59 dst_ip 86.67.84.221 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11185 flower src_mac 02:e4:9f:b4:14:3e dst_mac 02:ac:dd:4f:00:dd vlan_id 1931 vlan_ethtype ipv4 src_ip 66.72.152.230 dst_ip 22.195.15.216 ip_proto tcp src_port 17957 dst_port 44141 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11186 flower src_mac 02:86:a2:52:23:55 dst_mac 02:b2:e2:93:db:e7 vlan_id 2543 vlan_ethtype 0x0800 src_ip 107.28.253.63 dst_ip 71.161.129.5 ip_proto tcp src_port 20174 dst_port 47691 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11187 flower src_mac 02:d6:9d:23:16:e5 dst_mac 02:68:e9:40:4b:a4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11188 flower src_mac 02:d7:f8:0f:6f:c2 dst_mac 02:6f:a5:de:58:87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11189 flower src_mac 02:6e:f6:f2:2a:dd dst_mac 02:7d:d8:31:f2:67 vlan_id 3299 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11190 flower src_mac 02:bb:f8:2e:4e:d4 dst_mac 02:3e:d5:9c:16:4c src_ip 41.229.45.177 dst_ip 95.73.30.36 ip_proto icmp code 46 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11191 flower src_mac 02:99:0c:14:e7:2a dst_mac 02:9f:01:1e:9d:e2 vlan_id 2444 vlan_ethtype ipv4 src_ip 53.42.160.153 dst_ip 38.50.49.7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11192 flower src_mac 02:11:3e:e9:b3:13 dst_mac 02:34:f6:02:6f:60 vlan_id 3011 vlan_ethtype ipv4 src_ip 102.255.157.219 dst_ip 95.214.113.37 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11193 flower src_mac 02:b7:fb:a8:2c:c0 dst_mac 02:85:03:70:ee:88 vlan_id 3325 vlan_ethtype ipv4 src_ip 39.230.2.4 dst_ip 98.248.130.161 ip_proto tcp src_port 45665 dst_port 13257 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11194 flower src_mac 02:44:e0:53:05:bc dst_mac 02:4e:d8:b7:69:2e vlan_id 2027 vlan_ethtype 0x0800 src_ip 99.37.12.213 dst_ip 105.243.242.122 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11195 flower src_mac 02:cc:aa:0c:1f:8c dst_mac 02:2a:91:16:24:8f vlan_id 285 vlan_ethtype ip src_ip 103.86.122.79 dst_ip 22.46.13.206 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11196 flower src_mac 02:59:70:4e:2f:70 dst_mac 02:31:b7:ee:ba:3d vlan_id 765 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11197 flower src_mac 02:14:49:38:b0:be dst_mac 02:75:3f:ef:dc:90 src_ip 69.236.113.128 dst_ip 32.247.24.49 ip_proto icmp code 150 type 13 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11198 flower src_mac 02:02:ae:7f:f3:36 dst_mac 02:b6:2a:d3:46:89 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11199 flower src_mac 02:3a:b8:48:84:2a dst_mac 02:68:89:99:db:8d action pass INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:29:3f:9a:77:7e dst_mac 02:b3:a5:9b:9c:ba vlan_id 2377 vlan_ethtype 0x0800 src_ip 55.26.189.186 dst_ip 69.82.232.133 ip_proto tcp src_port 14492 dst_port 29545 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10801 flower src_mac 02:bc:c3:05:10:51 dst_mac 02:3b:a0:8c:eb:46 vlan_id 3328 vlan_ethtype ipv4 src_ip 76.192.64.226 dst_ip 14.25.137.23 ip_proto tcp src_port 49081 dst_port 58587 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10802 flower src_mac 02:e3:24:90:59:81 dst_mac 02:81:f9:9c:37:be vlan_id 2215 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10803 flower src_mac 02:76:c4:f3:84:ad dst_mac 02:86:11:dc:e5:44 vlan_id 3978 vlan_ethtype ipv4 src_ip 25.37.238.114 dst_ip 29.92.190.137 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10804 flower src_mac 02:21:93:ab:a7:30 dst_mac 02:b0:dd:c3:c2:3b src_ip 20.113.168.229 dst_ip 102.105.59.36 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10805 flower src_mac 02:fd:e2:64:b9:c2 dst_mac 02:7f:6e:58:02:4f action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10806 flower src_mac 02:10:ee:d5:de:62 dst_mac 02:7e:ee:2c:23:04 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10807 flower src_mac 02:54:18:09:9b:78 dst_mac 02:f8:8c:fd:a6:3a vlan_id 3870 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10808 flower src_mac 02:ca:74:6c:b7:30 dst_mac 02:1b:30:3c:96:85 src_ip 114.168.2.234 dst_ip 97.78.142.72 ip_proto icmp code 29 type 4 action pass && tc filter add dev swp33 ingress protocol ip pref 10809 flower src_mac 02:5e:11:93:f7:9e dst_mac 02:54:27:05:f0:75 src_ip 61.17.15.69 dst_ip 35.135.75.75 action trap && tc filter add dev swp33 ingress protocol ip pref 10810 flower src_mac 02:38:f4:46:42:ca dst_mac 02:c2:d7:41:39:c6 src_ip 97.122.8.37 dst_ip 89.138.238.144 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10811 flower src_mac 02:fc:56:ca:35:82 dst_mac 02:d7:97:ac:80:de src_ip 121.109.89.125 dst_ip 21.5.90.142 ip_proto tcp src_port 18050 dst_port 64442 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10812 flower src_mac 02:ab:38:ce:70:2a dst_mac 02:78:37:84:6d:8b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:73:4d:a5:85:44 dst_mac 02:c7:30:73:ba:94 vlan_id 2754 vlan_ethtype ip src_ip 18.15.129.206 dst_ip 78.84.192.144 ip_proto tcp src_port 21400 dst_port 1579 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10814 flower src_mac 02:10:fc:5b:7a:69 dst_mac 02:b2:3c:ef:8e:cb vlan_id 3825 vlan_ethtype ip src_ip 53.243.217.211 dst_ip 54.196.21.133 ip_proto tcp src_port 62573 dst_port 52879 action pass && tc filter add dev swp33 ingress protocol ip pref 10815 flower src_mac 02:45:b0:3c:6b:32 dst_mac 02:b3:76:b1:f0:f4 src_ip 86.5.72.226 dst_ip 17.236.139.189 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10816 flower src_mac 02:cc:54:0e:30:03 dst_mac 02:f9:12:b8:47:7f vlan_id 1265 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10817 flower src_mac 02:ae:51:82:a3:49 dst_mac 02:9a:66:7d:73:34 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10818 flower src_mac 02:d0:28:cc:f9:58 dst_mac 02:51:bd:0f:39:40 vlan_id 647 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10819 flower src_mac 02:99:5b:4d:5e:fe dst_mac 02:8e:11:cf:c5:dc vlan_id 2884 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10820 flower src_mac 02:2a:a1:3f:87:5c dst_mac 02:fd:b0:5a:61:0e vlan_id 24 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10821 flower src_mac 02:68:58:ed:55:1c dst_mac 02:b5:35:8a:88:9e src_ip 75.132.28.13 dst_ip 111.250.135.66 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10822 flower src_mac 02:81:75:fb:f0:aa dst_mac 02:cf:13:b7:a7:4e vlan_id 1088 vlan_ethtype ip src_ip 98.130.104.52 dst_ip 49.199.97.87 ip_proto tcp src_port 53286 dst_port 39348 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10823 flower src_mac 02:3a:9b:86:b0:e4 dst_mac 02:af:d8:33:1e:29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10824 flower src_mac 02:55:93:2c:12:31 dst_mac 02:32:de:32:29:ec vlan_id 1737 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10825 flower src_mac 02:67:f6:66:d9:46 dst_mac 02:6c:ca:06:ea:64 src_ip 15.110.8.98 dst_ip 78.174.122.18 ip_proto udp src_port 17874 dst_port 45757 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10826 flower src_mac 02:d6:c2:de:bf:3f dst_mac 02:48:0f:12:05:cc src_ip 75.163.73.236 dst_ip 27.98.114.48 ip_proto tcp src_port 60894 dst_port 32886 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10827 flower src_mac 02:c3:7d:89:d4:30 dst_mac 02:10:33:dc:39:bc vlan_id 470 vlan_ethtype ip src_ip 102.164.139.7 dst_ip 81.244.251.203 ip_proto tcp src_port 2001 dst_port 36241 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10828 flower src_mac 02:16:08:30:45:d1 dst_mac 02:b4:0a:be:92:df vlan_id 1359 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10829 flower src_mac 02:ff:25:c6:e9:9f dst_mac 02:00:12:0c:56:db vlan_id 646 vlan_ethtype ip src_ip 67.224.60.248 dst_ip 15.167.104.84 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10830 flower src_mac 02:a8:49:06:13:8f dst_mac 02:93:a1:6f:dd:2a src_ip 22.244.231.188 dst_ip 102.54.17.51 ip_proto tcp src_port 52667 dst_port 5633 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10831 flower src_mac 02:2f:27:31:b2:62 dst_mac 02:ae:05:8c:b8:a6 vlan_id 1945 vlan_ethtype ip src_ip 104.205.35.184 dst_ip 95.185.173.179 ip_proto tcp src_port 56921 dst_port 23083 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10832 flower src_mac 02:ee:9a:48:17:ac dst_mac 02:0c:bc:88:23:57 vlan_id 2686 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10833 flower src_mac 02:32:10:c8:79:32 dst_mac 02:c2:6a:f1:f7:f6 src_ip 16.111.191.244 dst_ip 100.33.135.63 ip_proto tcp src_port 36880 dst_port 50487 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10834 flower src_mac 02:26:8d:f3:fa:f0 dst_mac 02:2b:57:b9:98:dc action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10835 flower src_mac 02:aa:00:19:49:7d dst_mac 02:04:a9:e0:4c:a1 vlan_id 166 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10836 flower src_mac 02:38:e4:81:de:36 dst_mac 02:11:f0:70:6d:dc vlan_id 2120 vlan_ethtype 0x0800 src_ip 100.214.192.212 dst_ip 81.254.9.195 ip_proto udp src_port 58356 dst_port 50262 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10837 flower src_mac 02:71:1b:53:86:47 dst_mac 02:f0:da:0d:13:b4 vlan_id 1507 vlan_ethtype 0x0800 src_ip 113.3.144.61 dst_ip 66.5.211.153 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10838 flower src_mac 02:ba:de:43:1b:1d dst_mac 02:f6:e2:ca:29:4f vlan_id 2855 vlan_ethtype 0x0800 src_ip 116.154.28.237 dst_ip 102.215.197.140 ip_proto udp src_port 45820 dst_port 33832 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10839 flower src_mac 02:96:fe:96:1f:a2 dst_mac 02:f4:2d:5e:cc:ba vlan_id 1965 vlan_ethtype 0x0800 src_ip 74.149.232.188 dst_ip 68.71.41.228 ip_proto udp src_port 32567 dst_port 11495 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10840 flower src_mac 02:f6:bc:ae:a8:b2 dst_mac 02:14:ca:e3:fc:9f vlan_id 1542 vlan_ethtype ipv4 src_ip 30.162.239.180 dst_ip 20.237.16.75 ip_proto udp src_port 36522 dst_port 38681 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10841 flower src_mac 02:57:d6:76:36:da dst_mac 02:cf:ea:9b:f7:72 vlan_id 1414 vlan_ethtype ip src_ip 74.131.184.108 dst_ip 115.202.57.14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:6d:8d:6f:fe:00 dst_mac 02:b5:f4:64:30:49 vlan_id 3303 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:c0:5b:30:61:33 dst_mac 02:15:69:8c:96:d9 vlan_id 177 vlan_ethtype ip src_ip 72.0.8.197 dst_ip 118.102.216.89 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10844 flower src_mac 02:60:1c:9c:d9:f0 dst_mac 02:89:03:aa:5f:a9 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10845 flower src_mac 02:85:b1:34:7d:81 dst_mac 02:2f:f2:f7:32:0e vlan_id 384 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10846 flower src_mac 02:b3:36:6c:c7:36 dst_mac 02:82:ab:9e:1b:1c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10847 flower src_mac 02:25:d0:84:e7:25 dst_mac 02:f4:fc:38:a1:f2 vlan_id 2574 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10848 flower src_mac 02:08:9b:68:36:e3 dst_mac 02:54:5d:75:a4:d4 src_ip 104.207.26.79 dst_ip 35.59.103.10 ip_proto udp src_port 29806 dst_port 57476 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10849 flower src_mac 02:0a:a5:a9:ec:98 dst_mac 02:6b:d5:13:53:49 src_ip 119.220.26.180 dst_ip 73.144.87.46 ip_proto tcp src_port 51765 dst_port 27573 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10850 flower src_mac 02:83:1f:0d:3b:23 dst_mac 02:7e:20:73:6e:2d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10851 flower src_mac 02:13:73:61:38:9f dst_mac 02:f9:b8:bf:3e:6b vlan_id 269 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10852 flower src_mac 02:ea:dd:a1:6d:f4 dst_mac 02:b4:5f:dd:da:ae src_ip 24.131.138.177 dst_ip 22.245.124.70 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10853 flower src_mac 02:69:6e:41:0f:70 dst_mac 02:79:52:9e:ac:be action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10854 flower src_mac 02:b2:2b:8c:90:8c dst_mac 02:d8:64:1e:e5:c6 src_ip 11.27.84.56 dst_ip 125.51.174.8 ip_proto udp src_port 33373 dst_port 51257 action pass && tc filter add dev swp33 ingress protocol ip pref 10855 flower src_mac 02:db:7e:c4:09:82 dst_mac 02:f1:04:10:74:d2 src_ip 80.13.155.222 dst_ip 96.196.159.105 ip_proto tcp src_port 1616 dst_port 12988 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10856 flower src_mac 02:27:9c:7b:8e:54 dst_mac 02:e1:45:0f:ab:55 vlan_id 1197 vlan_ethtype ipv4 src_ip 75.10.80.18 dst_ip 30.20.68.150 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10857 flower src_mac 02:88:60:36:63:7d dst_mac 02:85:b1:82:e9:3a vlan_id 100 vlan_ethtype 0x0800 src_ip 112.80.55.152 dst_ip 31.193.121.109 ip_proto tcp src_port 51550 dst_port 13210 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10858 flower src_mac 02:4a:fe:4a:61:d5 dst_mac 02:06:d3:64:d2:d4 src_ip 61.164.108.124 dst_ip 24.99.162.90 ip_proto udp src_port 44171 dst_port 60082 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10859 flower src_mac 02:42:eb:18:38:13 dst_mac 02:06:66:30:f2:d1 vlan_id 2237 vlan_ethtype 0x0800 src_ip 15.111.157.140 dst_ip 103.90.244.133 ip_proto tcp src_port 26166 dst_port 9415 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10860 flower src_mac 02:11:44:88:0e:a5 dst_mac 02:e8:3e:08:d1:71 vlan_id 3073 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10861 flower src_mac 02:ac:7a:69:cc:bd dst_mac 02:06:e6:70:4d:b4 src_ip 35.19.199.138 dst_ip 24.229.79.128 ip_proto udp src_port 60904 dst_port 22214 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10862 flower src_mac 02:1a:3f:d2:5a:c2 dst_mac 02:e9:72:e8:ba:43 vlan_id 190 vlan_ethtype ipv4 src_ip 56.237.7.146 dst_ip 113.76.39.154 ip_proto udp src_port 54891 dst_port 46074 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10863 flower src_mac 02:3b:d5:5b:59:8b dst_mac 02:c7:90:58:ec:4d vlan_id 3950 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10864 flower src_mac 02:34:96:9b:3e:7d dst_mac 02:0b:6c:bf:e8:49 vlan_id 1169 vlan_ethtype ip src_ip 114.164.223.53 dst_ip 97.251.216.178 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10865 flower src_mac 02:fb:ee:85:54:07 dst_mac 02:3b:ec:4e:fb:f2 vlan_id 2607 vlan_ethtype 0x0800 src_ip 21.120.236.223 dst_ip 34.120.139.73 ip_proto udp src_port 40069 dst_port 45245 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10866 flower src_mac 02:16:e9:e5:a6:6e dst_mac 02:84:69:73:0e:1c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10867 flower src_mac 02:af:ed:41:6d:d3 dst_mac 02:df:97:91:9c:b6 vlan_id 1258 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10868 flower src_mac 02:f9:87:a0:78:d9 dst_mac 02:bf:3a:f4:96:77 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10869 flower src_mac 02:5c:39:12:48:c7 dst_mac 02:47:d3:01:60:4f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10870 flower src_mac 02:88:ca:51:3a:2c dst_mac 02:e1:0e:a1:76:bc vlan_id 1902 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10871 flower src_mac 02:5e:a0:e2:cd:88 dst_mac 02:80:14:22:b7:c5 vlan_id 3816 vlan_ethtype ipv4 src_ip 11.185.121.242 dst_ip 123.225.93.65 ip_proto tcp src_port 28162 dst_port 64756 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10872 flower src_mac 02:d8:2d:dd:3c:a2 dst_mac 02:71:b5:56:09:f2 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10873 flower src_mac 02:e9:17:95:a1:0f dst_mac 02:51:74:de:0b:02 src_ip 27.138.5.57 dst_ip 70.246.115.80 ip_proto udp src_port 26185 dst_port 35348 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10874 flower src_mac 02:51:ca:99:eb:5c dst_mac 02:96:74:52:3b:ac vlan_id 700 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10875 flower src_mac 02:3d:65:9d:5c:f8 dst_mac 02:55:48:df:29:7e vlan_id 25 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10876 flower src_mac 02:5f:12:95:a5:68 dst_mac 02:6f:6e:81:99:e7 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10877 flower src_mac 02:02:e4:37:3b:cd dst_mac 02:b6:22:6e:48:87 src_ip 23.122.22.241 dst_ip 83.25.112.162 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:6b:ec:18:82:0e dst_mac 02:6f:83:60:db:f0 vlan_id 2176 vlan_ethtype 0x0800 src_ip 63.41.192.217 dst_ip 44.204.218.42 ip_proto tcp src_port 55293 dst_port 28786 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10879 flower src_mac 02:83:be:34:2d:9a dst_mac 02:c2:ad:e4:7f:df vlan_id 452 vlan_ethtype ipv4 src_ip 45.218.72.38 dst_ip 22.192.31.190 ip_proto tcp src_port 54259 dst_port 18377 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10880 flower src_mac 02:76:7a:26:fc:d3 dst_mac 02:3e:d2:58:f6:f3 vlan_id 1407 vlan_ethtype 0x0800 src_ip 37.78.160.13 dst_ip 40.223.233.118 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10881 flower src_mac 02:a3:9e:2e:b4:2e dst_mac 02:d0:1c:5b:b4:ae vlan_id 3218 vlan_ethtype ipv4 src_ip 54.193.36.194 dst_ip 125.40.40.45 ip_proto udp src_port 30585 dst_port 33937 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10882 flower src_mac 02:8d:0c:9d:16:21 dst_mac 02:c9:91:28:00:42 vlan_id 2180 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:3b:53:3a:95:9d dst_mac 02:2d:fb:ef:05:2b vlan_id 1498 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10884 flower src_mac 02:77:39:5a:47:92 dst_mac 02:66:96:a4:31:98 src_ip 38.68.247.79 dst_ip 17.154.0.66 ip_proto udp src_port 59765 dst_port 33157 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10885 flower src_mac 02:0f:4c:ea:b3:7e dst_mac 02:8f:4b:b8:78:e5 src_ip 104.215.80.42 dst_ip 27.233.252.47 ip_proto tcp src_port 13088 dst_port 40763 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10886 flower src_mac 02:0c:d7:6c:e5:0d dst_mac 02:2c:1d:3f:a8:2c vlan_id 3655 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10887 flower src_mac 02:df:cd:a0:fe:e6 dst_mac 02:a5:df:96:8e:7d src_ip 31.40.179.9 dst_ip 67.22.240.192 ip_proto udp src_port 31012 dst_port 55888 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10888 flower src_mac 02:f9:03:cb:01:3f dst_mac 02:5c:26:f7:5d:30 vlan_id 408 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10889 flower src_mac 02:e5:2f:60:5f:f1 dst_mac 02:a6:7c:fc:57:ec src_ip 117.53.44.167 dst_ip 14.202.222.233 ip_proto udp src_port 44499 dst_port 40071 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10890 flower src_mac 02:58:98:ce:87:d1 dst_mac 02:5c:f4:ce:ce:9e vlan_id 2883 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10891 flower src_mac 02:1d:90:ce:fd:46 dst_mac 02:21:2c:2d:89:3f src_ip 113.97.207.197 dst_ip 78.232.114.99 ip_proto icmp code 92 type 17 action pass && tc filter add dev swp33 ingress protocol ip pref 10892 flower src_mac 02:19:9e:01:ea:6b dst_mac 02:7a:71:9d:dc:09 src_ip 67.241.81.46 dst_ip 59.175.166.17 ip_proto tcp src_port 32343 dst_port 30336 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10893 flower src_mac 02:f3:76:70:be:b8 dst_mac 02:f9:a6:ad:ca:d2 src_ip 115.225.242.231 dst_ip 48.12.173.12 ip_proto tcp src_port 41040 dst_port 63082 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10894 flower src_mac 02:b6:80:a0:82:78 dst_mac 02:2a:bd:86:92:80 vlan_id 3097 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10895 flower src_mac 02:d8:1f:d7:f0:4c dst_mac 02:21:22:69:ad:45 vlan_id 1100 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10896 flower src_mac 02:3b:c8:d2:f6:bf dst_mac 02:91:27:c6:b9:78 src_ip 25.197.28.215 dst_ip 118.195.86.112 ip_proto udp src_port 54852 dst_port 26719 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10897 flower src_mac 02:9d:a9:e2:76:d5 dst_mac 02:d0:f2:41:24:2b vlan_id 3408 vlan_ethtype 0x0800 src_ip 45.255.175.59 dst_ip 45.218.28.172 ip_proto udp src_port 6185 dst_port 24584 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10898 flower src_mac 02:ee:de:6b:19:d3 dst_mac 02:83:9e:44:2c:4e vlan_id 2839 vlan_ethtype ipv4 src_ip 82.60.7.217 dst_ip 86.82.230.127 ip_proto tcp src_port 42961 dst_port 51616 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10899 flower src_mac 02:1a:11:11:a4:62 dst_mac 02:a1:f2:5e:54:de src_ip 121.139.99.39 dst_ip 97.150.81.60 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10900 flower src_mac 02:3e:92:46:61:e8 dst_mac 02:90:74:31:5d:90 vlan_id 3534 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10901 flower src_mac 02:d1:3d:73:fb:09 dst_mac 02:6e:9a:1a:23:33 vlan_id 4093 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10902 flower src_mac 02:27:42:26:00:d7 dst_mac 02:0c:6d:f5:d0:b5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10903 flower src_mac 02:98:77:f7:ed:df dst_mac 02:cf:b6:b2:ec:48 vlan_id 700 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10904 flower src_mac 02:7f:0b:d2:36:97 dst_mac 02:95:2f:7c:26:df action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10905 flower src_mac 02:17:67:51:38:ec dst_mac 02:b1:b4:18:de:a2 vlan_id 3772 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10906 flower src_mac 02:9c:55:7c:00:12 dst_mac 02:fd:bd:e1:a9:0d vlan_id 318 vlan_ethtype ipv4 src_ip 40.72.19.246 dst_ip 23.172.19.88 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10907 flower src_mac 02:f1:1d:bb:4f:39 dst_mac 02:46:fd:81:8e:e8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10908 flower src_mac 02:e3:c8:0b:6c:f3 dst_mac 02:a6:1a:15:53:8a vlan_id 1464 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10909 flower src_mac 02:12:54:05:2d:3f dst_mac 02:65:11:ad:13:0a action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10910 flower src_mac 02:e0:f2:50:a7:5b dst_mac 02:9b:a3:ca:ba:ff src_ip 15.36.57.183 dst_ip 111.153.166.54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10911 flower src_mac 02:1c:e3:6c:d5:83 dst_mac 02:17:b2:ee:28:fa vlan_id 2287 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10912 flower src_mac 02:c3:60:18:e7:7c dst_mac 02:d6:6c:61:a4:30 vlan_id 40 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10913 flower src_mac 02:2a:da:f3:89:c9 dst_mac 02:1c:dd:46:cd:aa src_ip 60.102.252.101 dst_ip 21.170.76.126 ip_proto udp src_port 58226 dst_port 31893 action pass && tc filter add dev swp33 ingress protocol ip pref 10914 flower src_mac 02:0b:b3:8e:09:36 dst_mac 02:7e:59:5c:b2:80 src_ip 125.76.121.146 dst_ip 112.116.7.10 ip_proto tcp src_port 38173 dst_port 19499 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10915 flower src_mac 02:27:bd:bd:63:b4 dst_mac 02:83:46:0f:eb:2d src_ip 59.254.206.193 dst_ip 48.199.69.158 ip_proto tcp src_port 52012 dst_port 8085 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10916 flower src_mac 02:51:40:56:e2:ef dst_mac 02:e2:50:04:7d:6f vlan_id 959 vlan_ethtype ipv4 src_ip 37.227.254.173 dst_ip 75.97.148.52 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:d0:42:cd:1c:05 dst_mac 02:9f:ad:25:88:1b vlan_id 337 vlan_ethtype ip src_ip 18.31.231.201 dst_ip 26.149.222.180 ip_proto tcp src_port 58805 dst_port 11611 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10918 flower src_mac 02:7e:46:76:48:15 dst_mac 02:6b:48:60:51:fe src_ip 46.18.251.233 dst_ip 56.8.8.234 ip_proto udp src_port 54331 dst_port 11010 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10919 flower src_mac 02:b9:56:cb:8e:fc dst_mac 02:9e:76:8b:b1:2b vlan_id 3470 vlan_ethtype ip src_ip 82.196.188.83 dst_ip 88.29.148.30 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10920 flower src_mac 02:04:eb:8c:69:b2 dst_mac 02:ea:c6:dd:0a:93 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10921 flower src_mac 02:52:32:08:09:60 dst_mac 02:0d:f0:73:31:e9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10922 flower src_mac 02:48:07:cd:74:5a dst_mac 02:66:2c:b9:db:f8 vlan_id 1447 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10923 flower src_mac 02:e2:90:07:f3:d6 dst_mac 02:4f:3f:d0:f0:61 vlan_id 2447 vlan_ethtype 0x0800 src_ip 58.8.193.152 dst_ip 124.42.126.110 ip_proto udp src_port 32330 dst_port 65526 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10924 flower src_mac 02:ad:a2:35:f5:12 dst_mac 02:f7:50:04:39:1e src_ip 123.90.198.211 dst_ip 74.98.167.153 ip_proto icmp code 213 type 3 action pass && tc filter add dev swp33 ingress protocol ip pref 10925 flower src_mac 02:9a:bf:ac:30:3c dst_mac 02:4b:91:a0:49:83 src_ip 70.70.29.59 dst_ip 60.119.24.180 ip_proto udp src_port 7293 dst_port 38640 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:2c:5d:a3:a9:92 dst_mac 02:b8:a0:ec:5c:43 vlan_id 1556 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10927 flower src_mac 02:62:05:b8:53:d5 dst_mac 02:da:03:35:b2:ad action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10928 flower src_mac 02:8e:4c:a2:00:76 dst_mac 02:82:84:0f:b3:7c src_ip 95.179.28.201 dst_ip 54.228.187.63 ip_proto udp src_port 49726 dst_port 39102 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10929 flower src_mac 02:57:21:16:64:ce dst_mac 02:0c:c1:81:08:04 src_ip 43.179.184.215 dst_ip 106.129.6.144 ip_proto tcp src_port 13344 dst_port 6732 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10930 flower src_mac 02:f0:fd:6e:cb:a1 dst_mac 02:cd:f8:a1:56:08 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10931 flower src_mac 02:1f:0e:e6:62:64 dst_mac 02:1e:a7:44:3a:e9 vlan_id 1458 vlan_ethtype ip src_ip 26.146.108.168 dst_ip 94.89.78.127 ip_proto udp src_port 6404 dst_port 31072 action trap && tc filter add dev swp33 ingress protocol ip pref 10932 flower src_mac 02:9a:e6:f2:cc:17 dst_mac 02:04:30:8f:67:88 src_ip 103.85.18.177 dst_ip 117.16.245.51 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10933 flower src_mac 02:25:27:e7:cf:65 dst_mac 02:af:b3:d4:ad:c7 vlan_id 2591 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10934 flower src_mac 02:6b:d6:ef:a4:ad dst_mac 02:f0:b4:87:f5:6d vlan_id 3746 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10935 flower src_mac 02:b8:9c:d8:96:b2 dst_mac 02:4c:1f:51:4c:51 src_ip 100.171.58.120 dst_ip 39.92.162.62 ip_proto icmp code 208 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10936 flower src_mac 02:21:00:33:73:71 dst_mac 02:c3:38:f5:1f:30 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10937 flower src_mac 02:f6:ff:7e:75:90 dst_mac 02:25:0b:39:6b:81 vlan_id 1993 vlan_ethtype 0x0800 src_ip 49.65.179.127 dst_ip 24.94.255.15 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10938 flower src_mac 02:b2:a9:a6:06:5c dst_mac 02:36:f7:cf:c2:24 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10939 flower src_mac 02:aa:c4:b7:1e:97 dst_mac 02:fa:76:28:a4:48 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10940 flower src_mac 02:a2:84:22:f3:a0 dst_mac 02:eb:dd:04:9a:b5 vlan_id 1277 vlan_ethtype ip src_ip 65.212.131.70 dst_ip 41.69.203.153 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10941 flower src_mac 02:cc:5e:74:49:10 dst_mac 02:78:0e:6e:78:eb src_ip 125.7.229.133 dst_ip 106.17.229.240 ip_proto icmp code 168 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10942 flower src_mac 02:d2:f7:90:96:91 dst_mac 02:68:70:18:93:4b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10943 flower src_mac 02:54:27:fa:58:43 dst_mac 02:44:d7:15:92:b8 vlan_id 4008 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10944 flower src_mac 02:0a:7f:8f:b8:c5 dst_mac 02:06:11:11:62:ca action trap && tc filter add dev swp33 ingress protocol ip pref 10945 flower src_mac 02:35:79:2d:18:c4 dst_mac 02:98:0a:4e:d9:e6 src_ip 122.254.56.203 dst_ip 88.32.147.212 ip_proto tcp src_port 3367 dst_port 712 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10946 flower src_mac 02:7c:4e:b8:39:ae dst_mac 02:fd:17:91:d0:84 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10947 flower src_mac 02:75:4e:ce:ec:ec dst_mac 02:cb:65:f5:b6:0c src_ip 42.246.67.229 dst_ip 117.237.81.43 ip_proto udp src_port 15102 dst_port 16545 action trap && tc filter add dev swp33 ingress protocol ip pref 10948 flower src_mac 02:2b:7d:92:61:4f dst_mac 02:37:99:f3:af:64 src_ip 65.96.198.213 dst_ip 58.116.142.229 ip_proto tcp src_port 38402 dst_port 18371 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10949 flower src_mac 02:ff:34:ab:53:99 dst_mac 02:94:4d:2d:d8:de vlan_id 3735 vlan_ethtype ip src_ip 57.91.151.73 dst_ip 52.63.6.138 ip_proto tcp src_port 39407 dst_port 59712 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10950 flower src_mac 02:bd:f5:f1:47:82 dst_mac 02:e6:de:78:70:05 vlan_id 1338 vlan_ethtype ipv4 src_ip 24.138.73.46 dst_ip 100.228.246.61 action drop && tc filter add dev swp33 ingress protocol ip pref 10951 flower src_mac 02:e0:d8:71:68:bf dst_mac 02:97:d2:48:88:56 src_ip 19.105.196.158 dst_ip 61.60.10.81 ip_proto udp src_port 10821 dst_port 18683 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10952 flower src_mac 02:48:af:fb:fd:91 dst_mac 02:4d:f5:e9:d8:fa action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10953 flower src_mac 02:bc:37:3d:2b:4c dst_mac 02:6f:88:3f:b3:c8 vlan_id 1130 vlan_ethtype 0x0800 src_ip 21.120.211.237 dst_ip 38.88.213.72 ip_proto udp src_port 33957 dst_port 49443 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10954 flower src_mac 02:58:d2:0a:ab:15 dst_mac 02:29:e1:d0:12:ca src_ip 18.218.151.191 dst_ip 120.204.225.79 ip_proto tcp src_port 19241 dst_port 60809 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10955 flower src_mac 02:a8:68:bf:48:32 dst_mac 02:06:ec:f1:87:4f vlan_id 2158 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10956 flower src_mac 02:b0:95:54:2c:ed dst_mac 02:29:22:bd:70:21 src_ip 108.60.70.88 dst_ip 44.9.211.227 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10957 flower src_mac 02:e0:b9:d5:be:aa dst_mac 02:fd:ee:f1:28:c0 vlan_id 1173 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10958 flower src_mac 02:9e:47:9a:3f:84 dst_mac 02:a4:90:15:9d:0c action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10959 flower src_mac 02:d2:a0:7b:3b:8e dst_mac 02:ee:d4:e0:e8:dd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10960 flower src_mac 02:65:22:90:3f:51 dst_mac 02:ef:ae:4a:66:ed vlan_id 4068 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10961 flower src_mac 02:5d:a4:68:65:4e dst_mac 02:e0:a3:ed:72:0d vlan_id 1631 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10962 flower src_mac 02:59:2d:42:98:5a dst_mac 02:28:c7:54:7e:1d vlan_id 1750 vlan_ethtype ipv4 src_ip 16.181.193.164 dst_ip 23.149.19.163 ip_proto tcp src_port 28169 dst_port 31602 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10963 flower src_mac 02:34:2e:50:62:87 dst_mac 02:16:75:7f:ad:ed vlan_id 292 vlan_ethtype ipv4 src_ip 71.74.229.93 dst_ip 63.91.26.193 ip_proto tcp src_port 11535 dst_port 37240 action trap && tc filter add dev swp33 ingress protocol ip pref 10964 flower src_mac 02:84:e9:bf:02:bb dst_mac 02:db:11:94:56:5b src_ip 68.132.72.98 dst_ip 52.159.248.168 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10965 flower src_mac 02:45:d6:1e:4f:2b dst_mac 02:09:29:ea:d0:56 vlan_id 1349 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10966 flower src_mac 02:72:1e:d3:b6:56 dst_mac 02:22:91:d2:de:78 vlan_id 2646 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10967 flower src_mac 02:6a:28:6f:22:6e dst_mac 02:d4:32:1c:67:f0 vlan_id 3429 vlan_ethtype ip src_ip 106.236.231.196 dst_ip 22.53.149.85 ip_proto udp src_port 14578 dst_port 47059 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10968 flower src_mac 02:ec:54:51:dd:5d dst_mac 02:e9:aa:2a:3a:b1 vlan_id 2435 vlan_ethtype 0x0800 src_ip 90.246.12.119 dst_ip 17.198.196.236 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10969 flower src_mac 02:c7:22:5f:0a:fc dst_mac 02:49:cf:6f:f0:2c src_ip 118.91.86.6 dst_ip 119.242.6.1 ip_proto icmp code 179 type 15 action trap && tc filter add dev swp33 ingress protocol ip pref 10970 flower src_mac 02:23:11:8d:2d:00 dst_mac 02:b4:3f:6b:56:1e src_ip 22.241.156.246 dst_ip 91.204.100.212 ip_proto icmp code 96 type 0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10971 flower src_mac 02:78:97:9a:06:5e dst_mac 02:ee:42:ef:c1:f4 vlan_id 3734 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10972 flower src_mac 02:76:bc:50:4e:63 dst_mac 02:2b:8c:90:91:86 vlan_id 1621 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10973 flower src_mac 02:c4:48:ad:e7:9b dst_mac 02:88:e0:3c:85:b9 src_ip 52.31.151.13 dst_ip 17.194.112.139 ip_proto tcp src_port 56668 dst_port 50898 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10974 flower src_mac 02:49:ae:82:69:c3 dst_mac 02:06:53:77:c5:ca vlan_id 738 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10975 flower src_mac 02:8a:a3:b6:4b:aa dst_mac 02:8f:33:6f:47:1b action drop && tc filter add dev swp33 ingress protocol ip pref 10976 flower src_mac 02:47:34:a1:75:bb dst_mac 02:5d:2a:e0:d9:41 src_ip 53.210.208.245 dst_ip 55.107.149.62 ip_proto icmp code 237 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10977 flower src_mac 02:7e:36:4d:58:40 dst_mac 02:50:27:51:cc:8d vlan_id 3588 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10978 flower src_mac 02:3d:cf:d7:17:62 dst_mac 02:3c:89:08:7b:a5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10979 flower src_mac 02:ef:d1:4b:a2:c5 dst_mac 02:9c:0e:dd:82:17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10980 flower src_mac 02:4d:7a:a2:89:62 dst_mac 02:81:60:b9:ce:64 vlan_id 337 vlan_ethtype 0x0800 src_ip 77.143.56.146 dst_ip 61.191.131.90 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:d3:35:0a:96:38 dst_mac 02:e8:9a:d0:1b:87 vlan_id 1714 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10982 flower src_mac 02:d5:87:2f:73:f5 dst_mac 02:1c:21:a3:7b:32 vlan_id 2473 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10983 flower src_mac 02:3e:ae:84:9b:6d dst_mac 02:e8:2b:81:68:38 src_ip 67.89.41.135 dst_ip 63.33.98.197 ip_proto tcp src_port 20881 dst_port 50832 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10984 flower src_mac 02:83:fa:47:39:25 dst_mac 02:93:0a:10:e2:ea vlan_id 768 vlan_ethtype 0x0800 src_ip 79.30.248.44 dst_ip 46.37.94.179 ip_proto udp src_port 24067 dst_port 13070 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10985 flower src_mac 02:a1:5e:c4:b0:a3 dst_mac 02:b3:da:40:d8:5f src_ip 126.255.85.213 dst_ip 39.120.224.233 ip_proto tcp src_port 347 dst_port 13978 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10986 flower src_mac 02:71:cc:ca:68:2d dst_mac 02:58:87:ef:f4:b1 vlan_id 728 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10987 flower src_mac 02:b6:d2:20:c3:e1 dst_mac 02:47:8a:08:ed:93 vlan_id 2133 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10988 flower src_mac 02:4d:44:63:90:e8 dst_mac 02:47:6b:25:eb:ad action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10989 flower src_mac 02:e8:c6:a8:18:59 dst_mac 02:4b:bf:11:fe:20 vlan_id 672 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10990 flower src_mac 02:46:8c:2e:d9:1b dst_mac 02:15:1e:fa:5e:df src_ip 88.112.216.79 dst_ip 95.113.163.186 ip_proto tcp src_port 46634 dst_port 42345 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10991 flower src_mac 02:90:6b:00:4d:ac dst_mac 02:0a:69:5c:1b:c8 src_ip 27.176.173.162 dst_ip 19.9.65.7 ip_proto udp src_port 1802 dst_port 6129 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10992 flower src_mac 02:b5:a2:7c:63:ea dst_mac 02:3c:8c:33:8f:df vlan_id 3924 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10993 flower src_mac 02:d0:e9:cb:7a:12 dst_mac 02:40:d3:a2:45:2f vlan_id 16 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10994 flower src_mac 02:51:59:34:c3:5c dst_mac 02:1a:24:99:22:4e vlan_id 3884 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10995 flower src_mac 02:14:86:21:a9:96 dst_mac 02:85:b8:19:b9:a6 src_ip 36.225.211.190 dst_ip 69.206.66.50 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10996 flower src_mac 02:cc:18:1d:30:b2 dst_mac 02:01:d3:a7:2b:24 src_ip 41.187.39.16 dst_ip 14.15.114.137 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10997 flower src_mac 02:81:c3:1f:40:95 dst_mac 02:1b:b4:f8:d3:81 src_ip 111.179.79.10 dst_ip 43.73.62.82 ip_proto udp src_port 42631 dst_port 151 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10998 flower src_mac 02:e8:44:6a:85:3a dst_mac 02:08:cd:68:b4:e7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10999 flower src_mac 02:b2:d2:18:ee:7d dst_mac 02:51:8e:ac:aa:b3 vlan_id 1781 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11000 flower src_mac 02:8b:7b:1e:03:e8 dst_mac 02:e3:f5:87:0c:bb vlan_id 1163 vlan_ethtype ip src_ip 106.141.188.61 dst_ip 54.60.158.201 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11001 flower src_mac 02:8f:8c:ad:63:33 dst_mac 02:2e:3f:1a:e2:1a src_ip 76.254.187.236 dst_ip 35.125.202.237 ip_proto icmp code 89 type 11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11002 flower src_mac 02:07:ab:b2:cf:38 dst_mac 02:13:50:c2:4c:74 vlan_id 567 vlan_ethtype ipv4 src_ip 44.192.74.50 dst_ip 55.41.198.132 ip_proto udp src_port 20900 dst_port 41718 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11003 flower src_mac 02:fa:87:88:c4:4b dst_mac 02:46:39:71:94:c1 vlan_id 209 vlan_ethtype ip src_ip 31.7.139.231 dst_ip 18.167.217.239 action trap && tc filter add dev swp33 ingress protocol ip pref 11004 flower src_mac 02:13:a0:66:64:48 dst_mac 02:80:56:a3:11:71 src_ip 27.231.137.11 dst_ip 43.34.164.150 ip_proto udp src_port 31341 dst_port 34979 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11005 flower src_mac 02:ed:97:1a:ad:b2 dst_mac 02:52:f6:b2:5d:71 vlan_id 457 vlan_ethtype ip src_ip 57.188.196.240 dst_ip 90.81.249.192 ip_proto udp src_port 31644 dst_port 20204 action drop && tc filter add dev swp33 ingress protocol ip pref 11006 flower src_mac 02:c1:7a:95:0e:94 dst_mac 02:95:00:5b:8c:b1 src_ip 33.145.156.4 dst_ip 57.180.135.236 ip_proto udp src_port 5509 dst_port 43469 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11007 flower src_mac 02:1b:a9:8a:44:bf dst_mac 02:95:79:ba:05:9f vlan_id 2635 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11008 flower src_mac 02:5b:19:96:9b:0e dst_mac 02:a3:de:38:b2:85 src_ip 82.133.212.40 dst_ip 30.195.9.116 ip_proto udp src_port 7179 dst_port 16039 action drop && tc filter add dev swp33 ingress protocol ip pref 11009 flower src_mac 02:d9:ac:bf:c9:7f dst_mac 02:5b:d4:aa:7f:c3 src_ip 37.247.197.192 dst_ip 126.223.44.71 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11010 flower src_mac 02:eb:b7:f3:04:74 dst_mac 02:9a:36:1d:05:db vlan_id 1298 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11011 flower src_mac 02:55:29:e4:16:13 dst_mac 02:37:bc:99:0a:05 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11012 flower src_mac 02:78:c0:35:43:de dst_mac 02:b9:a0:71:4d:37 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11013 flower src_mac 02:a1:63:c0:50:c2 dst_mac 02:38:25:16:01:e6 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11014 flower src_mac 02:69:8a:d5:0f:a3 dst_mac 02:66:cc:8d:05:b2 vlan_id 3624 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11015 flower src_mac 02:38:db:f7:5c:d8 dst_mac 02:18:ae:a1:c9:7d action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11016 flower src_mac 02:bd:8f:02:69:03 dst_mac 02:5f:70:a5:48:30 src_ip 80.184.186.118 dst_ip 124.49.96.239 ip_proto udp src_port 54049 dst_port 36361 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11017 flower src_mac 02:1e:8a:b1:92:4b dst_mac 02:02:fa:39:75:8b src_ip 30.172.136.59 dst_ip 103.155.89.3 ip_proto tcp src_port 63621 dst_port 63537 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11018 flower src_mac 02:be:99:ae:e9:b6 dst_mac 02:62:6e:42:60:d9 src_ip 122.235.176.84 dst_ip 85.10.234.16 ip_proto tcp src_port 48837 dst_port 24189 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11019 flower src_mac 02:93:53:80:97:6b dst_mac 02:ee:14:28:a0:64 vlan_id 1657 vlan_ethtype ip src_ip 21.203.75.37 dst_ip 40.8.122.75 ip_proto udp src_port 26839 dst_port 31348 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11020 flower src_mac 02:71:cd:76:2c:c9 dst_mac 02:8f:6c:69:d7:57 vlan_id 205 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11021 flower src_mac 02:84:2d:1c:84:f6 dst_mac 02:ed:9b:5c:98:80 src_ip 38.227.83.57 dst_ip 44.139.215.32 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11022 flower src_mac 02:2f:d6:b0:03:2f dst_mac 02:57:be:37:09:e3 vlan_id 2388 vlan_ethtype 0x0800 src_ip 41.70.102.152 dst_ip 114.225.130.117 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11023 flower src_mac 02:b0:45:78:00:39 dst_mac 02:a0:7e:3f:02:e2 src_ip 93.177.80.30 dst_ip 102.50.22.20 ip_proto tcp src_port 41483 dst_port 5005 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11024 flower src_mac 02:8a:bd:2e:f9:d1 dst_mac 02:7f:55:1a:dc:b1 vlan_id 1145 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11025 flower src_mac 02:aa:15:13:ea:65 dst_mac 02:67:4a:71:34:c1 vlan_id 3997 vlan_ethtype 0x0800 src_ip 31.194.114.121 dst_ip 46.218.74.189 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11026 flower src_mac 02:0e:ba:0f:0d:9b dst_mac 02:f8:df:30:c1:67 src_ip 101.14.238.219 dst_ip 50.74.158.112 ip_proto icmp code 126 type 15 action drop && tc filter add dev swp33 ingress protocol ip pref 11027 flower src_mac 02:46:d9:e9:e7:8d dst_mac 02:50:a7:84:db:b2 src_ip 60.4.48.172 dst_ip 99.165.39.188 ip_proto icmp code 71 type 0 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11028 flower src_mac 02:df:0e:25:70:62 dst_mac 02:5f:47:13:71:8d src_ip 56.171.22.183 dst_ip 32.99.221.228 ip_proto tcp src_port 37519 dst_port 31747 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11029 flower src_mac 02:f4:95:36:83:bf dst_mac 02:48:5f:c9:2b:7b vlan_id 1362 vlan_ethtype ip src_ip 39.26.149.99 dst_ip 21.237.137.98 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11030 flower src_mac 02:9d:28:66:7a:0b dst_mac 02:5c:bf:8d:28:f0 src_ip 70.50.43.247 dst_ip 30.239.189.179 ip_proto tcp src_port 59526 dst_port 46955 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11031 flower src_mac 02:f0:78:e1:f2:ae dst_mac 02:68:e9:4d:f1:dc action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11032 flower src_mac 02:cd:fd:85:de:b3 dst_mac 02:e2:a5:d8:93:0e vlan_id 238 vlan_ethtype ipv4 src_ip 12.51.22.18 dst_ip 108.205.74.62 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11033 flower src_mac 02:2d:44:25:aa:23 dst_mac 02:21:57:28:b1:83 vlan_id 2616 vlan_ethtype ipv4 src_ip 40.53.164.206 dst_ip 126.129.231.234 ip_proto tcp src_port 36489 dst_port 31930 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11034 flower src_mac 02:5b:6e:54:5c:c0 dst_mac 02:8d:a5:3c:a8:0d src_ip 113.146.159.17 dst_ip 97.22.230.237 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11035 flower src_mac 02:7e:67:63:a2:57 dst_mac 02:9a:64:15:b4:39 src_ip 60.53.163.51 dst_ip 91.172.92.82 ip_proto udp src_port 50708 dst_port 36825 action drop && tc filter add dev swp33 ingress protocol ip pref 11036 flower src_mac 02:a0:fa:03:86:86 dst_mac 02:89:80:2e:23:1f src_ip 41.228.223.94 dst_ip 105.174.101.216 ip_proto udp src_port 61495 dst_port 58877 action trap && tc filter add dev swp33 ingress protocol ip pref 11037 flower src_mac 02:e4:96:54:2c:5e dst_mac 02:a1:5e:59:73:0d src_ip 61.160.16.161 dst_ip 98.251.250.93 ip_proto udp src_port 23085 dst_port 18089 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11038 flower src_mac 02:57:58:a9:1c:06 dst_mac 02:f1:15:d1:e3:1c vlan_id 3845 vlan_ethtype 0x0800 src_ip 41.106.43.37 dst_ip 124.243.54.175 ip_proto udp src_port 16829 dst_port 55420 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11039 flower src_mac 02:41:a2:ab:f0:5f dst_mac 02:1a:e6:57:17:4a src_ip 76.202.74.156 dst_ip 116.77.28.147 ip_proto tcp src_port 43857 dst_port 15504 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11040 flower src_mac 02:29:13:7e:c1:06 dst_mac 02:b7:08:d1:c9:5e action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11041 flower src_mac 02:bd:f2:3f:b6:f8 dst_mac 02:07:ed:bf:3d:05 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11042 flower src_mac 02:87:f2:2d:42:eb dst_mac 02:ef:18:6a:09:f0 vlan_id 1402 vlan_ethtype ipv4 src_ip 58.157.97.200 dst_ip 20.37.186.30 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11043 flower src_mac 02:c8:f4:35:e1:0d dst_mac 02:06:34:62:83:4a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11044 flower src_mac 02:90:a6:60:9f:07 dst_mac 02:c4:b7:1d:d7:7c vlan_id 3775 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11045 flower src_mac 02:17:9f:47:30:2a dst_mac 02:23:b6:07:a2:5f src_ip 110.154.73.244 dst_ip 23.29.2.166 ip_proto udp src_port 61367 dst_port 41068 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11046 flower src_mac 02:43:50:db:79:19 dst_mac 02:8b:3d:7e:a0:28 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11047 flower src_mac 02:82:33:7b:10:88 dst_mac 02:6b:65:c5:58:c2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:e6:5f:5b:1a:82 dst_mac 02:7e:cd:5d:0d:91 vlan_id 2015 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11049 flower src_mac 02:2a:bf:0d:6f:12 dst_mac 02:59:5c:a0:37:55 src_ip 64.89.100.58 dst_ip 111.7.198.113 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11050 flower src_mac 02:97:b1:5c:1a:5b dst_mac 02:84:1b:d8:0c:1d vlan_id 1145 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11051 flower src_mac 02:9b:b0:64:34:c6 dst_mac 02:f0:c1:b1:87:44 vlan_id 1410 vlan_ethtype 0x0800 src_ip 83.100.50.149 dst_ip 29.16.255.107 ip_proto tcp src_port 53715 dst_port 21160 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11052 flower src_mac 02:83:cc:2a:b3:ca dst_mac 02:a8:78:30:d6:f2 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11053 flower src_mac 02:1f:14:30:fd:dc dst_mac 02:32:df:d1:50:40 src_ip 107.130.13.243 dst_ip 52.44.15.237 ip_proto udp src_port 45927 dst_port 26573 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11054 flower src_mac 02:31:80:5c:39:a3 dst_mac 02:65:d0:7d:ae:0e vlan_id 1639 vlan_ethtype ipv4 src_ip 42.61.19.94 dst_ip 11.177.173.216 ip_proto udp src_port 35520 dst_port 7673 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11055 flower src_mac 02:ab:1b:9e:b1:05 dst_mac 02:1d:f5:6e:32:78 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:2e:f3:75:60:3b dst_mac 02:2f:09:71:de:f0 vlan_id 2511 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11057 flower src_mac 02:43:da:b3:bf:d4 dst_mac 02:86:6b:90:15:ad vlan_id 1696 vlan_ethtype ipv4 src_ip 20.178.182.104 dst_ip 93.69.128.118 ip_proto udp src_port 59622 dst_port 55942 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11058 flower src_mac 02:ec:08:8a:93:6a dst_mac 02:92:b3:f3:f6:1d src_ip 48.195.2.187 dst_ip 74.16.132.3 action pass && tc filter add dev swp33 ingress protocol ip pref 11059 flower src_mac 02:2f:cc:c9:ba:ce dst_mac 02:2c:9f:5e:7f:47 src_ip 65.146.185.36 dst_ip 39.17.65.92 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11060 flower src_mac 02:8d:f8:69:7c:d0 dst_mac 02:0f:ce:2b:0c:94 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11061 flower src_mac 02:30:ab:bc:1e:07 dst_mac 02:b9:47:7d:50:3c vlan_id 1220 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11062 flower src_mac 02:d2:95:ce:c5:c6 dst_mac 02:5f:58:f0:20:ea src_ip 92.44.167.165 dst_ip 81.20.131.214 ip_proto udp src_port 27743 dst_port 62272 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11063 flower src_mac 02:bb:87:c6:fe:14 dst_mac 02:a1:0e:38:93:96 action drop && tc filter add dev swp33 ingress protocol ip pref 11064 flower src_mac 02:e6:b7:e1:68:9c dst_mac 02:e0:d4:51:98:a7 src_ip 27.163.2.52 dst_ip 49.118.19.31 ip_proto tcp src_port 8713 dst_port 2714 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11065 flower src_mac 02:8d:6e:cc:52:92 dst_mac 02:03:01:1f:bb:2b vlan_id 567 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11066 flower src_mac 02:46:4b:06:71:c0 dst_mac 02:a2:1d:dd:2d:b6 vlan_id 1597 vlan_ethtype 0x0800 src_ip 71.19.184.164 dst_ip 67.97.122.158 ip_proto udp src_port 48923 dst_port 46455 action drop && tc filter add dev swp33 ingress protocol ip pref 11067 flower src_mac 02:e6:7c:41:51:db dst_mac 02:d1:7f:e5:78:63 src_ip 116.208.102.84 dst_ip 67.241.153.235 ip_proto icmp code 166 type 18 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11068 flower src_mac 02:75:4d:b5:01:19 dst_mac 02:67:19:0c:92:b8 src_ip 105.209.62.7 dst_ip 49.161.67.196 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11069 flower src_mac 02:a8:26:43:80:5a dst_mac 02:36:84:28:16:a5 vlan_id 3106 vlan_ethtype ipv4 src_ip 108.228.216.197 dst_ip 81.31.113.141 ip_proto tcp src_port 54796 dst_port 25979 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11070 flower src_mac 02:c7:06:fe:ed:34 dst_mac 02:e1:51:99:d9:8e vlan_id 3186 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11071 flower src_mac 02:f7:c1:46:78:f5 dst_mac 02:93:17:ce:35:fd action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11072 flower src_mac 02:82:09:63:61:be dst_mac 02:e5:40:33:06:bb src_ip 66.176.222.43 dst_ip 126.236.127.188 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11073 flower src_mac 02:7f:a3:f7:43:67 dst_mac 02:8f:a7:6e:45:1a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11074 flower src_mac 02:d7:ef:8f:f6:07 dst_mac 02:66:25:39:ad:b4 vlan_id 628 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11075 flower src_mac 02:0f:25:6a:80:37 dst_mac 02:a6:fa:f7:42:8c src_ip 91.175.101.94 dst_ip 17.199.143.88 ip_proto tcp src_port 20088 dst_port 21462 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11076 flower src_mac 02:b1:4c:93:86:18 dst_mac 02:3b:bc:aa:57:d9 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11077 flower src_mac 02:e3:ec:f0:01:bb dst_mac 02:bd:5f:a0:09:12 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11078 flower src_mac 02:ec:12:96:bb:0e dst_mac 02:76:39:bf:05:11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11079 flower src_mac 02:cf:96:bf:78:38 dst_mac 02:cd:3b:f1:bb:36 vlan_id 2214 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11080 flower src_mac 02:ee:d1:ad:e3:e1 dst_mac 02:14:0b:1c:01:6d src_ip 73.97.204.236 dst_ip 120.213.57.62 ip_proto tcp src_port 11252 dst_port 57093 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11081 flower src_mac 02:ff:96:fa:c3:c1 dst_mac 02:fd:60:06:9d:14 vlan_id 2577 vlan_ethtype ipv4 src_ip 112.129.175.98 dst_ip 113.9.235.53 ip_proto udp src_port 603 dst_port 19340 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11082 flower src_mac 02:8c:a8:b1:d4:aa dst_mac 02:3b:7b:9a:40:1c vlan_id 312 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11083 flower src_mac 02:c4:c2:1c:6b:01 dst_mac 02:06:ef:55:12:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11084 flower src_mac 02:c9:b3:60:bc:39 dst_mac 02:bd:14:1f:77:61 vlan_id 1878 vlan_ethtype 0x0800 src_ip 121.50.64.173 dst_ip 27.118.112.195 ip_proto tcp src_port 19692 dst_port 10694 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11085 flower src_mac 02:ed:75:42:cc:e4 dst_mac 02:42:c1:0b:96:88 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11086 flower src_mac 02:09:60:45:d3:04 dst_mac 02:b7:21:c3:48:8c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11087 flower src_mac 02:4f:c1:a0:ca:7e dst_mac 02:76:51:65:a3:a6 vlan_id 1842 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11088 flower src_mac 02:4b:b4:88:c0:20 dst_mac 02:32:52:49:d5:86 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11089 flower src_mac 02:05:22:9c:19:9b dst_mac 02:8c:8d:ba:a6:d6 vlan_id 1690 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11090 flower src_mac 02:89:33:6f:7d:32 dst_mac 02:67:6e:38:17:6b action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11091 flower src_mac 02:78:43:ca:c0:bc dst_mac 02:b8:8b:46:2d:f1 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11092 flower src_mac 02:64:02:50:77:8a dst_mac 02:e7:91:c0:d4:0c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11093 flower src_mac 02:64:f2:32:76:9c dst_mac 02:1e:49:b6:5c:69 vlan_id 688 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11094 flower src_mac 02:39:59:67:c6:76 dst_mac 02:74:97:f7:f0:22 vlan_id 1806 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11095 flower src_mac 02:d6:62:07:b1:8b dst_mac 02:e2:43:af:3b:cd vlan_id 3696 vlan_ethtype 0x0800 src_ip 106.253.145.30 dst_ip 84.169.106.18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:1e:26:08:1a:be dst_mac 02:b6:3b:40:22:88 vlan_id 3381 vlan_ethtype 0x0800 src_ip 28.214.198.177 dst_ip 66.10.96.156 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11097 flower src_mac 02:a2:80:08:5c:c8 dst_mac 02:fb:5a:1f:40:41 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11098 flower src_mac 02:da:db:15:b8:74 dst_mac 02:80:ca:d1:5e:bf vlan_id 1450 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11099 flower src_mac 02:da:03:4d:c6:1b dst_mac 02:6d:11:6a:9f:73 src_ip 23.16.246.246 dst_ip 75.152.144.54 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11100 flower src_mac 02:8d:5f:d9:b1:97 dst_mac 02:29:05:04:53:3f vlan_id 2476 vlan_ethtype 0x0800 src_ip 62.129.232.67 dst_ip 29.161.212.173 ip_proto tcp src_port 36597 dst_port 2518 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11101 flower src_mac 02:b7:44:0b:fd:01 dst_mac 02:97:5e:8a:0c:83 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11102 flower src_mac 02:73:50:8d:f6:5e dst_mac 02:d6:b0:94:06:48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11103 flower src_mac 02:9e:5a:49:57:e1 dst_mac 02:bd:83:fa:57:50 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11104 flower src_mac 02:88:7b:10:40:2f dst_mac 02:ba:cb:7b:b6:a8 vlan_id 3266 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11105 flower src_mac 02:55:5f:fb:d9:7f dst_mac 02:c9:d5:5a:a1:4e vlan_id 1414 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11106 flower src_mac 02:37:2d:c4:cc:2d dst_mac 02:0c:3a:3e:b8:e3 vlan_id 2258 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11107 flower src_mac 02:03:49:7e:c2:b5 dst_mac 02:9f:a0:66:3f:1c vlan_id 3034 vlan_ethtype ipv4 src_ip 116.142.41.178 dst_ip 21.2.239.136 ip_proto udp src_port 4441 dst_port 38010 action trap && tc filter add dev swp33 ingress protocol ip pref 11108 flower src_mac 02:fd:e8:27:ea:93 dst_mac 02:fb:9e:de:bc:85 src_ip 77.171.88.170 dst_ip 37.106.201.27 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11109 flower src_mac 02:5b:bc:c3:3d:91 dst_mac 02:3e:52:2d:ab:d2 src_ip 41.111.55.62 dst_ip 77.254.155.7 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11110 flower src_mac 02:02:71:97:75:96 dst_mac 02:9d:f0:f5:cb:cc src_ip 74.249.15.213 dst_ip 113.46.155.92 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11111 flower src_mac 02:b6:63:6e:69:4b dst_mac 02:5a:e0:eb:3a:f9 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11112 flower src_mac 02:b9:28:ca:a0:2b dst_mac 02:d6:55:1a:21:0c src_ip 78.37.176.187 dst_ip 71.96.214.167 ip_proto udp src_port 32675 dst_port 16843 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11113 flower src_mac 02:eb:f0:23:ca:11 dst_mac 02:f2:15:00:c2:90 vlan_id 1367 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11114 flower src_mac 02:5f:40:81:6e:86 dst_mac 02:44:13:52:02:4b vlan_id 3105 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11115 flower src_mac 02:1d:98:59:4b:98 dst_mac 02:c4:92:ab:01:59 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11116 flower src_mac 02:d6:93:06:92:51 dst_mac 02:ab:4f:bc:81:9e vlan_id 3469 vlan_ethtype ipv4 src_ip 45.28.73.166 dst_ip 67.122.151.28 ip_proto udp src_port 39931 dst_port 23252 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11117 flower src_mac 02:96:07:fd:1f:61 dst_mac 02:c1:10:5f:3e:55 vlan_id 1001 vlan_ethtype ipv4 src_ip 72.214.5.139 dst_ip 39.55.227.186 action trap && tc filter add dev swp33 ingress protocol ip pref 11118 flower src_mac 02:3a:70:93:37:1c dst_mac 02:4d:30:d5:9c:e6 src_ip 14.172.94.134 dst_ip 56.201.199.11 ip_proto tcp src_port 49020 dst_port 5883 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11119 flower src_mac 02:55:ac:17:33:64 dst_mac 02:c0:d1:73:d6:05 vlan_id 3134 vlan_ethtype ip src_ip 70.231.70.50 dst_ip 86.131.95.66 ip_proto udp src_port 22695 dst_port 35782 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11120 flower src_mac 02:0f:ac:2a:6b:8e dst_mac 02:ae:7f:ce:cb:d8 vlan_id 3234 vlan_ethtype ipv4 src_ip 69.192.172.60 dst_ip 113.206.94.147 ip_proto udp src_port 34364 dst_port 13398 action pass && tc filter add dev swp33 ingress protocol ip pref 11121 flower src_mac 02:a5:bc:1e:d8:70 dst_mac 02:3d:a8:3f:b3:57 src_ip 65.175.81.201 dst_ip 64.57.254.11 ip_proto tcp src_port 34055 dst_port 8966 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11122 flower src_mac 02:7f:9d:52:12:84 dst_mac 02:c5:5a:1f:83:06 src_ip 38.242.78.147 dst_ip 81.26.68.125 ip_proto udp src_port 27974 dst_port 60306 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11123 flower src_mac 02:d0:56:ab:3c:ec dst_mac 02:45:00:53:fa:1a vlan_id 573 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11124 flower src_mac 02:dd:ea:a0:e5:ef dst_mac 02:c3:08:a8:5f:7b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11125 flower src_mac 02:d2:7d:4b:d9:ab dst_mac 02:a1:f0:63:b1:06 vlan_id 3736 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11126 flower src_mac 02:e8:b9:be:d6:13 dst_mac 02:af:08:54:5d:cf vlan_id 1731 vlan_ethtype 0x0800 src_ip 37.99.25.41 dst_ip 48.41.179.171 ip_proto tcp src_port 41558 dst_port 19998 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11127 flower src_mac 02:eb:29:af:68:24 dst_mac 02:9f:7a:61:cb:18 vlan_id 982 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11128 flower src_mac 02:24:38:b9:f9:46 dst_mac 02:3a:19:6f:21:2e vlan_id 2622 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11129 flower src_mac 02:43:0e:9d:cc:49 dst_mac 02:a6:3e:46:ea:94 vlan_id 1661 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11130 flower src_mac 02:37:6a:4a:5d:3f dst_mac 02:c9:a7:22:f9:56 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11131 flower src_mac 02:4b:69:6a:b7:6c dst_mac 02:dd:b7:1c:a7:5d src_ip 32.211.178.32 dst_ip 41.200.154.130 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11132 flower src_mac 02:9d:fa:38:c8:5d dst_mac 02:23:ca:7c:51:c6 vlan_id 2315 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11133 flower src_mac 02:46:ea:39:80:e0 dst_mac 02:5d:f1:7b:ff:dc vlan_id 3456 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11134 flower src_mac 02:66:c5:ac:6a:ed dst_mac 02:17:5e:6c:8b:3f src_ip 98.124.189.198 dst_ip 116.113.212.178 ip_proto icmp code 45 type 12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11135 flower src_mac 02:9d:97:f8:24:6e dst_mac 02:10:36:a2:25:f2 vlan_id 2788 vlan_ethtype ip src_ip 44.54.91.162 dst_ip 73.66.232.113 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11136 flower src_mac 02:70:5a:58:1a:47 dst_mac 02:5e:11:fd:26:ee src_ip 11.199.218.220 dst_ip 101.111.113.168 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11137 flower src_mac 02:8e:c7:38:10:27 dst_mac 02:8a:e1:33:fd:a5 vlan_id 815 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11138 flower src_mac 02:07:93:fc:12:3a dst_mac 02:ee:fa:1e:a8:48 vlan_id 3592 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11139 flower src_mac 02:01:f1:de:d7:bd dst_mac 02:69:43:92:b7:48 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11140 flower src_mac 02:c4:3e:6b:78:48 dst_mac 02:b6:c7:55:d6:8d vlan_id 1873 vlan_ethtype ip src_ip 101.187.154.163 dst_ip 75.60.105.159 ip_proto tcp src_port 55140 dst_port 37915 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11141 flower src_mac 02:d4:7c:2c:f9:55 dst_mac 02:8c:c6:90:7b:a4 vlan_id 3228 vlan_ethtype 0x0800 src_ip 86.98.222.140 dst_ip 104.143.143.144 ip_proto tcp src_port 5133 dst_port 7363 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11142 flower src_mac 02:f7:de:d5:cb:7f dst_mac 02:20:b9:35:4f:d9 src_ip 13.43.213.78 dst_ip 122.169.254.190 ip_proto tcp src_port 12767 dst_port 60547 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11143 flower src_mac 02:b5:50:be:b8:9c dst_mac 02:35:45:38:64:64 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11144 flower src_mac 02:a3:f6:fb:58:0e dst_mac 02:55:da:05:ec:a2 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11145 flower src_mac 02:0f:41:63:28:ce dst_mac 02:90:b5:d7:57:66 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11146 flower src_mac 02:16:9d:25:e9:fe dst_mac 02:ea:b2:29:e3:00 vlan_id 1669 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 11147 flower src_mac 02:95:90:c8:1f:da dst_mac 02:73:16:f8:49:99 src_ip 95.252.228.143 dst_ip 75.170.57.8 ip_proto icmp code 240 type 18 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11148 flower src_mac 02:c5:3a:99:38:da dst_mac 02:e9:ec:33:6f:03 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11149 flower src_mac 02:d2:3a:61:35:24 dst_mac 02:fa:20:bd:8e:f4 vlan_id 2935 vlan_ethtype 0x0800 src_ip 31.98.69.106 dst_ip 33.37.122.157 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11150 flower src_mac 02:a0:9c:97:ef:72 dst_mac 02:92:d2:31:2a:6c vlan_id 802 vlan_ethtype 0x0800 src_ip 76.174.240.125 dst_ip 13.249.8.107 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11151 flower src_mac 02:8e:04:b6:82:43 dst_mac 02:9f:2d:f3:2e:61 vlan_id 3042 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11152 flower src_mac 02:80:45:00:50:43 dst_mac 02:cf:15:31:bb:8b vlan_id 3264 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11153 flower src_mac 02:65:75:f3:8b:cd dst_mac 02:f2:cf:16:7d:1b vlan_id 2316 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11154 flower src_mac 02:f5:07:17:44:ed dst_mac 02:95:fc:0e:f8:38 src_ip 54.153.154.89 dst_ip 43.97.233.57 ip_proto udp src_port 35215 dst_port 54052 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11155 flower src_mac 02:f2:3a:1d:01:80 dst_mac 02:14:76:67:5c:ff vlan_id 2141 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11156 flower src_mac 02:24:17:c8:c9:35 dst_mac 02:85:38:7b:82:72 vlan_id 3094 vlan_ethtype ip src_ip 41.166.118.152 dst_ip 33.28.145.146 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11157 flower src_mac 02:b5:64:62:46:65 dst_mac 02:2f:bb:5f:0c:5b vlan_id 545 vlan_ethtype 0x0800 src_ip 39.248.210.205 dst_ip 36.81.106.20 action pass && tc filter add dev swp33 ingress protocol ip pref 11158 flower src_mac 02:4d:f1:78:4e:d7 dst_mac 02:e9:dc:0a:cb:5b src_ip 107.63.216.237 dst_ip 34.17.85.215 ip_proto udp src_port 50573 dst_port 52692 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11159 flower src_mac 02:38:40:f4:ab:11 dst_mac 02:9b:85:b8:91:9c vlan_id 3632 vlan_ethtype ip src_ip 120.176.248.243 dst_ip 74.244.222.21 ip_proto tcp src_port 49913 dst_port 36344 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11160 flower src_mac 02:d8:58:7d:57:1e dst_mac 02:24:e7:78:72:8f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11161 flower src_mac 02:c3:f3:03:2a:89 dst_mac 02:2d:36:95:38:6a vlan_id 2362 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11162 flower src_mac 02:f6:d0:db:ae:ef dst_mac 02:06:cc:56:ab:5e vlan_id 677 vlan_ethtype ip src_ip 93.81.66.30 dst_ip 96.212.120.53 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11163 flower src_mac 02:11:66:39:50:93 dst_mac 02:14:bb:cf:27:2a vlan_id 2934 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11164 flower src_mac 02:8f:17:2b:3b:6f dst_mac 02:96:82:82:10:c9 src_ip 114.227.172.7 dst_ip 74.234.77.181 ip_proto icmp code 181 type 0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11165 flower src_mac 02:d7:f4:11:21:95 dst_mac 02:73:99:c9:eb:af vlan_id 2233 vlan_ethtype 0x0800 src_ip 97.56.53.110 dst_ip 35.138.48.7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:86:bd:e6:fb:f8 dst_mac 02:9e:50:0f:21:66 vlan_id 2482 vlan_ethtype 0x0800 src_ip 102.1.107.152 dst_ip 26.218.36.129 ip_proto tcp src_port 24158 dst_port 57486 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11167 flower src_mac 02:6d:c4:78:c6:c9 dst_mac 02:10:9f:0a:dc:36 src_ip 21.192.189.213 dst_ip 123.118.206.119 ip_proto tcp src_port 44835 dst_port 62848 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11168 flower src_mac 02:87:35:e4:ef:64 dst_mac 02:66:70:6d:d7:75 src_ip 73.172.22.245 dst_ip 95.248.3.6 ip_proto icmp code 106 type 16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11169 flower src_mac 02:25:9b:1b:39:fb dst_mac 02:6c:13:ff:c3:47 src_ip 47.156.182.119 dst_ip 44.34.25.232 ip_proto tcp src_port 10940 dst_port 38360 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11170 flower src_mac 02:73:54:81:55:f6 dst_mac 02:35:e4:65:42:71 src_ip 41.219.188.197 dst_ip 95.63.40.186 ip_proto udp src_port 27935 dst_port 2295 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11171 flower src_mac 02:ca:1a:34:d2:7e dst_mac 02:e0:f8:18:25:0a vlan_id 3871 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11172 flower src_mac 02:52:81:4f:1c:2e dst_mac 02:ab:60:41:7b:ad vlan_id 1505 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11173 flower src_mac 02:e5:63:8a:9c:38 dst_mac 02:50:cb:1f:2d:87 vlan_id 3791 vlan_ethtype ipv4 src_ip 85.199.222.89 dst_ip 92.183.96.153 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11174 flower src_mac 02:d5:e4:a6:6f:ec dst_mac 02:ce:e0:c9:2a:09 action trap && tc filter add dev swp33 ingress protocol ip pref 11175 flower src_mac 02:c9:6d:f9:27:eb dst_mac 02:15:39:3a:65:e9 src_ip 116.170.49.229 dst_ip 111.86.215.119 ip_proto udp src_port 48165 dst_port 32336 action drop && tc filter add dev swp33 ingress protocol ip pref 11176 flower src_mac 02:69:df:3b:13:2c dst_mac 02:59:87:33:85:3e src_ip 54.89.101.96 dst_ip 37.17.214.106 ip_proto udp src_port 41405 dst_port 2201 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11177 flower src_mac 02:bf:a0:a4:71:cf dst_mac 02:50:e3:44:0d:d1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11178 flower src_mac 02:1d:98:50:f4:4a dst_mac 02:d0:6f:76:f0:da vlan_id 428 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11179 flower src_mac 02:fa:ab:75:76:b5 dst_mac 02:21:75:1f:89:29 vlan_id 3810 vlan_ethtype ipv4 src_ip 52.147.120.161 dst_ip 72.59.72.236 ip_proto tcp src_port 35845 dst_port 18824 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11180 flower src_mac 02:bc:d1:b0:7a:22 dst_mac 02:6d:eb:c5:ee:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11181 flower src_mac 02:16:ed:92:8b:fa dst_mac 02:44:3d:8f:ad:d9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11182 flower src_mac 02:a5:b2:16:c6:d4 dst_mac 02:cd:81:ce:c1:b1 vlan_id 1199 vlan_ethtype ipv4 src_ip 82.205.143.214 dst_ip 64.242.22.119 ip_proto udp src_port 6958 dst_port 10929 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11183 flower src_mac 02:6b:de:64:0b:33 dst_mac 02:63:9b:5b:06:8e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11184 flower src_mac 02:a6:4f:c0:af:05 dst_mac 02:67:bc:e5:9e:6c vlan_id 4017 vlan_ethtype ip src_ip 55.124.78.59 dst_ip 86.67.84.221 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11185 flower src_mac 02:e4:9f:b4:14:3e dst_mac 02:ac:dd:4f:00:dd vlan_id 1931 vlan_ethtype ipv4 src_ip 66.72.152.230 dst_ip 22.195.15.216 ip_proto tcp src_port 17957 dst_port 44141 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11186 flower src_mac 02:86:a2:52:23:55 dst_mac 02:b2:e2:93:db:e7 vlan_id 2543 vlan_ethtype 0x0800 src_ip 107.28.253.63 dst_ip 71.161.129.5 ip_proto tcp src_port 20174 dst_port 47691 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11187 flower src_mac 02:d6:9d:23:16:e5 dst_mac 02:68:e9:40:4b:a4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11188 flower src_mac 02:d7:f8:0f:6f:c2 dst_mac 02:6f:a5:de:58:87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11189 flower src_mac 02:6e:f6:f2:2a:dd dst_mac 02:7d:d8:31:f2:67 vlan_id 3299 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11190 flower src_mac 02:bb:f8:2e:4e:d4 dst_mac 02:3e:d5:9c:16:4c src_ip 41.229.45.177 dst_ip 95.73.30.36 ip_proto icmp code 46 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11191 flower src_mac 02:99:0c:14:e7:2a dst_mac 02:9f:01:1e:9d:e2 vlan_id 2444 vlan_ethtype ipv4 src_ip 53.42.160.153 dst_ip 38.50.49.7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11192 flower src_mac 02:11:3e:e9:b3:13 dst_mac 02:34:f6:02:6f:60 vlan_id 3011 vlan_ethtype ipv4 src_ip 102.255.157.219 dst_ip 95.214.113.37 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11193 flower src_mac 02:b7:fb:a8:2c:c0 dst_mac 02:85:03:70:ee:88 vlan_id 3325 vlan_ethtype ipv4 src_ip 39.230.2.4 dst_ip 98.248.130.161 ip_proto tcp src_port 45665 dst_port 13257 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11194 flower src_mac 02:44:e0:53:05:bc dst_mac 02:4e:d8:b7:69:2e vlan_id 2027 vlan_ethtype 0x0800 src_ip 99.37.12.213 dst_ip 105.243.242.122 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11195 flower src_mac 02:cc:aa:0c:1f:8c dst_mac 02:2a:91:16:24:8f vlan_id 285 vlan_ethtype ip src_ip 103.86.122.79 dst_ip 22.46.13.206 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11196 flower src_mac 02:59:70:4e:2f:70 dst_mac 02:31:b7:ee:ba:3d vlan_id 765 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11197 flower src_mac 02:14:49:38:b0:be dst_mac 02:75:3f:ef:dc:90 src_ip 69.236.113.128 dst_ip 32.247.24.49 ip_proto icmp code 150 type 13 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11198 flower src_mac 02:02:ae:7f:f3:36 dst_mac 02:b6:2a:d3:46:89 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11199 flower src_mac 02:3a:b8:48:84:2a dst_mac 02:68:89:99:db:8d action pass INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 11200 flower src_mac 02:25:12:e2:c5:47 dst_mac 02:da:c7:49:0e:e0 src_ip 25.27.156.171 dst_ip 64.105.30.98 ip_proto udp src_port 11371 dst_port 47942 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11201 flower src_mac 02:bc:5f:f8:9f:a4 dst_mac 02:dd:aa:f1:6f:38 vlan_id 1271 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11202 flower src_mac 02:9a:82:8d:1a:bc dst_mac 02:ed:23:0b:06:5a action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11203 flower src_mac 02:82:07:34:3a:81 dst_mac 02:49:0a:81:48:1d action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11204 flower src_mac 02:b7:6f:53:eb:f7 dst_mac 02:a3:a4:1c:b6:d9 src_ip 76.183.54.249 dst_ip 26.19.5.146 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11205 flower src_mac 02:7d:ee:82:ff:e5 dst_mac 02:27:62:1c:a3:82 vlan_id 2087 vlan_ethtype ip src_ip 99.230.25.93 dst_ip 120.228.14.162 ip_proto tcp src_port 16599 dst_port 9124 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11206 flower src_mac 02:c9:71:f1:73:aa dst_mac 02:5e:8f:52:b1:f8 src_ip 32.127.13.4 dst_ip 42.223.210.219 ip_proto tcp src_port 52192 dst_port 7596 action drop && tc filter add dev swp33 ingress protocol ip pref 11207 flower src_mac 02:c9:c3:88:d0:7f dst_mac 02:33:83:49:e5:09 src_ip 67.87.145.220 dst_ip 35.178.111.79 ip_proto tcp src_port 18779 dst_port 130 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11208 flower src_mac 02:99:82:4a:59:99 dst_mac 02:c0:3c:51:b3:53 src_ip 33.51.127.217 dst_ip 11.179.23.2 ip_proto udp src_port 7187 dst_port 12098 action trap && tc filter add dev swp33 ingress protocol ip pref 11209 flower src_mac 02:41:f0:be:e7:e8 dst_mac 02:b8:93:0c:0a:6a src_ip 112.59.220.67 dst_ip 68.37.81.139 ip_proto tcp src_port 5406 dst_port 3242 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11210 flower src_mac 02:ac:6f:81:7c:2c dst_mac 02:fb:a4:69:35:99 src_ip 23.200.30.135 dst_ip 23.111.56.29 ip_proto tcp src_port 34837 dst_port 4689 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11211 flower src_mac 02:bc:d2:f1:fb:8d dst_mac 02:b0:a4:4b:39:e2 vlan_id 3449 vlan_ethtype ip src_ip 115.107.106.27 dst_ip 76.55.189.208 action drop && tc filter add dev swp33 ingress protocol ip pref 11212 flower src_mac 02:27:8a:bf:76:fb dst_mac 02:d2:66:6d:6b:14 src_ip 117.219.199.1 dst_ip 107.7.113.160 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11213 flower src_mac 02:c1:78:ce:86:f7 dst_mac 02:3d:e2:7e:6a:d3 src_ip 38.255.9.54 dst_ip 89.211.243.91 ip_proto tcp src_port 47219 dst_port 61999 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11214 flower src_mac 02:2d:7a:a2:a6:af dst_mac 02:e5:c8:e1:5e:32 src_ip 118.174.241.243 dst_ip 126.164.165.80 ip_proto icmp code 81 type 5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:0c:04:9d:09:85 dst_mac 02:69:ff:82:b8:7b vlan_id 485 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11216 flower src_mac 02:03:94:f4:4f:4f dst_mac 02:b3:ce:03:1a:db vlan_id 927 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11217 flower src_mac 02:09:26:99:a7:c1 dst_mac 02:32:79:bd:8d:76 vlan_id 1032 vlan_ethtype ip src_ip 115.12.140.209 dst_ip 60.145.121.223 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11218 flower src_mac 02:01:93:fd:22:79 dst_mac 02:82:0d:9b:8c:6d vlan_id 1634 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11219 flower src_mac 02:f4:94:d3:45:1d dst_mac 02:c3:0f:0f:ab:de action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11220 flower src_mac 02:aa:32:36:63:ad dst_mac 02:94:bf:19:e6:e5 src_ip 93.141.98.177 dst_ip 107.78.166.135 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11221 flower src_mac 02:d0:10:47:a2:93 dst_mac 02:66:c2:40:15:3d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11222 flower src_mac 02:0b:74:75:10:19 dst_mac 02:a0:62:e0:b0:5c vlan_id 3717 vlan_ethtype ip src_ip 64.60.213.89 dst_ip 31.168.245.235 ip_proto tcp src_port 64760 dst_port 15088 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11223 flower src_mac 02:af:6d:7a:c8:dd dst_mac 02:70:4c:fd:a5:60 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11224 flower src_mac 02:07:b6:be:d4:36 dst_mac 02:26:e8:f4:3d:0a vlan_id 3279 vlan_ethtype 0x0800 src_ip 72.24.134.246 dst_ip 41.249.129.61 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:64:00:e2:7c:39 dst_mac 02:34:44:bb:26:f1 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11226 flower src_mac 02:12:a8:8c:bb:0b dst_mac 02:58:6f:d9:56:78 vlan_id 2535 vlan_ethtype ip src_ip 104.133.62.2 dst_ip 28.202.3.108 ip_proto tcp src_port 28473 dst_port 56736 action trap && tc filter add dev swp33 ingress protocol ip pref 11227 flower src_mac 02:b7:67:b4:5d:b7 dst_mac 02:49:e7:14:d9:89 src_ip 25.160.216.57 dst_ip 87.103.247.130 ip_proto icmp code 104 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11228 flower src_mac 02:c7:4e:5e:84:c9 dst_mac 02:7f:9f:ba:e6:c1 action trap && tc filter add dev swp33 ingress protocol ip pref 11229 flower src_mac 02:50:01:86:9c:fe dst_mac 02:94:4b:c1:d8:25 src_ip 121.118.92.133 dst_ip 32.124.241.180 ip_proto udp src_port 12557 dst_port 12684 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11230 flower src_mac 02:69:3c:18:3e:2b dst_mac 02:ac:c5:c7:8f:b8 vlan_id 1074 vlan_ethtype ipv4 src_ip 44.4.89.139 dst_ip 68.181.108.195 ip_proto udp src_port 3473 dst_port 43666 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11231 flower src_mac 02:e5:b6:8f:85:da dst_mac 02:96:ea:34:48:ac src_ip 45.248.70.250 dst_ip 73.121.30.24 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11232 flower src_mac 02:47:62:8e:51:b1 dst_mac 02:da:cc:cb:dc:66 vlan_id 781 vlan_ethtype ipv4 src_ip 61.105.94.219 dst_ip 119.234.120.166 ip_proto udp src_port 49892 dst_port 37818 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11233 flower src_mac 02:57:69:df:82:de dst_mac 02:5f:d1:0b:87:3a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11234 flower src_mac 02:87:61:fd:91:b1 dst_mac 02:23:cb:5a:3e:7d src_ip 47.36.98.183 dst_ip 19.58.120.162 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11235 flower src_mac 02:86:e8:31:9c:e1 dst_mac 02:30:ee:ae:e4:b5 vlan_id 3697 vlan_ethtype 0x0800 src_ip 110.27.31.113 dst_ip 12.57.173.185 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11236 flower src_mac 02:e8:d7:ba:78:df dst_mac 02:9c:2c:53:7d:1d action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11237 flower src_mac 02:fe:33:05:4e:08 dst_mac 02:44:17:8e:55:45 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11238 flower src_mac 02:2b:e6:48:ee:25 dst_mac 02:39:bb:33:b0:96 vlan_id 2917 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11239 flower src_mac 02:90:47:9d:6d:8a dst_mac 02:ee:af:57:1c:70 vlan_id 3104 vlan_ethtype ip src_ip 97.182.221.122 dst_ip 13.80.227.69 ip_proto udp src_port 3802 dst_port 50099 action pass && tc filter add dev swp33 ingress protocol ip pref 11240 flower src_mac 02:a7:30:9b:15:49 dst_mac 02:9e:1d:22:7a:59 src_ip 87.149.112.227 dst_ip 100.161.70.103 ip_proto udp src_port 2663 dst_port 11713 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11241 flower src_mac 02:28:3a:24:1c:d6 dst_mac 02:23:4e:bc:48:28 action drop && tc filter add dev swp33 ingress protocol ip pref 11242 flower src_mac 02:02:d3:4c:b1:37 dst_mac 02:f2:51:f5:eb:c4 src_ip 47.228.149.77 dst_ip 26.222.167.130 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11243 flower src_mac 02:a4:fc:d4:84:39 dst_mac 02:8b:b7:79:e3:e9 src_ip 81.74.55.6 dst_ip 72.110.202.67 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11244 flower src_mac 02:0b:5f:43:f3:bb dst_mac 02:7f:db:07:4a:92 src_ip 31.16.199.50 dst_ip 62.134.36.238 ip_proto icmp code 106 type 13 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11245 flower src_mac 02:8f:23:f3:aa:07 dst_mac 02:83:bc:c7:b0:e4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11246 flower src_mac 02:ed:3c:8b:a7:77 dst_mac 02:1a:ab:19:bc:e2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11247 flower src_mac 02:9e:fe:cc:98:94 dst_mac 02:04:c2:c3:64:ff vlan_id 2078 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11248 flower src_mac 02:30:70:09:f3:a8 dst_mac 02:6b:11:79:e0:a9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11249 flower src_mac 02:8e:80:7f:1c:58 dst_mac 02:81:39:22:e3:42 vlan_id 1923 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11250 flower src_mac 02:16:2b:3a:c3:3e dst_mac 02:f2:48:5a:ba:08 src_ip 34.85.148.217 dst_ip 110.167.215.54 ip_proto icmp code 220 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11251 flower src_mac 02:37:a5:71:1e:5d dst_mac 02:e6:b0:ad:b3:9a vlan_id 3938 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11252 flower src_mac 02:0d:ad:18:39:01 dst_mac 02:10:c4:41:45:92 src_ip 99.54.209.40 dst_ip 46.138.41.1 ip_proto udp src_port 1012 dst_port 42067 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11253 flower src_mac 02:3f:ad:ac:cb:cf dst_mac 02:8b:a0:28:52:da vlan_id 147 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11254 flower src_mac 02:90:6f:d7:c7:92 dst_mac 02:ff:8f:08:4f:62 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11255 flower src_mac 02:a4:ab:ae:9e:84 dst_mac 02:0f:d9:f7:ed:9e vlan_id 2307 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11256 flower src_mac 02:f2:57:f9:a1:85 dst_mac 02:dd:5e:f5:93:d5 src_ip 70.50.164.211 dst_ip 92.147.59.185 ip_proto tcp src_port 9175 dst_port 14865 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11257 flower src_mac 02:b2:54:87:b0:33 dst_mac 02:c3:aa:34:48:28 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11258 flower src_mac 02:63:ba:f2:53:cc dst_mac 02:80:41:7f:51:1c action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11259 flower src_mac 02:08:b1:94:ab:fb dst_mac 02:74:52:10:24:29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11260 flower src_mac 02:ff:0d:f5:fd:20 dst_mac 02:47:78:d3:09:6e vlan_id 839 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11261 flower src_mac 02:3b:b3:de:30:69 dst_mac 02:4b:3b:43:2a:32 vlan_id 735 vlan_ethtype ip src_ip 60.194.230.172 dst_ip 73.187.224.55 ip_proto udp src_port 59670 dst_port 23416 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11262 flower src_mac 02:9e:28:fb:c3:19 dst_mac 02:ed:99:47:f3:6f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11263 flower src_mac 02:47:31:71:5a:e1 dst_mac 02:56:eb:dd:d5:7d vlan_id 3716 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11264 flower src_mac 02:bb:b7:45:7b:52 dst_mac 02:6b:85:3b:af:0f vlan_id 608 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11265 flower src_mac 02:82:05:57:0d:3d dst_mac 02:aa:e0:95:e6:a7 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11266 flower src_mac 02:bc:48:e4:08:6b dst_mac 02:7f:2f:91:dc:26 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:02:11:c5:3d:ba dst_mac 02:7d:46:f3:d3:ec vlan_id 622 vlan_ethtype ipv4 src_ip 82.216.10.68 dst_ip 49.146.202.133 ip_proto udp src_port 23301 dst_port 30809 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11268 flower src_mac 02:b5:1c:79:1b:32 dst_mac 02:5a:2f:2a:89:df src_ip 99.122.222.207 dst_ip 21.99.191.142 ip_proto udp src_port 28186 dst_port 49729 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11269 flower src_mac 02:df:99:c5:d5:59 dst_mac 02:0a:16:46:48:86 vlan_id 1438 vlan_ethtype ipv4 src_ip 84.38.238.100 dst_ip 123.1.24.184 ip_proto udp src_port 1421 dst_port 42205 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11270 flower src_mac 02:21:cb:3f:fe:ef dst_mac 02:d7:1f:cd:2d:28 vlan_id 3381 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11271 flower src_mac 02:9a:b3:d9:37:f8 dst_mac 02:7e:3e:a0:c0:a9 vlan_id 411 vlan_ethtype ipv4 src_ip 62.152.16.59 dst_ip 11.192.254.193 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11272 flower src_mac 02:47:21:cb:bf:98 dst_mac 02:ff:7a:b8:ce:41 vlan_id 969 vlan_ethtype ip src_ip 105.125.144.3 dst_ip 43.81.184.223 ip_proto tcp src_port 5727 dst_port 54652 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11273 flower src_mac 02:2e:64:3b:b1:cb dst_mac 02:5d:f2:02:5f:a9 action drop && tc filter add dev swp33 ingress protocol ip pref 11274 flower src_mac 02:ac:5e:c5:20:04 dst_mac 02:f4:c9:90:55:1c src_ip 91.67.110.30 dst_ip 104.198.131.230 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11275 flower src_mac 02:2a:72:86:4c:31 dst_mac 02:7e:3f:46:67:1f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11276 flower src_mac 02:4e:54:3a:46:a0 dst_mac 02:d9:3c:08:8e:c6 vlan_id 1088 vlan_ethtype 0x0800 src_ip 13.43.232.129 dst_ip 123.47.222.121 ip_proto tcp src_port 25354 dst_port 34017 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11277 flower src_mac 02:b4:d8:6a:37:ce dst_mac 02:0a:a1:c3:7a:93 src_ip 50.217.175.122 dst_ip 37.218.133.6 ip_proto udp src_port 62606 dst_port 4983 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11278 flower src_mac 02:5c:7e:b6:5f:eb dst_mac 02:82:f1:d8:93:53 vlan_id 2880 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11279 flower src_mac 02:6f:a7:4c:fc:8f dst_mac 02:83:e9:0d:0d:7e vlan_id 148 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11280 flower src_mac 02:01:52:71:d7:d1 dst_mac 02:e1:0c:5e:d5:f4 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11281 flower src_mac 02:9a:67:c2:5b:25 dst_mac 02:fe:f9:e9:50:8f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11282 flower src_mac 02:cb:01:e0:a9:f6 dst_mac 02:43:4f:5b:76:2a vlan_id 3633 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11283 flower src_mac 02:f9:15:34:88:2f dst_mac 02:ec:e6:37:9e:42 vlan_id 3816 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11284 flower src_mac 02:83:18:55:bc:9b dst_mac 02:33:c6:f2:2d:5b vlan_id 1274 vlan_ethtype ip src_ip 50.38.31.234 dst_ip 52.4.211.104 ip_proto tcp src_port 42073 dst_port 35196 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11285 flower src_mac 02:4d:e7:df:97:e7 dst_mac 02:f5:fb:55:64:ca src_ip 55.21.103.176 dst_ip 100.177.81.20 ip_proto tcp src_port 33766 dst_port 38221 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11286 flower src_mac 02:fc:f9:1a:6a:5d dst_mac 02:1b:45:3b:32:b9 vlan_id 1644 vlan_ethtype 0x0800 src_ip 18.67.157.82 dst_ip 69.214.114.41 ip_proto tcp src_port 56094 dst_port 13996 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11287 flower src_mac 02:f7:f2:73:bc:cd dst_mac 02:3e:a9:6b:c4:83 src_ip 33.24.189.226 dst_ip 76.48.131.107 ip_proto udp src_port 44019 dst_port 16292 action pass && tc filter add dev swp33 ingress protocol ip pref 11288 flower src_mac 02:11:0e:60:8d:ae dst_mac 02:4d:13:2d:20:15 src_ip 79.138.166.165 dst_ip 105.126.213.178 ip_proto udp src_port 28234 dst_port 61049 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11289 flower src_mac 02:3f:9a:ea:2c:2e dst_mac 02:85:ad:c3:fd:cb vlan_id 3229 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11290 flower src_mac 02:3d:28:5c:9c:d5 dst_mac 02:9f:53:7a:98:19 vlan_id 4057 vlan_ethtype 0x0800 src_ip 115.148.129.152 dst_ip 114.252.92.51 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11291 flower src_mac 02:7f:d9:1b:56:be dst_mac 02:d5:68:b4:2a:83 vlan_id 3690 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11292 flower src_mac 02:ac:f2:cf:ba:b0 dst_mac 02:ed:95:7e:bc:65 vlan_id 2199 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11293 flower src_mac 02:95:7f:4f:ab:3a dst_mac 02:91:26:4d:fa:07 vlan_id 777 vlan_ethtype 0x0800 src_ip 78.51.122.99 dst_ip 100.126.121.64 ip_proto udp src_port 61423 dst_port 9673 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11294 flower src_mac 02:db:3e:c0:10:fe dst_mac 02:f4:25:18:01:d6 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11295 flower src_mac 02:14:3d:0f:ae:be dst_mac 02:b4:ac:ef:c1:b0 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11296 flower src_mac 02:ad:cc:53:0c:24 dst_mac 02:98:df:e0:6e:90 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11297 flower src_mac 02:be:d7:dd:94:93 dst_mac 02:da:a0:9c:35:38 vlan_id 3198 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11298 flower src_mac 02:11:02:0b:4c:62 dst_mac 02:ad:a4:d2:04:46 src_ip 101.37.122.61 dst_ip 116.24.240.2 ip_proto udp src_port 30930 dst_port 18748 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11299 flower src_mac 02:90:77:8b:7b:90 dst_mac 02:16:06:b0:6a:7f action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11300 flower src_mac 02:00:e7:7f:e1:88 dst_mac 02:b2:f4:1f:9b:47 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11301 flower src_mac 02:d1:f8:bb:0d:21 dst_mac 02:e5:d6:5c:b5:37 src_ip 60.96.139.48 dst_ip 44.33.19.231 ip_proto udp src_port 11210 dst_port 17909 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11302 flower src_mac 02:57:89:90:78:03 dst_mac 02:98:98:79:7c:c8 vlan_id 3049 vlan_ethtype 0x0800 src_ip 56.130.190.241 dst_ip 109.84.80.62 ip_proto tcp src_port 41179 dst_port 6488 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11303 flower src_mac 02:5d:70:e5:64:30 dst_mac 02:04:c3:80:49:31 vlan_id 3466 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11304 flower src_mac 02:a7:1c:14:15:7c dst_mac 02:dc:30:e6:18:88 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11305 flower src_mac 02:86:cc:aa:3f:ab dst_mac 02:ad:5b:12:53:c3 src_ip 25.147.128.12 dst_ip 90.176.42.62 ip_proto tcp src_port 13372 dst_port 56376 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11306 flower src_mac 02:5f:75:59:03:36 dst_mac 02:cf:2c:1d:62:b1 vlan_id 389 vlan_ethtype 0x0800 src_ip 95.145.192.56 dst_ip 13.161.146.172 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11307 flower src_mac 02:95:8e:61:c9:69 dst_mac 02:61:2c:bc:46:86 vlan_id 2846 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11308 flower src_mac 02:1f:89:58:d3:ba dst_mac 02:fb:a9:ae:4d:14 vlan_id 1639 vlan_ethtype 0x0800 src_ip 21.72.91.99 dst_ip 56.61.122.53 ip_proto tcp src_port 33089 dst_port 55655 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11309 flower src_mac 02:df:10:d1:9c:c0 dst_mac 02:dd:e3:ba:bf:f9 vlan_id 600 vlan_ethtype 0x0800 src_ip 110.171.29.8 dst_ip 117.74.50.144 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11310 flower src_mac 02:ab:a6:60:01:56 dst_mac 02:0a:d5:08:88:b5 vlan_id 1940 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11311 flower src_mac 02:c1:9a:7f:1a:4b dst_mac 02:23:f4:bb:b1:c8 vlan_id 3303 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11312 flower src_mac 02:82:7a:3b:c4:89 dst_mac 02:b6:c8:08:54:8c vlan_id 3681 vlan_ethtype ipv4 src_ip 57.224.61.95 dst_ip 54.143.117.245 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11313 flower src_mac 02:11:c8:c8:35:6f dst_mac 02:71:bc:b1:2e:94 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11314 flower src_mac 02:aa:62:16:e3:a0 dst_mac 02:6c:15:0a:62:d3 src_ip 50.7.47.3 dst_ip 105.187.148.121 ip_proto tcp src_port 49826 dst_port 9253 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11315 flower src_mac 02:db:ec:ae:d7:7a dst_mac 02:b6:bf:cd:57:2d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11316 flower src_mac 02:3e:5c:41:38:25 dst_mac 02:fc:10:b1:95:ac vlan_id 992 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11317 flower src_mac 02:17:26:c7:b5:92 dst_mac 02:79:8b:0b:3c:92 vlan_id 2163 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11318 flower src_mac 02:8a:90:d8:71:bc dst_mac 02:47:c4:ef:1f:21 src_ip 100.85.154.154 dst_ip 125.102.175.239 ip_proto tcp src_port 6769 dst_port 25822 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11319 flower src_mac 02:b1:5d:e7:e5:42 dst_mac 02:8d:14:84:eb:cc vlan_id 3682 vlan_ethtype ip src_ip 103.251.54.134 dst_ip 103.181.173.180 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11320 flower src_mac 02:f6:42:7e:c7:7e dst_mac 02:0d:80:11:76:3d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11321 flower src_mac 02:ec:4b:d0:f0:dd dst_mac 02:99:79:0b:f3:20 vlan_id 803 vlan_ethtype ip src_ip 124.84.249.237 dst_ip 109.31.105.193 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11322 flower src_mac 02:62:df:2b:2d:63 dst_mac 02:26:ad:31:f6:04 vlan_id 795 vlan_ethtype 0x0800 src_ip 96.86.158.208 dst_ip 109.207.195.8 ip_proto tcp src_port 56513 dst_port 24369 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11323 flower src_mac 02:15:04:ea:70:a9 dst_mac 02:1e:dd:ef:7e:2c vlan_id 1987 vlan_ethtype ip src_ip 96.136.97.223 dst_ip 72.43.237.245 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11324 flower src_mac 02:7d:95:16:35:06 dst_mac 02:b8:db:be:30:d9 src_ip 95.230.95.64 dst_ip 57.101.19.17 ip_proto tcp src_port 41114 dst_port 24254 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11325 flower src_mac 02:7b:36:10:9f:1d dst_mac 02:15:2d:a3:d2:ce src_ip 76.14.185.58 dst_ip 26.159.38.133 ip_proto icmp code 132 type 5 action drop && tc filter add dev swp33 ingress protocol ip pref 11326 flower src_mac 02:d6:1c:2b:e5:23 dst_mac 02:11:a7:24:c5:ef src_ip 13.99.58.48 dst_ip 121.30.173.8 ip_proto udp src_port 40812 dst_port 37315 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11327 flower src_mac 02:a8:f5:7a:00:63 dst_mac 02:c3:f5:b7:df:80 src_ip 57.65.45.94 dst_ip 70.93.104.2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11328 flower src_mac 02:9b:51:2b:41:aa dst_mac 02:18:52:67:2c:c1 vlan_id 3895 vlan_ethtype ipv4 src_ip 66.197.105.196 dst_ip 72.215.87.214 ip_proto udp src_port 22729 dst_port 59788 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11329 flower src_mac 02:9c:e7:97:c0:03 dst_mac 02:89:9d:a0:f4:48 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11330 flower src_mac 02:ee:3a:df:c9:37 dst_mac 02:b9:d0:bf:08:e1 vlan_id 1450 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11331 flower src_mac 02:b2:1c:b6:67:8c dst_mac 02:0a:a4:d6:a1:c6 vlan_id 1730 vlan_ethtype ip src_ip 53.8.10.42 dst_ip 99.177.84.192 ip_proto udp src_port 58515 dst_port 40582 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11332 flower src_mac 02:a6:94:da:8e:c1 dst_mac 02:91:1d:b7:02:fe action pass && tc filter add dev swp33 ingress protocol ip pref 11333 flower src_mac 02:a4:39:c3:09:58 dst_mac 02:a4:3c:a9:7d:43 src_ip 29.136.175.237 dst_ip 31.189.94.87 ip_proto tcp src_port 42292 dst_port 14223 action trap && tc filter add dev swp33 ingress protocol ip pref 11334 flower src_mac 02:7f:48:4e:13:c3 dst_mac 02:b4:be:43:b1:d5 src_ip 22.195.18.185 dst_ip 114.173.175.41 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11335 flower src_mac 02:9c:9c:9f:23:13 dst_mac 02:c1:46:24:e3:31 src_ip 82.204.228.104 dst_ip 113.223.107.206 ip_proto udp src_port 55265 dst_port 18452 action pass && tc filter add dev swp33 ingress protocol ip pref 11336 flower src_mac 02:b2:f7:37:cc:2a dst_mac 02:74:c3:b8:f0:0b src_ip 76.73.11.85 dst_ip 41.6.48.72 ip_proto udp src_port 64109 dst_port 5265 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11337 flower src_mac 02:61:9a:47:fc:2a dst_mac 02:90:0b:5c:a3:9e vlan_id 1298 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11338 flower src_mac 02:2b:ab:9e:40:a9 dst_mac 02:20:a7:13:09:e3 vlan_id 1923 vlan_ethtype ipv4 src_ip 113.124.133.138 dst_ip 23.88.87.30 ip_proto tcp src_port 5780 dst_port 45195 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11339 flower src_mac 02:5c:d0:b0:9a:d6 dst_mac 02:59:2f:0f:77:2a action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11340 flower src_mac 02:d2:6f:1d:08:e2 dst_mac 02:47:a6:84:4a:82 src_ip 41.64.173.46 dst_ip 25.143.145.118 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11341 flower src_mac 02:c1:47:b7:4f:f8 dst_mac 02:a6:2a:7d:af:f5 src_ip 113.206.155.98 dst_ip 93.64.51.101 ip_proto icmp code 96 type 17 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11342 flower src_mac 02:cc:59:06:75:07 dst_mac 02:bf:5c:6d:2e:1a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11343 flower src_mac 02:56:bc:07:d8:84 dst_mac 02:60:7f:b5:3d:d0 vlan_id 4023 vlan_ethtype ipv4 src_ip 106.214.143.8 dst_ip 122.33.253.31 ip_proto udp src_port 16823 dst_port 15764 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11344 flower src_mac 02:30:e4:6e:04:2f dst_mac 02:c9:3f:b7:6b:e3 src_ip 38.165.224.232 dst_ip 29.216.5.16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11345 flower src_mac 02:61:17:cd:c4:52 dst_mac 02:44:16:ae:1b:35 src_ip 82.6.28.89 dst_ip 22.138.207.177 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11346 flower src_mac 02:21:b7:72:56:9f dst_mac 02:45:f6:58:a1:aa vlan_id 632 vlan_ethtype ipv4 src_ip 11.55.10.130 dst_ip 115.155.161.2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11347 flower src_mac 02:b8:dd:3d:e0:24 dst_mac 02:51:f2:2a:2f:5d vlan_id 3949 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11348 flower src_mac 02:04:41:ca:09:5c dst_mac 02:f8:f1:02:ab:b9 vlan_id 4086 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11349 flower src_mac 02:80:cf:d5:02:76 dst_mac 02:3a:e6:33:3c:f8 src_ip 98.189.158.205 dst_ip 16.157.3.249 ip_proto tcp src_port 7038 dst_port 2508 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11350 flower src_mac 02:ce:a0:e6:6a:89 dst_mac 02:91:f0:2e:68:db action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11351 flower src_mac 02:e7:45:fd:70:f9 dst_mac 02:5f:94:83:91:93 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11352 flower src_mac 02:78:90:6d:8f:c3 dst_mac 02:ce:ac:ce:bb:ff vlan_id 3174 vlan_ethtype 0x0800 src_ip 53.225.20.182 dst_ip 71.209.197.33 ip_proto udp src_port 30360 dst_port 50000 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11353 flower src_mac 02:7e:20:51:0f:87 dst_mac 02:26:de:33:1f:0a vlan_id 2478 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:bf:fc:34:c3:f2 dst_mac 02:48:8d:0f:ac:67 vlan_id 3674 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11355 flower src_mac 02:4a:d7:5e:9a:35 dst_mac 02:0b:a9:54:e9:19 src_ip 73.28.142.238 dst_ip 52.239.25.118 ip_proto icmp code 164 type 14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11356 flower src_mac 02:d4:63:de:b0:e4 dst_mac 02:13:77:ad:e7:c4 vlan_id 372 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11357 flower src_mac 02:0b:83:80:21:4a dst_mac 02:72:46:8b:db:b6 vlan_id 3103 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11358 flower src_mac 02:e3:65:5e:8d:4f dst_mac 02:e8:3b:7c:95:ec src_ip 51.144.1.5 dst_ip 43.14.22.145 ip_proto icmp code 24 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11359 flower src_mac 02:54:e6:fc:07:3a dst_mac 02:4e:4d:08:c0:09 vlan_id 861 vlan_ethtype ipv4 src_ip 95.209.173.183 dst_ip 30.98.113.175 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11360 flower src_mac 02:b0:87:25:26:33 dst_mac 02:64:51:2f:2a:44 vlan_id 2068 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11361 flower src_mac 02:23:a4:91:6e:ff dst_mac 02:02:fa:10:70:2d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11362 flower src_mac 02:08:1b:c1:9e:16 dst_mac 02:d1:61:1b:4e:7a vlan_id 1885 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11363 flower src_mac 02:6f:66:bc:78:8b dst_mac 02:d6:5c:79:68:a8 action drop && tc filter add dev swp33 ingress protocol ip pref 11364 flower src_mac 02:b9:5e:55:ce:0e dst_mac 02:c8:63:92:4e:7d src_ip 123.15.196.112 dst_ip 117.52.85.147 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11365 flower src_mac 02:a7:9b:7f:65:bf dst_mac 02:c1:3f:b0:7d:98 vlan_id 315 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11366 flower src_mac 02:99:43:1b:1d:e7 dst_mac 02:df:66:b7:25:2d action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11367 flower src_mac 02:ab:aa:75:3b:14 dst_mac 02:8c:31:79:6a:72 vlan_id 305 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11368 flower src_mac 02:c4:d6:6c:25:57 dst_mac 02:85:60:6e:03:e9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11369 flower src_mac 02:e0:83:e4:5f:bc dst_mac 02:9d:60:3e:15:db vlan_id 1320 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11370 flower src_mac 02:4e:31:a4:2e:b7 dst_mac 02:71:89:9f:12:f4 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11371 flower src_mac 02:67:7d:58:18:f5 dst_mac 02:a2:a6:76:1d:83 src_ip 60.248.161.103 dst_ip 108.200.49.161 ip_proto icmp code 180 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11372 flower src_mac 02:7d:be:84:03:de dst_mac 02:8b:8a:85:97:68 vlan_id 2147 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11373 flower src_mac 02:a2:4a:6c:c2:7a dst_mac 02:9d:0e:a4:17:c0 src_ip 26.141.54.29 dst_ip 21.84.167.90 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11374 flower src_mac 02:84:80:38:84:aa dst_mac 02:2a:67:c8:3a:b0 src_ip 110.172.12.46 dst_ip 64.141.103.78 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11375 flower src_mac 02:35:8f:69:9d:bb dst_mac 02:b9:25:6a:e3:76 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11376 flower src_mac 02:76:51:0a:eb:70 dst_mac 02:8e:a3:00:49:b2 vlan_id 1214 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11377 flower src_mac 02:ff:e5:43:a2:e0 dst_mac 02:bf:7c:ba:96:ee action pass && tc filter add dev swp33 ingress protocol ip pref 11378 flower src_mac 02:db:db:46:c9:aa dst_mac 02:48:09:f2:b7:19 src_ip 62.215.224.68 dst_ip 47.253.113.189 ip_proto icmp code 54 type 17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11379 flower src_mac 02:e7:c1:f0:c7:7a dst_mac 02:ad:63:81:c4:88 vlan_id 1422 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11380 flower src_mac 02:82:75:8e:f3:82 dst_mac 02:56:8d:43:c7:b7 vlan_id 1959 vlan_ethtype 0x0800 src_ip 17.4.183.122 dst_ip 68.237.105.142 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11381 flower src_mac 02:5b:4d:28:69:bb dst_mac 02:c0:ae:5f:9d:5b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11382 flower src_mac 02:99:9c:73:70:01 dst_mac 02:e1:ff:8b:74:f4 src_ip 66.12.100.216 dst_ip 40.221.66.217 ip_proto udp src_port 10029 dst_port 53685 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11383 flower src_mac 02:da:09:6e:d4:3d dst_mac 02:ee:76:52:ea:fe action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11384 flower src_mac 02:26:7a:0a:f6:80 dst_mac 02:81:bc:a9:3d:3c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11385 flower src_mac 02:e1:cc:ae:55:98 dst_mac 02:72:b0:4c:f6:c2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11386 flower src_mac 02:50:19:e5:79:7b dst_mac 02:b1:3c:bb:bb:98 vlan_id 2007 vlan_ethtype ipv4 src_ip 97.67.222.146 dst_ip 100.103.116.27 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11387 flower src_mac 02:3c:4c:41:90:1a dst_mac 02:94:33:6e:a6:2a vlan_id 98 vlan_ethtype ipv4 src_ip 97.1.247.66 dst_ip 76.112.60.206 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11388 flower src_mac 02:50:7e:bc:79:5e dst_mac 02:6e:8c:f0:0b:40 vlan_id 3958 vlan_ethtype ip src_ip 115.59.3.53 dst_ip 67.167.238.122 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11389 flower src_mac 02:c7:5a:c5:26:c9 dst_mac 02:40:87:a2:8a:8e vlan_id 3295 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11390 flower src_mac 02:d8:05:dc:ec:28 dst_mac 02:a8:3b:72:66:ab vlan_id 3534 vlan_ethtype ip src_ip 65.78.162.13 dst_ip 18.255.27.170 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11391 flower src_mac 02:8a:b9:57:eb:ef dst_mac 02:01:ed:af:c7:0b vlan_id 1197 vlan_ethtype 0x0800 src_ip 49.90.108.37 dst_ip 53.79.216.226 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11392 flower src_mac 02:29:41:cd:38:10 dst_mac 02:e3:78:4b:3e:ca vlan_id 3196 vlan_ethtype 0x0800 src_ip 17.53.128.165 dst_ip 17.245.123.207 ip_proto tcp src_port 7082 dst_port 17724 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11393 flower src_mac 02:e7:48:07:04:65 dst_mac 02:ce:4d:35:91:8e vlan_id 3273 vlan_ethtype 0x0800 src_ip 18.52.169.210 dst_ip 25.146.110.29 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11394 flower src_mac 02:07:3d:92:80:ed dst_mac 02:77:98:f6:3e:f1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11395 flower src_mac 02:12:61:97:99:aa dst_mac 02:97:9e:1b:af:38 vlan_id 2403 vlan_ethtype ipv4 src_ip 121.176.248.244 dst_ip 48.185.170.51 ip_proto tcp src_port 3056 dst_port 21399 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:d9:e7:5a:39:3f dst_mac 02:48:9d:03:10:b1 vlan_id 717 vlan_ethtype ip src_ip 26.155.40.179 dst_ip 69.4.50.106 ip_proto tcp src_port 46227 dst_port 59078 action pass && tc filter add dev swp33 ingress protocol ip pref 11397 flower src_mac 02:1e:71:fd:89:1d dst_mac 02:aa:24:b3:5d:d9 src_ip 97.198.106.244 dst_ip 21.237.219.41 ip_proto udp src_port 25909 dst_port 6697 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11398 flower src_mac 02:ff:0d:ea:c6:97 dst_mac 02:e3:2b:f3:e6:c3 vlan_id 618 vlan_ethtype 0x0800 src_ip 102.97.167.169 dst_ip 104.3.178.90 ip_proto udp src_port 11113 dst_port 31819 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11399 flower src_mac 02:0e:6a:62:24:ea dst_mac 02:f4:25:f6:c8:37 vlan_id 2069 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11400 flower src_mac 02:bf:9a:9d:4d:b2 dst_mac 02:48:ee:17:14:43 vlan_id 2353 vlan_ethtype 0x0800 src_ip 56.178.74.29 dst_ip 28.246.238.45 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:81:69:c4:4a:5e dst_mac 02:1e:da:3a:33:f0 vlan_id 206 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11402 flower src_mac 02:b1:c2:f4:1c:b2 dst_mac 02:42:5e:0c:ed:ec action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11403 flower src_mac 02:86:a5:78:9b:8b dst_mac 02:c8:fb:f5:39:e3 vlan_id 2860 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11404 flower src_mac 02:1b:a3:6e:81:a6 dst_mac 02:45:bd:5a:ca:eb action drop && tc filter add dev swp33 ingress protocol ip pref 11405 flower src_mac 02:d6:ca:22:c4:cc dst_mac 02:72:76:e9:3e:e9 src_ip 123.216.247.177 dst_ip 14.39.1.53 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11406 flower src_mac 02:6a:8b:a3:e4:02 dst_mac 02:54:f0:6b:5b:f5 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11407 flower src_mac 02:7e:e4:87:9e:eb dst_mac 02:36:52:63:61:97 src_ip 75.2.213.250 dst_ip 121.2.193.45 action drop && tc filter add dev swp33 ingress protocol ip pref 11408 flower src_mac 02:23:25:6a:f0:a5 dst_mac 02:7c:2d:12:65:ed src_ip 42.149.174.78 dst_ip 65.62.27.63 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11409 flower src_mac 02:e1:36:69:a3:70 dst_mac 02:a2:36:20:d1:56 vlan_id 3176 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11410 flower src_mac 02:8b:82:97:ce:3e dst_mac 02:b9:dd:6a:ea:be vlan_id 366 vlan_ethtype 0x0800 src_ip 52.150.180.34 dst_ip 56.104.215.107 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11411 flower src_mac 02:67:00:1d:d7:b8 dst_mac 02:06:d8:39:61:b6 action drop && tc filter add dev swp33 ingress protocol ip pref 11412 flower src_mac 02:ad:86:69:a0:c6 dst_mac 02:34:94:55:e6:98 src_ip 59.245.140.115 dst_ip 95.62.163.75 ip_proto udp src_port 51249 dst_port 49547 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11413 flower src_mac 02:28:6b:74:b1:a4 dst_mac 02:86:dc:a8:47:f9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11414 flower src_mac 02:e9:22:78:0e:00 dst_mac 02:22:fe:f2:92:97 vlan_id 2514 vlan_ethtype ip src_ip 79.71.199.157 dst_ip 32.117.217.137 ip_proto tcp src_port 18867 dst_port 9995 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11415 flower src_mac 02:5c:88:de:77:45 dst_mac 02:aa:f3:ab:73:34 vlan_id 2392 vlan_ethtype 0x0800 src_ip 81.36.7.247 dst_ip 57.79.192.15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11416 flower src_mac 02:14:13:b7:30:57 dst_mac 02:66:11:c8:18:47 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11417 flower src_mac 02:b3:e1:31:f1:bb dst_mac 02:89:3d:88:3e:68 vlan_id 3018 vlan_ethtype 0x0800 src_ip 59.235.19.41 dst_ip 33.159.132.157 ip_proto udp src_port 37558 dst_port 2011 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11418 flower src_mac 02:84:c7:29:de:71 dst_mac 02:77:7f:f3:4a:e9 src_ip 67.129.160.63 dst_ip 17.19.155.176 ip_proto udp src_port 60234 dst_port 42050 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11419 flower src_mac 02:1f:2e:5c:54:00 dst_mac 02:c5:67:06:cb:de vlan_id 1690 vlan_ethtype 0x0800 src_ip 126.31.98.215 dst_ip 62.189.223.170 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11420 flower src_mac 02:0e:36:f3:29:14 dst_mac 02:d0:81:e8:92:df action drop && tc filter add dev swp33 ingress protocol ip pref 11421 flower src_mac 02:bb:2f:3c:10:c4 dst_mac 02:31:96:46:82:4f src_ip 59.12.232.63 dst_ip 102.213.177.84 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11422 flower src_mac 02:d4:2b:75:1d:d8 dst_mac 02:fe:45:41:8f:6d vlan_id 905 vlan_ethtype 0x0800 src_ip 111.138.134.199 dst_ip 105.199.72.41 ip_proto tcp src_port 36049 dst_port 19994 action trap && tc filter add dev swp33 ingress protocol ip pref 11423 flower src_mac 02:ac:f6:e3:b6:6e dst_mac 02:72:73:93:ee:4b src_ip 123.123.80.173 dst_ip 26.49.130.51 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11424 flower src_mac 02:c8:25:5e:7a:aa dst_mac 02:e2:ca:60:76:39 vlan_id 2633 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11425 flower src_mac 02:6e:7d:fd:5c:0c dst_mac 02:7d:4f:69:16:5a vlan_id 1166 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11426 flower src_mac 02:c2:c5:9b:9f:ae dst_mac 02:06:16:6e:06:15 vlan_id 1346 vlan_ethtype ip src_ip 53.144.118.158 dst_ip 105.125.39.160 ip_proto udp src_port 45777 dst_port 17160 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11427 flower src_mac 02:b1:ee:ed:22:b0 dst_mac 02:b6:3e:6b:a0:cc vlan_id 79 vlan_ethtype ip src_ip 65.222.111.211 dst_ip 85.90.170.22 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11428 flower src_mac 02:e5:4d:47:e9:9f dst_mac 02:e4:d8:65:f8:4d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11429 flower src_mac 02:8f:73:9b:39:7f dst_mac 02:a0:7b:0e:f7:9b vlan_id 226 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11430 flower src_mac 02:07:59:46:9b:13 dst_mac 02:01:30:c4:f3:e9 vlan_id 3420 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11431 flower src_mac 02:67:6d:42:31:f4 dst_mac 02:43:10:21:2f:a7 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11432 flower src_mac 02:f2:23:6f:98:b4 dst_mac 02:d0:19:6e:39:a6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11433 flower src_mac 02:85:68:ed:6a:0e dst_mac 02:d1:25:6f:cd:58 vlan_id 305 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11434 flower src_mac 02:c9:b3:31:44:8a dst_mac 02:6a:35:f4:9b:87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11435 flower src_mac 02:28:5d:38:c5:72 dst_mac 02:a2:71:1d:05:55 vlan_id 2265 vlan_ethtype ipv4 src_ip 109.70.187.248 dst_ip 117.90.89.242 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11436 flower src_mac 02:c8:39:4e:2b:12 dst_mac 02:f4:95:f0:0a:30 vlan_id 3568 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11437 flower src_mac 02:36:e0:cf:86:15 dst_mac 02:cc:2c:0c:6f:bd vlan_id 2279 vlan_ethtype ipv4 src_ip 72.14.163.133 dst_ip 30.162.169.20 ip_proto tcp src_port 55130 dst_port 18173 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11438 flower src_mac 02:3e:99:d6:80:47 dst_mac 02:a2:95:99:9c:6f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11439 flower src_mac 02:dd:60:c5:e6:d0 dst_mac 02:43:b7:06:8f:a4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11440 flower src_mac 02:3c:e8:76:bd:80 dst_mac 02:06:f8:9f:bb:b1 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11441 flower src_mac 02:95:24:1b:e6:a2 dst_mac 02:74:09:6e:c4:01 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11442 flower src_mac 02:e8:0b:56:92:22 dst_mac 02:e0:f5:66:f8:fa action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11443 flower src_mac 02:9a:88:92:0d:2f dst_mac 02:40:1c:83:ea:e6 vlan_id 527 vlan_ethtype ip src_ip 70.25.216.55 dst_ip 49.117.5.15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11444 flower src_mac 02:89:27:e5:11:4e dst_mac 02:28:cd:2f:74:7d action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11445 flower src_mac 02:d3:20:88:2e:0f dst_mac 02:f2:51:8f:94:50 action drop && tc filter add dev swp33 ingress protocol ip pref 11446 flower src_mac 02:e1:ca:85:b2:79 dst_mac 02:f0:0a:00:62:8f src_ip 62.108.111.9 dst_ip 60.98.104.15 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11447 flower src_mac 02:18:c0:3d:14:69 dst_mac 02:84:ee:38:85:e8 action pass && tc filter add dev swp33 ingress protocol ip pref 11448 flower src_mac 02:b0:e1:18:6b:d4 dst_mac 02:62:5f:f3:87:3c src_ip 117.211.218.241 dst_ip 43.111.13.90 ip_proto icmp code 197 type 14 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11449 flower src_mac 02:65:73:64:8a:6f dst_mac 02:7a:45:20:2c:4c vlan_id 2479 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11450 flower src_mac 02:05:70:cf:bb:5e dst_mac 02:30:45:8e:6a:57 vlan_id 197 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11451 flower src_mac 02:db:fd:e0:18:12 dst_mac 02:e1:cd:43:05:89 src_ip 77.98.66.68 dst_ip 81.222.29.196 ip_proto icmp code 152 type 5 action trap && tc filter add dev swp33 ingress protocol ip pref 11452 flower src_mac 02:03:0d:9a:81:63 dst_mac 02:19:a1:f2:cb:b3 src_ip 66.49.201.210 dst_ip 46.245.189.189 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11453 flower src_mac 02:96:2a:70:81:70 dst_mac 02:b5:db:f2:24:bc vlan_id 3178 vlan_ethtype 0x0800 src_ip 12.63.106.57 dst_ip 60.35.220.146 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11454 flower src_mac 02:54:31:c9:8e:85 dst_mac 02:31:1e:3f:04:b8 vlan_id 200 vlan_ethtype ip src_ip 116.225.79.157 dst_ip 19.2.18.191 ip_proto tcp src_port 60811 dst_port 29263 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11455 flower src_mac 02:fa:62:99:7b:8c dst_mac 02:77:ae:4b:93:e3 vlan_id 3138 vlan_ethtype 0x0800 src_ip 72.137.215.101 dst_ip 111.66.38.21 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11456 flower src_mac 02:a5:96:bf:67:2d dst_mac 02:fa:a4:38:27:b6 vlan_id 300 vlan_ethtype ipv4 src_ip 113.247.184.124 dst_ip 85.34.55.245 ip_proto udp src_port 8034 dst_port 2518 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11457 flower src_mac 02:62:c2:44:a8:d4 dst_mac 02:b0:86:9f:3e:c9 vlan_id 2835 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11458 flower src_mac 02:70:73:b2:dd:82 dst_mac 02:90:7e:e8:ef:af src_ip 113.47.78.130 dst_ip 79.208.196.229 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11459 flower src_mac 02:10:a8:ec:07:f1 dst_mac 02:41:5f:77:e6:47 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11460 flower src_mac 02:9b:3e:01:56:d9 dst_mac 02:31:b4:c7:24:95 vlan_id 3674 vlan_ethtype ip src_ip 31.230.253.20 dst_ip 98.44.222.72 ip_proto udp src_port 64849 dst_port 3199 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11461 flower src_mac 02:05:0f:c5:36:c5 dst_mac 02:ae:78:12:cf:98 vlan_id 2113 vlan_ethtype ipv4 src_ip 88.240.226.92 dst_ip 51.131.87.20 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11462 flower src_mac 02:2a:9c:08:ba:c1 dst_mac 02:d1:68:28:fb:23 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11463 flower src_mac 02:69:bc:1d:8c:5e dst_mac 02:75:41:66:ff:51 vlan_id 3904 vlan_ethtype 0x0800 src_ip 103.34.24.93 dst_ip 109.207.35.2 ip_proto udp src_port 4011 dst_port 30210 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11464 flower src_mac 02:90:f3:e7:32:bd dst_mac 02:2c:b5:95:91:26 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11465 flower src_mac 02:54:72:6a:11:ca dst_mac 02:0e:d4:f1:b8:6c src_ip 26.232.115.45 dst_ip 88.233.9.203 ip_proto udp src_port 21556 dst_port 35733 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11466 flower src_mac 02:94:d9:b4:ed:cf dst_mac 02:44:6d:4e:c1:1b vlan_id 626 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:b1:7f:d9:9d:ba dst_mac 02:4e:15:4c:be:24 vlan_id 1008 vlan_ethtype ipv4 src_ip 86.211.139.13 dst_ip 97.246.167.14 ip_proto udp src_port 28026 dst_port 2160 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11468 flower src_mac 02:0c:6e:bc:6d:6f dst_mac 02:e8:3b:da:81:cf vlan_id 3419 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:49:eb:07:07:4c dst_mac 02:64:34:ff:ce:33 vlan_id 2667 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11470 flower src_mac 02:3d:16:c8:7b:dc dst_mac 02:5b:10:f5:96:7e action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11471 flower src_mac 02:c0:da:7b:5a:43 dst_mac 02:33:b2:da:59:65 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11472 flower src_mac 02:32:5f:58:b2:77 dst_mac 02:9e:dc:a6:20:ed action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11473 flower src_mac 02:b9:bc:7e:e1:40 dst_mac 02:a5:af:a5:0f:92 vlan_id 61 vlan_ethtype ip src_ip 19.72.237.16 dst_ip 22.225.22.210 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11474 flower src_mac 02:ed:15:39:a1:31 dst_mac 02:9c:94:7b:d0:86 vlan_id 856 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11475 flower src_mac 02:d7:be:02:b6:3f dst_mac 02:ff:3d:68:88:c6 vlan_id 1607 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11476 flower src_mac 02:f0:b9:e0:88:16 dst_mac 02:a2:6a:f2:43:bd vlan_id 1535 vlan_ethtype ipv4 src_ip 70.47.169.236 dst_ip 101.210.93.79 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11477 flower src_mac 02:d1:2c:47:62:e7 dst_mac 02:36:ba:b4:62:ee vlan_id 225 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11478 flower src_mac 02:78:92:ca:9d:2d dst_mac 02:48:f7:03:03:16 vlan_id 2826 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11479 flower src_mac 02:0a:28:e5:e7:37 dst_mac 02:9a:bf:36:40:c0 src_ip 19.166.105.236 dst_ip 71.87.175.128 ip_proto tcp src_port 10340 dst_port 45231 action pass && tc filter add dev swp33 ingress protocol ip pref 11480 flower src_mac 02:fd:ce:6a:c7:dc dst_mac 02:76:4f:32:32:2e src_ip 40.76.247.74 dst_ip 90.244.250.227 ip_proto udp src_port 22558 dst_port 33289 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11481 flower src_mac 02:14:68:72:04:9c dst_mac 02:16:e7:79:99:3f vlan_id 1754 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11482 flower src_mac 02:da:9d:ee:d6:ba dst_mac 02:c1:dd:9d:38:e7 vlan_id 2023 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11483 flower src_mac 02:40:94:22:59:ba dst_mac 02:1f:80:9d:bb:ab vlan_id 3760 vlan_ethtype ipv4 src_ip 98.146.99.202 dst_ip 125.28.79.149 ip_proto tcp src_port 45221 dst_port 65433 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11484 flower src_mac 02:0a:f1:28:d9:ea dst_mac 02:5e:a6:a4:66:b5 vlan_id 3682 vlan_ethtype 0x0800 src_ip 42.122.122.107 dst_ip 55.184.31.110 action drop && tc filter add dev swp33 ingress protocol ip pref 11485 flower src_mac 02:17:a0:78:0c:10 dst_mac 02:8f:27:ef:b6:f6 src_ip 98.23.3.142 dst_ip 23.174.144.198 ip_proto udp src_port 11365 dst_port 41499 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11486 flower src_mac 02:66:9e:f4:8d:26 dst_mac 02:0f:1e:93:50:45 vlan_id 2039 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11487 flower src_mac 02:c8:25:31:fb:75 dst_mac 02:9d:32:b7:db:5a action trap && tc filter add dev swp33 ingress protocol ip pref 11488 flower src_mac 02:fb:36:35:68:be dst_mac 02:7a:3c:7d:1d:27 src_ip 101.91.126.69 dst_ip 54.164.141.84 ip_proto tcp src_port 23337 dst_port 44463 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11489 flower src_mac 02:ca:db:03:e4:8b dst_mac 02:41:d5:da:c8:1d vlan_id 1580 vlan_ethtype ip src_ip 70.207.5.2 dst_ip 117.139.46.246 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11490 flower src_mac 02:0b:4c:74:39:d3 dst_mac 02:f9:7b:0c:13:d4 src_ip 33.88.147.118 dst_ip 25.47.35.18 ip_proto icmp code 149 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11491 flower src_mac 02:ef:b3:0c:d1:6b dst_mac 02:f7:94:4b:4a:0b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11492 flower src_mac 02:41:a5:cd:f1:fc dst_mac 02:89:e0:40:6a:3a vlan_id 949 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11493 flower src_mac 02:1b:b5:b5:06:93 dst_mac 02:d9:9e:aa:b5:98 src_ip 74.178.78.245 dst_ip 105.158.124.106 ip_proto icmp code 228 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11494 flower src_mac 02:f9:9b:c1:36:98 dst_mac 02:c5:a5:df:f2:7d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11495 flower src_mac 02:4d:89:83:e5:64 dst_mac 02:01:82:59:ca:79 vlan_id 3321 vlan_ethtype ipv4 src_ip 12.93.200.8 dst_ip 74.142.36.105 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11496 flower src_mac 02:7c:09:ed:4b:05 dst_mac 02:f8:e1:06:5a:8e action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11497 flower src_mac 02:8c:d8:73:02:dc dst_mac 02:ed:66:0a:c5:36 src_ip 21.180.105.195 dst_ip 62.111.200.165 ip_proto icmp code 34 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11498 flower src_mac 02:ee:c0:5a:b7:5c dst_mac 02:88:7e:15:f7:3a vlan_id 1746 vlan_ethtype ip src_ip 91.182.97.117 dst_ip 72.147.230.48 ip_proto tcp src_port 55826 dst_port 52846 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11499 flower src_mac 02:69:1d:73:06:b0 dst_mac 02:a6:7f:c8:76:ba action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11500 flower src_mac 02:e5:7e:db:54:d0 dst_mac 02:e6:fd:65:d7:90 vlan_id 846 vlan_ethtype 0x0800 src_ip 103.75.87.127 dst_ip 113.54.119.224 ip_proto udp src_port 9177 dst_port 49368 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11501 flower src_mac 02:12:cf:3a:01:16 dst_mac 02:b8:08:9c:ae:8c action drop && tc filter add dev swp33 ingress protocol ip pref 11502 flower src_mac 02:45:8b:d9:19:8e dst_mac 02:c2:f9:0f:ac:08 src_ip 108.94.71.154 dst_ip 67.74.156.214 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11503 flower src_mac 02:71:8e:0a:ae:46 dst_mac 02:23:e4:b8:ca:33 src_ip 50.181.39.145 dst_ip 28.249.135.91 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11504 flower src_mac 02:09:cb:b9:6a:51 dst_mac 02:33:0c:75:4c:b5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11505 flower src_mac 02:9e:c5:11:f1:03 dst_mac 02:48:e6:d3:19:fb vlan_id 1608 vlan_ethtype ipv4 src_ip 26.194.243.232 dst_ip 62.155.86.74 ip_proto tcp src_port 42653 dst_port 61795 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11506 flower src_mac 02:92:0f:db:6f:89 dst_mac 02:9a:cb:11:df:55 vlan_id 1477 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11507 flower src_mac 02:83:3d:a7:60:31 dst_mac 02:28:92:6a:a4:64 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11508 flower src_mac 02:ec:ff:3b:34:e8 dst_mac 02:be:6f:38:9c:6c vlan_id 3034 vlan_ethtype ip src_ip 33.50.44.4 dst_ip 84.80.166.41 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11509 flower src_mac 02:1c:ec:ea:c6:70 dst_mac 02:80:fa:19:19:86 vlan_id 165 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11510 flower src_mac 02:71:dd:f7:99:2a dst_mac 02:11:32:7b:0b:c6 vlan_id 3203 vlan_ethtype 0x0800 src_ip 94.78.170.125 dst_ip 115.27.120.130 ip_proto udp src_port 61493 dst_port 39987 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11511 flower src_mac 02:38:b5:14:3c:15 dst_mac 02:67:5d:e9:f0:af vlan_id 1923 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11512 flower src_mac 02:b6:18:2e:e2:73 dst_mac 02:02:02:cc:59:91 src_ip 86.174.169.116 dst_ip 13.91.237.195 ip_proto udp src_port 7590 dst_port 1297 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11513 flower src_mac 02:23:15:ef:8a:ec dst_mac 02:59:75:ef:f3:8a vlan_id 3378 vlan_ethtype ipv4 src_ip 84.157.134.228 dst_ip 20.219.51.140 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11514 flower src_mac 02:3a:ea:c5:4e:13 dst_mac 02:ab:ed:1f:1d:43 vlan_id 3011 vlan_ethtype ip src_ip 91.151.38.239 dst_ip 65.104.232.35 ip_proto tcp src_port 42569 dst_port 50628 action trap && tc filter add dev swp33 ingress protocol ip pref 11515 flower src_mac 02:45:b3:76:7e:14 dst_mac 02:e6:d4:5c:14:cc src_ip 54.138.150.183 dst_ip 35.35.236.248 ip_proto tcp src_port 29552 dst_port 25379 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11516 flower src_mac 02:e7:fa:f9:84:1c dst_mac 02:3c:e5:68:d5:d3 vlan_id 3687 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11517 flower src_mac 02:d2:57:85:51:de dst_mac 02:4c:33:52:d6:50 src_ip 76.194.220.120 dst_ip 48.226.69.77 ip_proto icmp code 111 type 18 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11518 flower src_mac 02:a2:62:04:f6:cc dst_mac 02:93:3f:eb:e3:ef src_ip 71.160.235.68 dst_ip 12.185.211.92 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11519 flower src_mac 02:a3:cb:2b:5e:01 dst_mac 02:f2:f3:be:cb:05 vlan_id 804 vlan_ethtype 0x0800 src_ip 42.249.186.24 dst_ip 28.49.239.14 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11520 flower src_mac 02:51:2c:bb:c1:bd dst_mac 02:8b:bd:5d:55:c4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11521 flower src_mac 02:c7:ef:81:14:57 dst_mac 02:ef:2e:22:77:65 vlan_id 977 vlan_ethtype ip src_ip 125.74.246.181 dst_ip 101.84.105.41 ip_proto udp src_port 57450 dst_port 15160 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11522 flower src_mac 02:c2:5b:1b:2d:3c dst_mac 02:b4:da:ee:d9:42 vlan_id 448 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11523 flower src_mac 02:83:21:57:90:98 dst_mac 02:1e:88:1e:bc:3e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11524 flower src_mac 02:3e:6e:a1:f7:f5 dst_mac 02:55:77:a0:ae:4a src_ip 16.75.166.39 dst_ip 61.161.62.216 ip_proto udp src_port 41406 dst_port 45175 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11525 flower src_mac 02:ca:d0:5b:3e:fb dst_mac 02:1d:2e:ed:e3:89 vlan_id 2945 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11526 flower src_mac 02:36:84:00:da:0b dst_mac 02:f1:d1:51:42:5b vlan_id 337 vlan_ethtype ipv4 src_ip 30.30.132.52 dst_ip 60.16.109.99 ip_proto tcp src_port 1383 dst_port 38523 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11527 flower src_mac 02:f4:de:48:b7:86 dst_mac 02:cd:09:c7:9a:a4 src_ip 49.147.108.10 dst_ip 77.97.109.60 ip_proto icmp code 74 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11528 flower src_mac 02:e5:a4:8e:cb:1d dst_mac 02:0d:8f:e8:31:0a action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11529 flower src_mac 02:1a:4e:17:1b:6d dst_mac 02:eb:26:fa:40:5f vlan_id 2827 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11530 flower src_mac 02:9c:29:8b:d5:48 dst_mac 02:56:f9:3d:c9:90 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11531 flower src_mac 02:89:f0:79:06:07 dst_mac 02:85:48:e3:d0:a8 vlan_id 3148 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11532 flower src_mac 02:b4:a9:87:f9:c9 dst_mac 02:bd:e5:34:b0:c1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11533 flower src_mac 02:ba:61:a8:b3:de dst_mac 02:39:35:c1:f3:df vlan_id 2190 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11534 flower src_mac 02:ef:38:d0:ee:f2 dst_mac 02:1a:7d:ca:96:46 vlan_id 377 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11535 flower src_mac 02:03:f3:d8:63:c0 dst_mac 02:ab:ef:25:31:a0 vlan_id 3972 vlan_ethtype 0x9100 action trap INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 pref 11200 flower src_mac 02:25:12:e2:c5:47 dst_mac 02:da:c7:49:0e:e0 src_ip 25.27.156.171 dst_ip 64.105.30.98 ip_proto udp src_port 11371 dst_port 47942 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11201 flower src_mac 02:bc:5f:f8:9f:a4 dst_mac 02:dd:aa:f1:6f:38 vlan_id 1271 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11202 flower src_mac 02:9a:82:8d:1a:bc dst_mac 02:ed:23:0b:06:5a action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11203 flower src_mac 02:82:07:34:3a:81 dst_mac 02:49:0a:81:48:1d action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11204 flower src_mac 02:b7:6f:53:eb:f7 dst_mac 02:a3:a4:1c:b6:d9 src_ip 76.183.54.249 dst_ip 26.19.5.146 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11205 flower src_mac 02:7d:ee:82:ff:e5 dst_mac 02:27:62:1c:a3:82 vlan_id 2087 vlan_ethtype ip src_ip 99.230.25.93 dst_ip 120.228.14.162 ip_proto tcp src_port 16599 dst_port 9124 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11206 flower src_mac 02:c9:71:f1:73:aa dst_mac 02:5e:8f:52:b1:f8 src_ip 32.127.13.4 dst_ip 42.223.210.219 ip_proto tcp src_port 52192 dst_port 7596 action drop && tc filter add dev swp33 ingress protocol ip pref 11207 flower src_mac 02:c9:c3:88:d0:7f dst_mac 02:33:83:49:e5:09 src_ip 67.87.145.220 dst_ip 35.178.111.79 ip_proto tcp src_port 18779 dst_port 130 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11208 flower src_mac 02:99:82:4a:59:99 dst_mac 02:c0:3c:51:b3:53 src_ip 33.51.127.217 dst_ip 11.179.23.2 ip_proto udp src_port 7187 dst_port 12098 action trap && tc filter add dev swp33 ingress protocol ip pref 11209 flower src_mac 02:41:f0:be:e7:e8 dst_mac 02:b8:93:0c:0a:6a src_ip 112.59.220.67 dst_ip 68.37.81.139 ip_proto tcp src_port 5406 dst_port 3242 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11210 flower src_mac 02:ac:6f:81:7c:2c dst_mac 02:fb:a4:69:35:99 src_ip 23.200.30.135 dst_ip 23.111.56.29 ip_proto tcp src_port 34837 dst_port 4689 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11211 flower src_mac 02:bc:d2:f1:fb:8d dst_mac 02:b0:a4:4b:39:e2 vlan_id 3449 vlan_ethtype ip src_ip 115.107.106.27 dst_ip 76.55.189.208 action drop && tc filter add dev swp33 ingress protocol ip pref 11212 flower src_mac 02:27:8a:bf:76:fb dst_mac 02:d2:66:6d:6b:14 src_ip 117.219.199.1 dst_ip 107.7.113.160 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11213 flower src_mac 02:c1:78:ce:86:f7 dst_mac 02:3d:e2:7e:6a:d3 src_ip 38.255.9.54 dst_ip 89.211.243.91 ip_proto tcp src_port 47219 dst_port 61999 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11214 flower src_mac 02:2d:7a:a2:a6:af dst_mac 02:e5:c8:e1:5e:32 src_ip 118.174.241.243 dst_ip 126.164.165.80 ip_proto icmp code 81 type 5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:0c:04:9d:09:85 dst_mac 02:69:ff:82:b8:7b vlan_id 485 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11216 flower src_mac 02:03:94:f4:4f:4f dst_mac 02:b3:ce:03:1a:db vlan_id 927 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11217 flower src_mac 02:09:26:99:a7:c1 dst_mac 02:32:79:bd:8d:76 vlan_id 1032 vlan_ethtype ip src_ip 115.12.140.209 dst_ip 60.145.121.223 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11218 flower src_mac 02:01:93:fd:22:79 dst_mac 02:82:0d:9b:8c:6d vlan_id 1634 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11219 flower src_mac 02:f4:94:d3:45:1d dst_mac 02:c3:0f:0f:ab:de action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11220 flower src_mac 02:aa:32:36:63:ad dst_mac 02:94:bf:19:e6:e5 src_ip 93.141.98.177 dst_ip 107.78.166.135 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11221 flower src_mac 02:d0:10:47:a2:93 dst_mac 02:66:c2:40:15:3d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11222 flower src_mac 02:0b:74:75:10:19 dst_mac 02:a0:62:e0:b0:5c vlan_id 3717 vlan_ethtype ip src_ip 64.60.213.89 dst_ip 31.168.245.235 ip_proto tcp src_port 64760 dst_port 15088 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11223 flower src_mac 02:af:6d:7a:c8:dd dst_mac 02:70:4c:fd:a5:60 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11224 flower src_mac 02:07:b6:be:d4:36 dst_mac 02:26:e8:f4:3d:0a vlan_id 3279 vlan_ethtype 0x0800 src_ip 72.24.134.246 dst_ip 41.249.129.61 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:64:00:e2:7c:39 dst_mac 02:34:44:bb:26:f1 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11226 flower src_mac 02:12:a8:8c:bb:0b dst_mac 02:58:6f:d9:56:78 vlan_id 2535 vlan_ethtype ip src_ip 104.133.62.2 dst_ip 28.202.3.108 ip_proto tcp src_port 28473 dst_port 56736 action trap && tc filter add dev swp33 ingress protocol ip pref 11227 flower src_mac 02:b7:67:b4:5d:b7 dst_mac 02:49:e7:14:d9:89 src_ip 25.160.216.57 dst_ip 87.103.247.130 ip_proto icmp code 104 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11228 flower src_mac 02:c7:4e:5e:84:c9 dst_mac 02:7f:9f:ba:e6:c1 action trap && tc filter add dev swp33 ingress protocol ip pref 11229 flower src_mac 02:50:01:86:9c:fe dst_mac 02:94:4b:c1:d8:25 src_ip 121.118.92.133 dst_ip 32.124.241.180 ip_proto udp src_port 12557 dst_port 12684 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11230 flower src_mac 02:69:3c:18:3e:2b dst_mac 02:ac:c5:c7:8f:b8 vlan_id 1074 vlan_ethtype ipv4 src_ip 44.4.89.139 dst_ip 68.181.108.195 ip_proto udp src_port 3473 dst_port 43666 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11231 flower src_mac 02:e5:b6:8f:85:da dst_mac 02:96:ea:34:48:ac src_ip 45.248.70.250 dst_ip 73.121.30.24 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11232 flower src_mac 02:47:62:8e:51:b1 dst_mac 02:da:cc:cb:dc:66 vlan_id 781 vlan_ethtype ipv4 src_ip 61.105.94.219 dst_ip 119.234.120.166 ip_proto udp src_port 49892 dst_port 37818 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11233 flower src_mac 02:57:69:df:82:de dst_mac 02:5f:d1:0b:87:3a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11234 flower src_mac 02:87:61:fd:91:b1 dst_mac 02:23:cb:5a:3e:7d src_ip 47.36.98.183 dst_ip 19.58.120.162 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11235 flower src_mac 02:86:e8:31:9c:e1 dst_mac 02:30:ee:ae:e4:b5 vlan_id 3697 vlan_ethtype 0x0800 src_ip 110.27.31.113 dst_ip 12.57.173.185 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11236 flower src_mac 02:e8:d7:ba:78:df dst_mac 02:9c:2c:53:7d:1d action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11237 flower src_mac 02:fe:33:05:4e:08 dst_mac 02:44:17:8e:55:45 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11238 flower src_mac 02:2b:e6:48:ee:25 dst_mac 02:39:bb:33:b0:96 vlan_id 2917 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11239 flower src_mac 02:90:47:9d:6d:8a dst_mac 02:ee:af:57:1c:70 vlan_id 3104 vlan_ethtype ip src_ip 97.182.221.122 dst_ip 13.80.227.69 ip_proto udp src_port 3802 dst_port 50099 action pass && tc filter add dev swp33 ingress protocol ip pref 11240 flower src_mac 02:a7:30:9b:15:49 dst_mac 02:9e:1d:22:7a:59 src_ip 87.149.112.227 dst_ip 100.161.70.103 ip_proto udp src_port 2663 dst_port 11713 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11241 flower src_mac 02:28:3a:24:1c:d6 dst_mac 02:23:4e:bc:48:28 action drop && tc filter add dev swp33 ingress protocol ip pref 11242 flower src_mac 02:02:d3:4c:b1:37 dst_mac 02:f2:51:f5:eb:c4 src_ip 47.228.149.77 dst_ip 26.222.167.130 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11243 flower src_mac 02:a4:fc:d4:84:39 dst_mac 02:8b:b7:79:e3:e9 src_ip 81.74.55.6 dst_ip 72.110.202.67 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11244 flower src_mac 02:0b:5f:43:f3:bb dst_mac 02:7f:db:07:4a:92 src_ip 31.16.199.50 dst_ip 62.134.36.238 ip_proto icmp code 106 type 13 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11245 flower src_mac 02:8f:23:f3:aa:07 dst_mac 02:83:bc:c7:b0:e4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11246 flower src_mac 02:ed:3c:8b:a7:77 dst_mac 02:1a:ab:19:bc:e2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11247 flower src_mac 02:9e:fe:cc:98:94 dst_mac 02:04:c2:c3:64:ff vlan_id 2078 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11248 flower src_mac 02:30:70:09:f3:a8 dst_mac 02:6b:11:79:e0:a9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11249 flower src_mac 02:8e:80:7f:1c:58 dst_mac 02:81:39:22:e3:42 vlan_id 1923 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11250 flower src_mac 02:16:2b:3a:c3:3e dst_mac 02:f2:48:5a:ba:08 src_ip 34.85.148.217 dst_ip 110.167.215.54 ip_proto icmp code 220 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11251 flower src_mac 02:37:a5:71:1e:5d dst_mac 02:e6:b0:ad:b3:9a vlan_id 3938 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11252 flower src_mac 02:0d:ad:18:39:01 dst_mac 02:10:c4:41:45:92 src_ip 99.54.209.40 dst_ip 46.138.41.1 ip_proto udp src_port 1012 dst_port 42067 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11253 flower src_mac 02:3f:ad:ac:cb:cf dst_mac 02:8b:a0:28:52:da vlan_id 147 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11254 flower src_mac 02:90:6f:d7:c7:92 dst_mac 02:ff:8f:08:4f:62 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11255 flower src_mac 02:a4:ab:ae:9e:84 dst_mac 02:0f:d9:f7:ed:9e vlan_id 2307 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11256 flower src_mac 02:f2:57:f9:a1:85 dst_mac 02:dd:5e:f5:93:d5 src_ip 70.50.164.211 dst_ip 92.147.59.185 ip_proto tcp src_port 9175 dst_port 14865 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11257 flower src_mac 02:b2:54:87:b0:33 dst_mac 02:c3:aa:34:48:28 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11258 flower src_mac 02:63:ba:f2:53:cc dst_mac 02:80:41:7f:51:1c action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11259 flower src_mac 02:08:b1:94:ab:fb dst_mac 02:74:52:10:24:29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11260 flower src_mac 02:ff:0d:f5:fd:20 dst_mac 02:47:78:d3:09:6e vlan_id 839 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11261 flower src_mac 02:3b:b3:de:30:69 dst_mac 02:4b:3b:43:2a:32 vlan_id 735 vlan_ethtype ip src_ip 60.194.230.172 dst_ip 73.187.224.55 ip_proto udp src_port 59670 dst_port 23416 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11262 flower src_mac 02:9e:28:fb:c3:19 dst_mac 02:ed:99:47:f3:6f action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11263 flower src_mac 02:47:31:71:5a:e1 dst_mac 02:56:eb:dd:d5:7d vlan_id 3716 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11264 flower src_mac 02:bb:b7:45:7b:52 dst_mac 02:6b:85:3b:af:0f vlan_id 608 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11265 flower src_mac 02:82:05:57:0d:3d dst_mac 02:aa:e0:95:e6:a7 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11266 flower src_mac 02:bc:48:e4:08:6b dst_mac 02:7f:2f:91:dc:26 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:02:11:c5:3d:ba dst_mac 02:7d:46:f3:d3:ec vlan_id 622 vlan_ethtype ipv4 src_ip 82.216.10.68 dst_ip 49.146.202.133 ip_proto udp src_port 23301 dst_port 30809 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11268 flower src_mac 02:b5:1c:79:1b:32 dst_mac 02:5a:2f:2a:89:df src_ip 99.122.222.207 dst_ip 21.99.191.142 ip_proto udp src_port 28186 dst_port 49729 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11269 flower src_mac 02:df:99:c5:d5:59 dst_mac 02:0a:16:46:48:86 vlan_id 1438 vlan_ethtype ipv4 src_ip 84.38.238.100 dst_ip 123.1.24.184 ip_proto udp src_port 1421 dst_port 42205 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11270 flower src_mac 02:21:cb:3f:fe:ef dst_mac 02:d7:1f:cd:2d:28 vlan_id 3381 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11271 flower src_mac 02:9a:b3:d9:37:f8 dst_mac 02:7e:3e:a0:c0:a9 vlan_id 411 vlan_ethtype ipv4 src_ip 62.152.16.59 dst_ip 11.192.254.193 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11272 flower src_mac 02:47:21:cb:bf:98 dst_mac 02:ff:7a:b8:ce:41 vlan_id 969 vlan_ethtype ip src_ip 105.125.144.3 dst_ip 43.81.184.223 ip_proto tcp src_port 5727 dst_port 54652 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11273 flower src_mac 02:2e:64:3b:b1:cb dst_mac 02:5d:f2:02:5f:a9 action drop && tc filter add dev swp33 ingress protocol ip pref 11274 flower src_mac 02:ac:5e:c5:20:04 dst_mac 02:f4:c9:90:55:1c src_ip 91.67.110.30 dst_ip 104.198.131.230 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11275 flower src_mac 02:2a:72:86:4c:31 dst_mac 02:7e:3f:46:67:1f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11276 flower src_mac 02:4e:54:3a:46:a0 dst_mac 02:d9:3c:08:8e:c6 vlan_id 1088 vlan_ethtype 0x0800 src_ip 13.43.232.129 dst_ip 123.47.222.121 ip_proto tcp src_port 25354 dst_port 34017 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11277 flower src_mac 02:b4:d8:6a:37:ce dst_mac 02:0a:a1:c3:7a:93 src_ip 50.217.175.122 dst_ip 37.218.133.6 ip_proto udp src_port 62606 dst_port 4983 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11278 flower src_mac 02:5c:7e:b6:5f:eb dst_mac 02:82:f1:d8:93:53 vlan_id 2880 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11279 flower src_mac 02:6f:a7:4c:fc:8f dst_mac 02:83:e9:0d:0d:7e vlan_id 148 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11280 flower src_mac 02:01:52:71:d7:d1 dst_mac 02:e1:0c:5e:d5:f4 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11281 flower src_mac 02:9a:67:c2:5b:25 dst_mac 02:fe:f9:e9:50:8f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11282 flower src_mac 02:cb:01:e0:a9:f6 dst_mac 02:43:4f:5b:76:2a vlan_id 3633 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11283 flower src_mac 02:f9:15:34:88:2f dst_mac 02:ec:e6:37:9e:42 vlan_id 3816 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11284 flower src_mac 02:83:18:55:bc:9b dst_mac 02:33:c6:f2:2d:5b vlan_id 1274 vlan_ethtype ip src_ip 50.38.31.234 dst_ip 52.4.211.104 ip_proto tcp src_port 42073 dst_port 35196 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11285 flower src_mac 02:4d:e7:df:97:e7 dst_mac 02:f5:fb:55:64:ca src_ip 55.21.103.176 dst_ip 100.177.81.20 ip_proto tcp src_port 33766 dst_port 38221 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11286 flower src_mac 02:fc:f9:1a:6a:5d dst_mac 02:1b:45:3b:32:b9 vlan_id 1644 vlan_ethtype 0x0800 src_ip 18.67.157.82 dst_ip 69.214.114.41 ip_proto tcp src_port 56094 dst_port 13996 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11287 flower src_mac 02:f7:f2:73:bc:cd dst_mac 02:3e:a9:6b:c4:83 src_ip 33.24.189.226 dst_ip 76.48.131.107 ip_proto udp src_port 44019 dst_port 16292 action pass && tc filter add dev swp33 ingress protocol ip pref 11288 flower src_mac 02:11:0e:60:8d:ae dst_mac 02:4d:13:2d:20:15 src_ip 79.138.166.165 dst_ip 105.126.213.178 ip_proto udp src_port 28234 dst_port 61049 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11289 flower src_mac 02:3f:9a:ea:2c:2e dst_mac 02:85:ad:c3:fd:cb vlan_id 3229 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11290 flower src_mac 02:3d:28:5c:9c:d5 dst_mac 02:9f:53:7a:98:19 vlan_id 4057 vlan_ethtype 0x0800 src_ip 115.148.129.152 dst_ip 114.252.92.51 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11291 flower src_mac 02:7f:d9:1b:56:be dst_mac 02:d5:68:b4:2a:83 vlan_id 3690 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11292 flower src_mac 02:ac:f2:cf:ba:b0 dst_mac 02:ed:95:7e:bc:65 vlan_id 2199 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11293 flower src_mac 02:95:7f:4f:ab:3a dst_mac 02:91:26:4d:fa:07 vlan_id 777 vlan_ethtype 0x0800 src_ip 78.51.122.99 dst_ip 100.126.121.64 ip_proto udp src_port 61423 dst_port 9673 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11294 flower src_mac 02:db:3e:c0:10:fe dst_mac 02:f4:25:18:01:d6 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11295 flower src_mac 02:14:3d:0f:ae:be dst_mac 02:b4:ac:ef:c1:b0 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11296 flower src_mac 02:ad:cc:53:0c:24 dst_mac 02:98:df:e0:6e:90 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11297 flower src_mac 02:be:d7:dd:94:93 dst_mac 02:da:a0:9c:35:38 vlan_id 3198 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11298 flower src_mac 02:11:02:0b:4c:62 dst_mac 02:ad:a4:d2:04:46 src_ip 101.37.122.61 dst_ip 116.24.240.2 ip_proto udp src_port 30930 dst_port 18748 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11299 flower src_mac 02:90:77:8b:7b:90 dst_mac 02:16:06:b0:6a:7f action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11300 flower src_mac 02:00:e7:7f:e1:88 dst_mac 02:b2:f4:1f:9b:47 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11301 flower src_mac 02:d1:f8:bb:0d:21 dst_mac 02:e5:d6:5c:b5:37 src_ip 60.96.139.48 dst_ip 44.33.19.231 ip_proto udp src_port 11210 dst_port 17909 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11302 flower src_mac 02:57:89:90:78:03 dst_mac 02:98:98:79:7c:c8 vlan_id 3049 vlan_ethtype 0x0800 src_ip 56.130.190.241 dst_ip 109.84.80.62 ip_proto tcp src_port 41179 dst_port 6488 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11303 flower src_mac 02:5d:70:e5:64:30 dst_mac 02:04:c3:80:49:31 vlan_id 3466 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11304 flower src_mac 02:a7:1c:14:15:7c dst_mac 02:dc:30:e6:18:88 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11305 flower src_mac 02:86:cc:aa:3f:ab dst_mac 02:ad:5b:12:53:c3 src_ip 25.147.128.12 dst_ip 90.176.42.62 ip_proto tcp src_port 13372 dst_port 56376 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11306 flower src_mac 02:5f:75:59:03:36 dst_mac 02:cf:2c:1d:62:b1 vlan_id 389 vlan_ethtype 0x0800 src_ip 95.145.192.56 dst_ip 13.161.146.172 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11307 flower src_mac 02:95:8e:61:c9:69 dst_mac 02:61:2c:bc:46:86 vlan_id 2846 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11308 flower src_mac 02:1f:89:58:d3:ba dst_mac 02:fb:a9:ae:4d:14 vlan_id 1639 vlan_ethtype 0x0800 src_ip 21.72.91.99 dst_ip 56.61.122.53 ip_proto tcp src_port 33089 dst_port 55655 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11309 flower src_mac 02:df:10:d1:9c:c0 dst_mac 02:dd:e3:ba:bf:f9 vlan_id 600 vlan_ethtype 0x0800 src_ip 110.171.29.8 dst_ip 117.74.50.144 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11310 flower src_mac 02:ab:a6:60:01:56 dst_mac 02:0a:d5:08:88:b5 vlan_id 1940 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11311 flower src_mac 02:c1:9a:7f:1a:4b dst_mac 02:23:f4:bb:b1:c8 vlan_id 3303 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11312 flower src_mac 02:82:7a:3b:c4:89 dst_mac 02:b6:c8:08:54:8c vlan_id 3681 vlan_ethtype ipv4 src_ip 57.224.61.95 dst_ip 54.143.117.245 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11313 flower src_mac 02:11:c8:c8:35:6f dst_mac 02:71:bc:b1:2e:94 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11314 flower src_mac 02:aa:62:16:e3:a0 dst_mac 02:6c:15:0a:62:d3 src_ip 50.7.47.3 dst_ip 105.187.148.121 ip_proto tcp src_port 49826 dst_port 9253 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11315 flower src_mac 02:db:ec:ae:d7:7a dst_mac 02:b6:bf:cd:57:2d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11316 flower src_mac 02:3e:5c:41:38:25 dst_mac 02:fc:10:b1:95:ac vlan_id 992 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11317 flower src_mac 02:17:26:c7:b5:92 dst_mac 02:79:8b:0b:3c:92 vlan_id 2163 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11318 flower src_mac 02:8a:90:d8:71:bc dst_mac 02:47:c4:ef:1f:21 src_ip 100.85.154.154 dst_ip 125.102.175.239 ip_proto tcp src_port 6769 dst_port 25822 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11319 flower src_mac 02:b1:5d:e7:e5:42 dst_mac 02:8d:14:84:eb:cc vlan_id 3682 vlan_ethtype ip src_ip 103.251.54.134 dst_ip 103.181.173.180 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11320 flower src_mac 02:f6:42:7e:c7:7e dst_mac 02:0d:80:11:76:3d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11321 flower src_mac 02:ec:4b:d0:f0:dd dst_mac 02:99:79:0b:f3:20 vlan_id 803 vlan_ethtype ip src_ip 124.84.249.237 dst_ip 109.31.105.193 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11322 flower src_mac 02:62:df:2b:2d:63 dst_mac 02:26:ad:31:f6:04 vlan_id 795 vlan_ethtype 0x0800 src_ip 96.86.158.208 dst_ip 109.207.195.8 ip_proto tcp src_port 56513 dst_port 24369 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11323 flower src_mac 02:15:04:ea:70:a9 dst_mac 02:1e:dd:ef:7e:2c vlan_id 1987 vlan_ethtype ip src_ip 96.136.97.223 dst_ip 72.43.237.245 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11324 flower src_mac 02:7d:95:16:35:06 dst_mac 02:b8:db:be:30:d9 src_ip 95.230.95.64 dst_ip 57.101.19.17 ip_proto tcp src_port 41114 dst_port 24254 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11325 flower src_mac 02:7b:36:10:9f:1d dst_mac 02:15:2d:a3:d2:ce src_ip 76.14.185.58 dst_ip 26.159.38.133 ip_proto icmp code 132 type 5 action drop && tc filter add dev swp33 ingress protocol ip pref 11326 flower src_mac 02:d6:1c:2b:e5:23 dst_mac 02:11:a7:24:c5:ef src_ip 13.99.58.48 dst_ip 121.30.173.8 ip_proto udp src_port 40812 dst_port 37315 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11327 flower src_mac 02:a8:f5:7a:00:63 dst_mac 02:c3:f5:b7:df:80 src_ip 57.65.45.94 dst_ip 70.93.104.2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11328 flower src_mac 02:9b:51:2b:41:aa dst_mac 02:18:52:67:2c:c1 vlan_id 3895 vlan_ethtype ipv4 src_ip 66.197.105.196 dst_ip 72.215.87.214 ip_proto udp src_port 22729 dst_port 59788 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11329 flower src_mac 02:9c:e7:97:c0:03 dst_mac 02:89:9d:a0:f4:48 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11330 flower src_mac 02:ee:3a:df:c9:37 dst_mac 02:b9:d0:bf:08:e1 vlan_id 1450 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11331 flower src_mac 02:b2:1c:b6:67:8c dst_mac 02:0a:a4:d6:a1:c6 vlan_id 1730 vlan_ethtype ip src_ip 53.8.10.42 dst_ip 99.177.84.192 ip_proto udp src_port 58515 dst_port 40582 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11332 flower src_mac 02:a6:94:da:8e:c1 dst_mac 02:91:1d:b7:02:fe action pass && tc filter add dev swp33 ingress protocol ip pref 11333 flower src_mac 02:a4:39:c3:09:58 dst_mac 02:a4:3c:a9:7d:43 src_ip 29.136.175.237 dst_ip 31.189.94.87 ip_proto tcp src_port 42292 dst_port 14223 action trap && tc filter add dev swp33 ingress protocol ip pref 11334 flower src_mac 02:7f:48:4e:13:c3 dst_mac 02:b4:be:43:b1:d5 src_ip 22.195.18.185 dst_ip 114.173.175.41 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11335 flower src_mac 02:9c:9c:9f:23:13 dst_mac 02:c1:46:24:e3:31 src_ip 82.204.228.104 dst_ip 113.223.107.206 ip_proto udp src_port 55265 dst_port 18452 action pass && tc filter add dev swp33 ingress protocol ip pref 11336 flower src_mac 02:b2:f7:37:cc:2a dst_mac 02:74:c3:b8:f0:0b src_ip 76.73.11.85 dst_ip 41.6.48.72 ip_proto udp src_port 64109 dst_port 5265 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11337 flower src_mac 02:61:9a:47:fc:2a dst_mac 02:90:0b:5c:a3:9e vlan_id 1298 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11338 flower src_mac 02:2b:ab:9e:40:a9 dst_mac 02:20:a7:13:09:e3 vlan_id 1923 vlan_ethtype ipv4 src_ip 113.124.133.138 dst_ip 23.88.87.30 ip_proto tcp src_port 5780 dst_port 45195 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11339 flower src_mac 02:5c:d0:b0:9a:d6 dst_mac 02:59:2f:0f:77:2a action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11340 flower src_mac 02:d2:6f:1d:08:e2 dst_mac 02:47:a6:84:4a:82 src_ip 41.64.173.46 dst_ip 25.143.145.118 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11341 flower src_mac 02:c1:47:b7:4f:f8 dst_mac 02:a6:2a:7d:af:f5 src_ip 113.206.155.98 dst_ip 93.64.51.101 ip_proto icmp code 96 type 17 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11342 flower src_mac 02:cc:59:06:75:07 dst_mac 02:bf:5c:6d:2e:1a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11343 flower src_mac 02:56:bc:07:d8:84 dst_mac 02:60:7f:b5:3d:d0 vlan_id 4023 vlan_ethtype ipv4 src_ip 106.214.143.8 dst_ip 122.33.253.31 ip_proto udp src_port 16823 dst_port 15764 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11344 flower src_mac 02:30:e4:6e:04:2f dst_mac 02:c9:3f:b7:6b:e3 src_ip 38.165.224.232 dst_ip 29.216.5.16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11345 flower src_mac 02:61:17:cd:c4:52 dst_mac 02:44:16:ae:1b:35 src_ip 82.6.28.89 dst_ip 22.138.207.177 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11346 flower src_mac 02:21:b7:72:56:9f dst_mac 02:45:f6:58:a1:aa vlan_id 632 vlan_ethtype ipv4 src_ip 11.55.10.130 dst_ip 115.155.161.2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11347 flower src_mac 02:b8:dd:3d:e0:24 dst_mac 02:51:f2:2a:2f:5d vlan_id 3949 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11348 flower src_mac 02:04:41:ca:09:5c dst_mac 02:f8:f1:02:ab:b9 vlan_id 4086 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11349 flower src_mac 02:80:cf:d5:02:76 dst_mac 02:3a:e6:33:3c:f8 src_ip 98.189.158.205 dst_ip 16.157.3.249 ip_proto tcp src_port 7038 dst_port 2508 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11350 flower src_mac 02:ce:a0:e6:6a:89 dst_mac 02:91:f0:2e:68:db action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11351 flower src_mac 02:e7:45:fd:70:f9 dst_mac 02:5f:94:83:91:93 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11352 flower src_mac 02:78:90:6d:8f:c3 dst_mac 02:ce:ac:ce:bb:ff vlan_id 3174 vlan_ethtype 0x0800 src_ip 53.225.20.182 dst_ip 71.209.197.33 ip_proto udp src_port 30360 dst_port 50000 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11353 flower src_mac 02:7e:20:51:0f:87 dst_mac 02:26:de:33:1f:0a vlan_id 2478 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:bf:fc:34:c3:f2 dst_mac 02:48:8d:0f:ac:67 vlan_id 3674 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11355 flower src_mac 02:4a:d7:5e:9a:35 dst_mac 02:0b:a9:54:e9:19 src_ip 73.28.142.238 dst_ip 52.239.25.118 ip_proto icmp code 164 type 14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11356 flower src_mac 02:d4:63:de:b0:e4 dst_mac 02:13:77:ad:e7:c4 vlan_id 372 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11357 flower src_mac 02:0b:83:80:21:4a dst_mac 02:72:46:8b:db:b6 vlan_id 3103 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11358 flower src_mac 02:e3:65:5e:8d:4f dst_mac 02:e8:3b:7c:95:ec src_ip 51.144.1.5 dst_ip 43.14.22.145 ip_proto icmp code 24 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11359 flower src_mac 02:54:e6:fc:07:3a dst_mac 02:4e:4d:08:c0:09 vlan_id 861 vlan_ethtype ipv4 src_ip 95.209.173.183 dst_ip 30.98.113.175 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11360 flower src_mac 02:b0:87:25:26:33 dst_mac 02:64:51:2f:2a:44 vlan_id 2068 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11361 flower src_mac 02:23:a4:91:6e:ff dst_mac 02:02:fa:10:70:2d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11362 flower src_mac 02:08:1b:c1:9e:16 dst_mac 02:d1:61:1b:4e:7a vlan_id 1885 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11363 flower src_mac 02:6f:66:bc:78:8b dst_mac 02:d6:5c:79:68:a8 action drop && tc filter add dev swp33 ingress protocol ip pref 11364 flower src_mac 02:b9:5e:55:ce:0e dst_mac 02:c8:63:92:4e:7d src_ip 123.15.196.112 dst_ip 117.52.85.147 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11365 flower src_mac 02:a7:9b:7f:65:bf dst_mac 02:c1:3f:b0:7d:98 vlan_id 315 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11366 flower src_mac 02:99:43:1b:1d:e7 dst_mac 02:df:66:b7:25:2d action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11367 flower src_mac 02:ab:aa:75:3b:14 dst_mac 02:8c:31:79:6a:72 vlan_id 305 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11368 flower src_mac 02:c4:d6:6c:25:57 dst_mac 02:85:60:6e:03:e9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11369 flower src_mac 02:e0:83:e4:5f:bc dst_mac 02:9d:60:3e:15:db vlan_id 1320 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11370 flower src_mac 02:4e:31:a4:2e:b7 dst_mac 02:71:89:9f:12:f4 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11371 flower src_mac 02:67:7d:58:18:f5 dst_mac 02:a2:a6:76:1d:83 src_ip 60.248.161.103 dst_ip 108.200.49.161 ip_proto icmp code 180 type 14 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11372 flower src_mac 02:7d:be:84:03:de dst_mac 02:8b:8a:85:97:68 vlan_id 2147 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11373 flower src_mac 02:a2:4a:6c:c2:7a dst_mac 02:9d:0e:a4:17:c0 src_ip 26.141.54.29 dst_ip 21.84.167.90 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11374 flower src_mac 02:84:80:38:84:aa dst_mac 02:2a:67:c8:3a:b0 src_ip 110.172.12.46 dst_ip 64.141.103.78 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11375 flower src_mac 02:35:8f:69:9d:bb dst_mac 02:b9:25:6a:e3:76 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11376 flower src_mac 02:76:51:0a:eb:70 dst_mac 02:8e:a3:00:49:b2 vlan_id 1214 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11377 flower src_mac 02:ff:e5:43:a2:e0 dst_mac 02:bf:7c:ba:96:ee action pass && tc filter add dev swp33 ingress protocol ip pref 11378 flower src_mac 02:db:db:46:c9:aa dst_mac 02:48:09:f2:b7:19 src_ip 62.215.224.68 dst_ip 47.253.113.189 ip_proto icmp code 54 type 17 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11379 flower src_mac 02:e7:c1:f0:c7:7a dst_mac 02:ad:63:81:c4:88 vlan_id 1422 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11380 flower src_mac 02:82:75:8e:f3:82 dst_mac 02:56:8d:43:c7:b7 vlan_id 1959 vlan_ethtype 0x0800 src_ip 17.4.183.122 dst_ip 68.237.105.142 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11381 flower src_mac 02:5b:4d:28:69:bb dst_mac 02:c0:ae:5f:9d:5b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11382 flower src_mac 02:99:9c:73:70:01 dst_mac 02:e1:ff:8b:74:f4 src_ip 66.12.100.216 dst_ip 40.221.66.217 ip_proto udp src_port 10029 dst_port 53685 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11383 flower src_mac 02:da:09:6e:d4:3d dst_mac 02:ee:76:52:ea:fe action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11384 flower src_mac 02:26:7a:0a:f6:80 dst_mac 02:81:bc:a9:3d:3c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11385 flower src_mac 02:e1:cc:ae:55:98 dst_mac 02:72:b0:4c:f6:c2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11386 flower src_mac 02:50:19:e5:79:7b dst_mac 02:b1:3c:bb:bb:98 vlan_id 2007 vlan_ethtype ipv4 src_ip 97.67.222.146 dst_ip 100.103.116.27 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11387 flower src_mac 02:3c:4c:41:90:1a dst_mac 02:94:33:6e:a6:2a vlan_id 98 vlan_ethtype ipv4 src_ip 97.1.247.66 dst_ip 76.112.60.206 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11388 flower src_mac 02:50:7e:bc:79:5e dst_mac 02:6e:8c:f0:0b:40 vlan_id 3958 vlan_ethtype ip src_ip 115.59.3.53 dst_ip 67.167.238.122 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11389 flower src_mac 02:c7:5a:c5:26:c9 dst_mac 02:40:87:a2:8a:8e vlan_id 3295 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11390 flower src_mac 02:d8:05:dc:ec:28 dst_mac 02:a8:3b:72:66:ab vlan_id 3534 vlan_ethtype ip src_ip 65.78.162.13 dst_ip 18.255.27.170 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11391 flower src_mac 02:8a:b9:57:eb:ef dst_mac 02:01:ed:af:c7:0b vlan_id 1197 vlan_ethtype 0x0800 src_ip 49.90.108.37 dst_ip 53.79.216.226 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11392 flower src_mac 02:29:41:cd:38:10 dst_mac 02:e3:78:4b:3e:ca vlan_id 3196 vlan_ethtype 0x0800 src_ip 17.53.128.165 dst_ip 17.245.123.207 ip_proto tcp src_port 7082 dst_port 17724 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11393 flower src_mac 02:e7:48:07:04:65 dst_mac 02:ce:4d:35:91:8e vlan_id 3273 vlan_ethtype 0x0800 src_ip 18.52.169.210 dst_ip 25.146.110.29 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11394 flower src_mac 02:07:3d:92:80:ed dst_mac 02:77:98:f6:3e:f1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11395 flower src_mac 02:12:61:97:99:aa dst_mac 02:97:9e:1b:af:38 vlan_id 2403 vlan_ethtype ipv4 src_ip 121.176.248.244 dst_ip 48.185.170.51 ip_proto tcp src_port 3056 dst_port 21399 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:d9:e7:5a:39:3f dst_mac 02:48:9d:03:10:b1 vlan_id 717 vlan_ethtype ip src_ip 26.155.40.179 dst_ip 69.4.50.106 ip_proto tcp src_port 46227 dst_port 59078 action pass && tc filter add dev swp33 ingress protocol ip pref 11397 flower src_mac 02:1e:71:fd:89:1d dst_mac 02:aa:24:b3:5d:d9 src_ip 97.198.106.244 dst_ip 21.237.219.41 ip_proto udp src_port 25909 dst_port 6697 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11398 flower src_mac 02:ff:0d:ea:c6:97 dst_mac 02:e3:2b:f3:e6:c3 vlan_id 618 vlan_ethtype 0x0800 src_ip 102.97.167.169 dst_ip 104.3.178.90 ip_proto udp src_port 11113 dst_port 31819 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11399 flower src_mac 02:0e:6a:62:24:ea dst_mac 02:f4:25:f6:c8:37 vlan_id 2069 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11400 flower src_mac 02:bf:9a:9d:4d:b2 dst_mac 02:48:ee:17:14:43 vlan_id 2353 vlan_ethtype 0x0800 src_ip 56.178.74.29 dst_ip 28.246.238.45 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:81:69:c4:4a:5e dst_mac 02:1e:da:3a:33:f0 vlan_id 206 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11402 flower src_mac 02:b1:c2:f4:1c:b2 dst_mac 02:42:5e:0c:ed:ec action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11403 flower src_mac 02:86:a5:78:9b:8b dst_mac 02:c8:fb:f5:39:e3 vlan_id 2860 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11404 flower src_mac 02:1b:a3:6e:81:a6 dst_mac 02:45:bd:5a:ca:eb action drop && tc filter add dev swp33 ingress protocol ip pref 11405 flower src_mac 02:d6:ca:22:c4:cc dst_mac 02:72:76:e9:3e:e9 src_ip 123.216.247.177 dst_ip 14.39.1.53 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11406 flower src_mac 02:6a:8b:a3:e4:02 dst_mac 02:54:f0:6b:5b:f5 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11407 flower src_mac 02:7e:e4:87:9e:eb dst_mac 02:36:52:63:61:97 src_ip 75.2.213.250 dst_ip 121.2.193.45 action drop && tc filter add dev swp33 ingress protocol ip pref 11408 flower src_mac 02:23:25:6a:f0:a5 dst_mac 02:7c:2d:12:65:ed src_ip 42.149.174.78 dst_ip 65.62.27.63 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11409 flower src_mac 02:e1:36:69:a3:70 dst_mac 02:a2:36:20:d1:56 vlan_id 3176 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11410 flower src_mac 02:8b:82:97:ce:3e dst_mac 02:b9:dd:6a:ea:be vlan_id 366 vlan_ethtype 0x0800 src_ip 52.150.180.34 dst_ip 56.104.215.107 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11411 flower src_mac 02:67:00:1d:d7:b8 dst_mac 02:06:d8:39:61:b6 action drop && tc filter add dev swp33 ingress protocol ip pref 11412 flower src_mac 02:ad:86:69:a0:c6 dst_mac 02:34:94:55:e6:98 src_ip 59.245.140.115 dst_ip 95.62.163.75 ip_proto udp src_port 51249 dst_port 49547 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11413 flower src_mac 02:28:6b:74:b1:a4 dst_mac 02:86:dc:a8:47:f9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11414 flower src_mac 02:e9:22:78:0e:00 dst_mac 02:22:fe:f2:92:97 vlan_id 2514 vlan_ethtype ip src_ip 79.71.199.157 dst_ip 32.117.217.137 ip_proto tcp src_port 18867 dst_port 9995 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11415 flower src_mac 02:5c:88:de:77:45 dst_mac 02:aa:f3:ab:73:34 vlan_id 2392 vlan_ethtype 0x0800 src_ip 81.36.7.247 dst_ip 57.79.192.15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11416 flower src_mac 02:14:13:b7:30:57 dst_mac 02:66:11:c8:18:47 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11417 flower src_mac 02:b3:e1:31:f1:bb dst_mac 02:89:3d:88:3e:68 vlan_id 3018 vlan_ethtype 0x0800 src_ip 59.235.19.41 dst_ip 33.159.132.157 ip_proto udp src_port 37558 dst_port 2011 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11418 flower src_mac 02:84:c7:29:de:71 dst_mac 02:77:7f:f3:4a:e9 src_ip 67.129.160.63 dst_ip 17.19.155.176 ip_proto udp src_port 60234 dst_port 42050 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11419 flower src_mac 02:1f:2e:5c:54:00 dst_mac 02:c5:67:06:cb:de vlan_id 1690 vlan_ethtype 0x0800 src_ip 126.31.98.215 dst_ip 62.189.223.170 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11420 flower src_mac 02:0e:36:f3:29:14 dst_mac 02:d0:81:e8:92:df action drop && tc filter add dev swp33 ingress protocol ip pref 11421 flower src_mac 02:bb:2f:3c:10:c4 dst_mac 02:31:96:46:82:4f src_ip 59.12.232.63 dst_ip 102.213.177.84 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11422 flower src_mac 02:d4:2b:75:1d:d8 dst_mac 02:fe:45:41:8f:6d vlan_id 905 vlan_ethtype 0x0800 src_ip 111.138.134.199 dst_ip 105.199.72.41 ip_proto tcp src_port 36049 dst_port 19994 action trap && tc filter add dev swp33 ingress protocol ip pref 11423 flower src_mac 02:ac:f6:e3:b6:6e dst_mac 02:72:73:93:ee:4b src_ip 123.123.80.173 dst_ip 26.49.130.51 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11424 flower src_mac 02:c8:25:5e:7a:aa dst_mac 02:e2:ca:60:76:39 vlan_id 2633 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11425 flower src_mac 02:6e:7d:fd:5c:0c dst_mac 02:7d:4f:69:16:5a vlan_id 1166 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11426 flower src_mac 02:c2:c5:9b:9f:ae dst_mac 02:06:16:6e:06:15 vlan_id 1346 vlan_ethtype ip src_ip 53.144.118.158 dst_ip 105.125.39.160 ip_proto udp src_port 45777 dst_port 17160 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11427 flower src_mac 02:b1:ee:ed:22:b0 dst_mac 02:b6:3e:6b:a0:cc vlan_id 79 vlan_ethtype ip src_ip 65.222.111.211 dst_ip 85.90.170.22 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11428 flower src_mac 02:e5:4d:47:e9:9f dst_mac 02:e4:d8:65:f8:4d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11429 flower src_mac 02:8f:73:9b:39:7f dst_mac 02:a0:7b:0e:f7:9b vlan_id 226 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11430 flower src_mac 02:07:59:46:9b:13 dst_mac 02:01:30:c4:f3:e9 vlan_id 3420 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11431 flower src_mac 02:67:6d:42:31:f4 dst_mac 02:43:10:21:2f:a7 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11432 flower src_mac 02:f2:23:6f:98:b4 dst_mac 02:d0:19:6e:39:a6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11433 flower src_mac 02:85:68:ed:6a:0e dst_mac 02:d1:25:6f:cd:58 vlan_id 305 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11434 flower src_mac 02:c9:b3:31:44:8a dst_mac 02:6a:35:f4:9b:87 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11435 flower src_mac 02:28:5d:38:c5:72 dst_mac 02:a2:71:1d:05:55 vlan_id 2265 vlan_ethtype ipv4 src_ip 109.70.187.248 dst_ip 117.90.89.242 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11436 flower src_mac 02:c8:39:4e:2b:12 dst_mac 02:f4:95:f0:0a:30 vlan_id 3568 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11437 flower src_mac 02:36:e0:cf:86:15 dst_mac 02:cc:2c:0c:6f:bd vlan_id 2279 vlan_ethtype ipv4 src_ip 72.14.163.133 dst_ip 30.162.169.20 ip_proto tcp src_port 55130 dst_port 18173 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11438 flower src_mac 02:3e:99:d6:80:47 dst_mac 02:a2:95:99:9c:6f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11439 flower src_mac 02:dd:60:c5:e6:d0 dst_mac 02:43:b7:06:8f:a4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11440 flower src_mac 02:3c:e8:76:bd:80 dst_mac 02:06:f8:9f:bb:b1 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11441 flower src_mac 02:95:24:1b:e6:a2 dst_mac 02:74:09:6e:c4:01 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11442 flower src_mac 02:e8:0b:56:92:22 dst_mac 02:e0:f5:66:f8:fa action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11443 flower src_mac 02:9a:88:92:0d:2f dst_mac 02:40:1c:83:ea:e6 vlan_id 527 vlan_ethtype ip src_ip 70.25.216.55 dst_ip 49.117.5.15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11444 flower src_mac 02:89:27:e5:11:4e dst_mac 02:28:cd:2f:74:7d action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11445 flower src_mac 02:d3:20:88:2e:0f dst_mac 02:f2:51:8f:94:50 action drop && tc filter add dev swp33 ingress protocol ip pref 11446 flower src_mac 02:e1:ca:85:b2:79 dst_mac 02:f0:0a:00:62:8f src_ip 62.108.111.9 dst_ip 60.98.104.15 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11447 flower src_mac 02:18:c0:3d:14:69 dst_mac 02:84:ee:38:85:e8 action pass && tc filter add dev swp33 ingress protocol ip pref 11448 flower src_mac 02:b0:e1:18:6b:d4 dst_mac 02:62:5f:f3:87:3c src_ip 117.211.218.241 dst_ip 43.111.13.90 ip_proto icmp code 197 type 14 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11449 flower src_mac 02:65:73:64:8a:6f dst_mac 02:7a:45:20:2c:4c vlan_id 2479 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11450 flower src_mac 02:05:70:cf:bb:5e dst_mac 02:30:45:8e:6a:57 vlan_id 197 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11451 flower src_mac 02:db:fd:e0:18:12 dst_mac 02:e1:cd:43:05:89 src_ip 77.98.66.68 dst_ip 81.222.29.196 ip_proto icmp code 152 type 5 action trap && tc filter add dev swp33 ingress protocol ip pref 11452 flower src_mac 02:03:0d:9a:81:63 dst_mac 02:19:a1:f2:cb:b3 src_ip 66.49.201.210 dst_ip 46.245.189.189 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11453 flower src_mac 02:96:2a:70:81:70 dst_mac 02:b5:db:f2:24:bc vlan_id 3178 vlan_ethtype 0x0800 src_ip 12.63.106.57 dst_ip 60.35.220.146 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11454 flower src_mac 02:54:31:c9:8e:85 dst_mac 02:31:1e:3f:04:b8 vlan_id 200 vlan_ethtype ip src_ip 116.225.79.157 dst_ip 19.2.18.191 ip_proto tcp src_port 60811 dst_port 29263 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11455 flower src_mac 02:fa:62:99:7b:8c dst_mac 02:77:ae:4b:93:e3 vlan_id 3138 vlan_ethtype 0x0800 src_ip 72.137.215.101 dst_ip 111.66.38.21 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11456 flower src_mac 02:a5:96:bf:67:2d dst_mac 02:fa:a4:38:27:b6 vlan_id 300 vlan_ethtype ipv4 src_ip 113.247.184.124 dst_ip 85.34.55.245 ip_proto udp src_port 8034 dst_port 2518 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11457 flower src_mac 02:62:c2:44:a8:d4 dst_mac 02:b0:86:9f:3e:c9 vlan_id 2835 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11458 flower src_mac 02:70:73:b2:dd:82 dst_mac 02:90:7e:e8:ef:af src_ip 113.47.78.130 dst_ip 79.208.196.229 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11459 flower src_mac 02:10:a8:ec:07:f1 dst_mac 02:41:5f:77:e6:47 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11460 flower src_mac 02:9b:3e:01:56:d9 dst_mac 02:31:b4:c7:24:95 vlan_id 3674 vlan_ethtype ip src_ip 31.230.253.20 dst_ip 98.44.222.72 ip_proto udp src_port 64849 dst_port 3199 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11461 flower src_mac 02:05:0f:c5:36:c5 dst_mac 02:ae:78:12:cf:98 vlan_id 2113 vlan_ethtype ipv4 src_ip 88.240.226.92 dst_ip 51.131.87.20 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11462 flower src_mac 02:2a:9c:08:ba:c1 dst_mac 02:d1:68:28:fb:23 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11463 flower src_mac 02:69:bc:1d:8c:5e dst_mac 02:75:41:66:ff:51 vlan_id 3904 vlan_ethtype 0x0800 src_ip 103.34.24.93 dst_ip 109.207.35.2 ip_proto udp src_port 4011 dst_port 30210 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11464 flower src_mac 02:90:f3:e7:32:bd dst_mac 02:2c:b5:95:91:26 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11465 flower src_mac 02:54:72:6a:11:ca dst_mac 02:0e:d4:f1:b8:6c src_ip 26.232.115.45 dst_ip 88.233.9.203 ip_proto udp src_port 21556 dst_port 35733 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11466 flower src_mac 02:94:d9:b4:ed:cf dst_mac 02:44:6d:4e:c1:1b vlan_id 626 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:b1:7f:d9:9d:ba dst_mac 02:4e:15:4c:be:24 vlan_id 1008 vlan_ethtype ipv4 src_ip 86.211.139.13 dst_ip 97.246.167.14 ip_proto udp src_port 28026 dst_port 2160 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11468 flower src_mac 02:0c:6e:bc:6d:6f dst_mac 02:e8:3b:da:81:cf vlan_id 3419 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:49:eb:07:07:4c dst_mac 02:64:34:ff:ce:33 vlan_id 2667 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11470 flower src_mac 02:3d:16:c8:7b:dc dst_mac 02:5b:10:f5:96:7e action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11471 flower src_mac 02:c0:da:7b:5a:43 dst_mac 02:33:b2:da:59:65 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11472 flower src_mac 02:32:5f:58:b2:77 dst_mac 02:9e:dc:a6:20:ed action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11473 flower src_mac 02:b9:bc:7e:e1:40 dst_mac 02:a5:af:a5:0f:92 vlan_id 61 vlan_ethtype ip src_ip 19.72.237.16 dst_ip 22.225.22.210 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11474 flower src_mac 02:ed:15:39:a1:31 dst_mac 02:9c:94:7b:d0:86 vlan_id 856 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11475 flower src_mac 02:d7:be:02:b6:3f dst_mac 02:ff:3d:68:88:c6 vlan_id 1607 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11476 flower src_mac 02:f0:b9:e0:88:16 dst_mac 02:a2:6a:f2:43:bd vlan_id 1535 vlan_ethtype ipv4 src_ip 70.47.169.236 dst_ip 101.210.93.79 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11477 flower src_mac 02:d1:2c:47:62:e7 dst_mac 02:36:ba:b4:62:ee vlan_id 225 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11478 flower src_mac 02:78:92:ca:9d:2d dst_mac 02:48:f7:03:03:16 vlan_id 2826 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11479 flower src_mac 02:0a:28:e5:e7:37 dst_mac 02:9a:bf:36:40:c0 src_ip 19.166.105.236 dst_ip 71.87.175.128 ip_proto tcp src_port 10340 dst_port 45231 action pass && tc filter add dev swp33 ingress protocol ip pref 11480 flower src_mac 02:fd:ce:6a:c7:dc dst_mac 02:76:4f:32:32:2e src_ip 40.76.247.74 dst_ip 90.244.250.227 ip_proto udp src_port 22558 dst_port 33289 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11481 flower src_mac 02:14:68:72:04:9c dst_mac 02:16:e7:79:99:3f vlan_id 1754 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11482 flower src_mac 02:da:9d:ee:d6:ba dst_mac 02:c1:dd:9d:38:e7 vlan_id 2023 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11483 flower src_mac 02:40:94:22:59:ba dst_mac 02:1f:80:9d:bb:ab vlan_id 3760 vlan_ethtype ipv4 src_ip 98.146.99.202 dst_ip 125.28.79.149 ip_proto tcp src_port 45221 dst_port 65433 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11484 flower src_mac 02:0a:f1:28:d9:ea dst_mac 02:5e:a6:a4:66:b5 vlan_id 3682 vlan_ethtype 0x0800 src_ip 42.122.122.107 dst_ip 55.184.31.110 action drop && tc filter add dev swp33 ingress protocol ip pref 11485 flower src_mac 02:17:a0:78:0c:10 dst_mac 02:8f:27:ef:b6:f6 src_ip 98.23.3.142 dst_ip 23.174.144.198 ip_proto udp src_port 11365 dst_port 41499 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11486 flower src_mac 02:66:9e:f4:8d:26 dst_mac 02:0f:1e:93:50:45 vlan_id 2039 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11487 flower src_mac 02:c8:25:31:fb:75 dst_mac 02:9d:32:b7:db:5a action trap && tc filter add dev swp33 ingress protocol ip pref 11488 flower src_mac 02:fb:36:35:68:be dst_mac 02:7a:3c:7d:1d:27 src_ip 101.91.126.69 dst_ip 54.164.141.84 ip_proto tcp src_port 23337 dst_port 44463 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11489 flower src_mac 02:ca:db:03:e4:8b dst_mac 02:41:d5:da:c8:1d vlan_id 1580 vlan_ethtype ip src_ip 70.207.5.2 dst_ip 117.139.46.246 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11490 flower src_mac 02:0b:4c:74:39:d3 dst_mac 02:f9:7b:0c:13:d4 src_ip 33.88.147.118 dst_ip 25.47.35.18 ip_proto icmp code 149 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11491 flower src_mac 02:ef:b3:0c:d1:6b dst_mac 02:f7:94:4b:4a:0b action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11492 flower src_mac 02:41:a5:cd:f1:fc dst_mac 02:89:e0:40:6a:3a vlan_id 949 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11493 flower src_mac 02:1b:b5:b5:06:93 dst_mac 02:d9:9e:aa:b5:98 src_ip 74.178.78.245 dst_ip 105.158.124.106 ip_proto icmp code 228 type 5 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11494 flower src_mac 02:f9:9b:c1:36:98 dst_mac 02:c5:a5:df:f2:7d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11495 flower src_mac 02:4d:89:83:e5:64 dst_mac 02:01:82:59:ca:79 vlan_id 3321 vlan_ethtype ipv4 src_ip 12.93.200.8 dst_ip 74.142.36.105 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11496 flower src_mac 02:7c:09:ed:4b:05 dst_mac 02:f8:e1:06:5a:8e action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11497 flower src_mac 02:8c:d8:73:02:dc dst_mac 02:ed:66:0a:c5:36 src_ip 21.180.105.195 dst_ip 62.111.200.165 ip_proto icmp code 34 type 0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11498 flower src_mac 02:ee:c0:5a:b7:5c dst_mac 02:88:7e:15:f7:3a vlan_id 1746 vlan_ethtype ip src_ip 91.182.97.117 dst_ip 72.147.230.48 ip_proto tcp src_port 55826 dst_port 52846 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11499 flower src_mac 02:69:1d:73:06:b0 dst_mac 02:a6:7f:c8:76:ba action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11500 flower src_mac 02:e5:7e:db:54:d0 dst_mac 02:e6:fd:65:d7:90 vlan_id 846 vlan_ethtype 0x0800 src_ip 103.75.87.127 dst_ip 113.54.119.224 ip_proto udp src_port 9177 dst_port 49368 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11501 flower src_mac 02:12:cf:3a:01:16 dst_mac 02:b8:08:9c:ae:8c action drop && tc filter add dev swp33 ingress protocol ip pref 11502 flower src_mac 02:45:8b:d9:19:8e dst_mac 02:c2:f9:0f:ac:08 src_ip 108.94.71.154 dst_ip 67.74.156.214 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11503 flower src_mac 02:71:8e:0a:ae:46 dst_mac 02:23:e4:b8:ca:33 src_ip 50.181.39.145 dst_ip 28.249.135.91 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11504 flower src_mac 02:09:cb:b9:6a:51 dst_mac 02:33:0c:75:4c:b5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11505 flower src_mac 02:9e:c5:11:f1:03 dst_mac 02:48:e6:d3:19:fb vlan_id 1608 vlan_ethtype ipv4 src_ip 26.194.243.232 dst_ip 62.155.86.74 ip_proto tcp src_port 42653 dst_port 61795 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11506 flower src_mac 02:92:0f:db:6f:89 dst_mac 02:9a:cb:11:df:55 vlan_id 1477 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11507 flower src_mac 02:83:3d:a7:60:31 dst_mac 02:28:92:6a:a4:64 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11508 flower src_mac 02:ec:ff:3b:34:e8 dst_mac 02:be:6f:38:9c:6c vlan_id 3034 vlan_ethtype ip src_ip 33.50.44.4 dst_ip 84.80.166.41 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11509 flower src_mac 02:1c:ec:ea:c6:70 dst_mac 02:80:fa:19:19:86 vlan_id 165 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11510 flower src_mac 02:71:dd:f7:99:2a dst_mac 02:11:32:7b:0b:c6 vlan_id 3203 vlan_ethtype 0x0800 src_ip 94.78.170.125 dst_ip 115.27.120.130 ip_proto udp src_port 61493 dst_port 39987 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11511 flower src_mac 02:38:b5:14:3c:15 dst_mac 02:67:5d:e9:f0:af vlan_id 1923 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11512 flower src_mac 02:b6:18:2e:e2:73 dst_mac 02:02:02:cc:59:91 src_ip 86.174.169.116 dst_ip 13.91.237.195 ip_proto udp src_port 7590 dst_port 1297 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11513 flower src_mac 02:23:15:ef:8a:ec dst_mac 02:59:75:ef:f3:8a vlan_id 3378 vlan_ethtype ipv4 src_ip 84.157.134.228 dst_ip 20.219.51.140 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11514 flower src_mac 02:3a:ea:c5:4e:13 dst_mac 02:ab:ed:1f:1d:43 vlan_id 3011 vlan_ethtype ip src_ip 91.151.38.239 dst_ip 65.104.232.35 ip_proto tcp src_port 42569 dst_port 50628 action trap && tc filter add dev swp33 ingress protocol ip pref 11515 flower src_mac 02:45:b3:76:7e:14 dst_mac 02:e6:d4:5c:14:cc src_ip 54.138.150.183 dst_ip 35.35.236.248 ip_proto tcp src_port 29552 dst_port 25379 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11516 flower src_mac 02:e7:fa:f9:84:1c dst_mac 02:3c:e5:68:d5:d3 vlan_id 3687 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11517 flower src_mac 02:d2:57:85:51:de dst_mac 02:4c:33:52:d6:50 src_ip 76.194.220.120 dst_ip 48.226.69.77 ip_proto icmp code 111 type 18 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11518 flower src_mac 02:a2:62:04:f6:cc dst_mac 02:93:3f:eb:e3:ef src_ip 71.160.235.68 dst_ip 12.185.211.92 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11519 flower src_mac 02:a3:cb:2b:5e:01 dst_mac 02:f2:f3:be:cb:05 vlan_id 804 vlan_ethtype 0x0800 src_ip 42.249.186.24 dst_ip 28.49.239.14 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11520 flower src_mac 02:51:2c:bb:c1:bd dst_mac 02:8b:bd:5d:55:c4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11521 flower src_mac 02:c7:ef:81:14:57 dst_mac 02:ef:2e:22:77:65 vlan_id 977 vlan_ethtype ip src_ip 125.74.246.181 dst_ip 101.84.105.41 ip_proto udp src_port 57450 dst_port 15160 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11522 flower src_mac 02:c2:5b:1b:2d:3c dst_mac 02:b4:da:ee:d9:42 vlan_id 448 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11523 flower src_mac 02:83:21:57:90:98 dst_mac 02:1e:88:1e:bc:3e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11524 flower src_mac 02:3e:6e:a1:f7:f5 dst_mac 02:55:77:a0:ae:4a src_ip 16.75.166.39 dst_ip 61.161.62.216 ip_proto udp src_port 41406 dst_port 45175 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11525 flower src_mac 02:ca:d0:5b:3e:fb dst_mac 02:1d:2e:ed:e3:89 vlan_id 2945 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11526 flower src_mac 02:36:84:00:da:0b dst_mac 02:f1:d1:51:42:5b vlan_id 337 vlan_ethtype ipv4 src_ip 30.30.132.52 dst_ip 60.16.109.99 ip_proto tcp src_port 1383 dst_port 38523 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11527 flower src_mac 02:f4:de:48:b7:86 dst_mac 02:cd:09:c7:9a:a4 src_ip 49.147.108.10 dst_ip 77.97.109.60 ip_proto icmp code 74 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11528 flower src_mac 02:e5:a4:8e:cb:1d dst_mac 02:0d:8f:e8:31:0a action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11529 flower src_mac 02:1a:4e:17:1b:6d dst_mac 02:eb:26:fa:40:5f vlan_id 2827 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11530 flower src_mac 02:9c:29:8b:d5:48 dst_mac 02:56:f9:3d:c9:90 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11531 flower src_mac 02:89:f0:79:06:07 dst_mac 02:85:48:e3:d0:a8 vlan_id 3148 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11532 flower src_mac 02:b4:a9:87:f9:c9 dst_mac 02:bd:e5:34:b0:c1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11533 flower src_mac 02:ba:61:a8:b3:de dst_mac 02:39:35:c1:f3:df vlan_id 2190 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11534 flower src_mac 02:ef:38:d0:ee:f2 dst_mac 02:1a:7d:ca:96:46 vlan_id 377 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11535 flower src_mac 02:03:f3:d8:63:c0 dst_mac 02:ab:ef:25:31:a0 vlan_id 3972 vlan_ethtype 0x9100 action trap INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG infra1:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT infrastructure 1] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:37 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic 200.09
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1202' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.5, port 58782 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:30:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 62.229.181.232 dst_ip 50.109.222.164 ip_proto udp src_port 19152 dst_port 31755 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 62.229.181.232 dst_ip 50.109.222.164 ip_proto udp src_port 19152 dst_port 31755 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"50.109.222.164","src_ip":"62.229.181.232","dst_port":31755,"src_port":19152},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592301a20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 99861 Rx 99861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 Tx Frames: 99861, Rx Frames: 99861, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922892a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79131 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 Tx Frames: 99131, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 62.229.181.232 dst_ip 50.109.222.164 ip_proto udp src_port 19152 dst_port 31755 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 62.229.181.232 dst_ip 50.109.222.164 ip_proto udp src_port 19152 dst_port 31755 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859228a020>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 83481 Rx 83481 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_50.109.222.164_src_ip_62.229.181.232_dst_port_31755_src_port_19152 Tx Frames: 83481, Rx Frames: 83481, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05)
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:33:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:33:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:34:01 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] 223.67
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1271' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.5, port 51280 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:34:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1104 && bridge vlan add dev swp34 vid 1104 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp33 vid 1104 && bridge vlan add dev swp34 vid 1104 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:de:6c:3d:6a:48 dst_mac 02:5b:9a:31:d7:df vlan_id 1104 vlan_ethtype ip src_ip 81.119.239.58 dst_ip 44.116.139.101 ip_proto udp src_port 5286 dst_port 20164 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:de:6c:3d:6a:48 dst_mac 02:5b:9a:31:d7:df vlan_id 1104 vlan_ethtype ip src_ip 81.119.239.58 dst_ip 44.116.139.101 ip_proto udp src_port 5286 dst_port 20164 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1104,"vlan_ethtype":"ip","dst_mac":"02:5b:9a:31:d7:df","src_mac":"02:de:6c:3d:6a:48","eth_type":"ipv4","ip_proto":"udp","dst_ip":"44.116.139.101","src_ip":"81.119.239.58","dst_port":20164,"src_port":5286},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1104, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1104, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225e740>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286 SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcMac SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstMac SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_vlanID SIP-DIP N/A Tx 127542 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcIp SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstIp SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcPort SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstPort SIP-DIP N/A Tx 127542 Rx 127542 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286 Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcMac Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstMac Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_vlanID Tx Frames: 127542, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcIp Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstIp Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_srcPort Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1104_vlan_ethtype_ip_dst_mac_02:5b:9a:31:d7:df_src_mac_02:de:6c:3d:6a:48_eth_type_ipv4_ip_proto_udp_dst_ip_44.116.139.101_src_ip_81.119.239.58_dst_port_20164_src_port_5286_unmatch_dstPort Tx Frames: 127542, Rx Frames: 127542, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1104,"vlan_ethtype":"ip","dst_mac":"02:5b:9a:31:d7:df","src_mac":"02:de:6c:3d:6a:48","eth_type":"ipv4","ip_proto":"udp","dst_ip":"44.116.139.101","src_ip":"81.119.239.58","dst_port":20164,"src_port":5286},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":222,"stats":{"bytes":32650752,"packets":127542,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32650752,"hw_packets":127542,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127542, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127542, packets = 127542, expected = 127542, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127542, hw_packets = 127542, expected = 127542, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:37:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:37:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:37:45 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] 222.00
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1340' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.5, port 59246 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:37:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3199 && bridge vlan add dev swp34 vid 3199 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp33 vid 3199 && bridge vlan add dev swp34 vid 3199 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a1:7f:0d:ce:f4 dst_mac 02:85:2c:72:1d:2a vlan_id 3199 vlan_ethtype ip src_ip 59.54.107.123 dst_ip 16.224.225.218 ip_proto udp src_port 8958 dst_port 15290 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a1:7f:0d:ce:f4 dst_mac 02:85:2c:72:1d:2a vlan_id 3199 vlan_ethtype ip src_ip 59.54.107.123 dst_ip 16.224.225.218 ip_proto udp src_port 8958 dst_port 15290 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3199,"vlan_ethtype":"ip","dst_mac":"02:85:2c:72:1d:2a","src_mac":"02:a1:7f:0d:ce:f4","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.224.225.218","src_ip":"59.54.107.123","dst_port":15290,"src_port":8958},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3199, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3199, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592303670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958 SIP-DIP N/A Tx 128099 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcMac SIP-DIP N/A Tx 128099 Rx 128099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstMac SIP-DIP N/A Tx 128099 Rx 128099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_vlanID SIP-DIP N/A Tx 128099 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcIp SIP-DIP N/A Tx 128099 Rx 128099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstIp SIP-DIP N/A Tx 128099 Rx 128099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcPort SIP-DIP N/A Tx 128099 Rx 128099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstPort SIP-DIP N/A Tx 128099 Rx 128099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958 Tx Frames: 128099, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcMac Tx Frames: 128099, Rx Frames: 128099, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstMac Tx Frames: 128099, Rx Frames: 128099, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_vlanID Tx Frames: 128099, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcIp Tx Frames: 128099, Rx Frames: 128099, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstIp Tx Frames: 128099, Rx Frames: 128099, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_srcPort Tx Frames: 128099, Rx Frames: 128099, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3199_vlan_ethtype_ip_dst_mac_02:85:2c:72:1d:2a_src_mac_02:a1:7f:0d:ce:f4_eth_type_ipv4_ip_proto_udp_dst_ip_16.224.225.218_src_ip_59.54.107.123_dst_port_15290_src_port_8958_unmatch_dstPort Tx Frames: 128099, Rx Frames: 128099, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3199,"vlan_ethtype":"ip","dst_mac":"02:85:2c:72:1d:2a","src_mac":"02:a1:7f:0d:ce:f4","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.224.225.218","src_ip":"59.54.107.123","dst_port":15290,"src_port":8958},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":220,"stats":{"bytes":32793344,"packets":128099,"drops":128099,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32793344,"hw_packets":128099,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 128099, drops = 128099, expected = 128099, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 128099, packets = 128099, expected = 128099, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 128099, hw_packets = 128099, expected = 128099, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:41:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:41:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:41:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] 229.37
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1409' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.5, port 44766 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:41:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 810 && bridge vlan add dev swp34 vid 810 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp33 vid 810 && bridge vlan add dev swp34 vid 810 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:5a:63:36:f5:96 dst_mac 02:ca:5c:38:ae:b0 vlan_id 810 vlan_ethtype ip src_ip 64.52.75.15 dst_ip 115.88.127.114 ip_proto udp src_port 24343 dst_port 46540 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:5a:63:36:f5:96 dst_mac 02:ca:5c:38:ae:b0 vlan_id 810 vlan_ethtype ip src_ip 64.52.75.15 dst_ip 115.88.127.114 ip_proto udp src_port 24343 dst_port 46540 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":810,"vlan_ethtype":"ip","dst_mac":"02:ca:5c:38:ae:b0","src_mac":"02:5a:63:36:f5:96","eth_type":"ipv4","ip_proto":"udp","dst_ip":"115.88.127.114","src_ip":"64.52.75.15","dst_port":46540,"src_port":24343},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 810, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 810, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225f910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343 SIP-DIP N/A Tx 127431 Rx 51120 Loss 59.884 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcMac SIP-DIP N/A Tx 127431 Rx 127431 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstMac SIP-DIP N/A Tx 127431 Rx 127431 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_vlanID SIP-DIP N/A Tx 127431 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcIp SIP-DIP N/A Tx 127431 Rx 127431 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstIp SIP-DIP N/A Tx 127431 Rx 127431 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcPort SIP-DIP N/A Tx 127431 Rx 127431 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstPort SIP-DIP N/A Tx 127431 Rx 127431 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343 Tx Frames: 127431, Rx Frames: 51120, loss = 59.884, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcMac Tx Frames: 127431, Rx Frames: 127431, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstMac Tx Frames: 127431, Rx Frames: 127431, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_vlanID Tx Frames: 127431, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcIp Tx Frames: 127431, Rx Frames: 127431, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstIp Tx Frames: 127431, Rx Frames: 127431, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_srcPort Tx Frames: 127431, Rx Frames: 127431, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_810_vlan_ethtype_ip_dst_mac_02:ca:5c:38:ae:b0_src_mac_02:5a:63:36:f5:96_eth_type_ipv4_ip_proto_udp_dst_ip_115.88.127.114_src_ip_64.52.75.15_dst_port_46540_src_port_24343_unmatch_dstPort Tx Frames: 127431, Rx Frames: 127431, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":810,"vlan_ethtype":"ip","dst_mac":"02:ca:5c:38:ae:b0","src_mac":"02:5a:63:36:f5:96","eth_type":"ipv4","ip_proto":"udp","dst_ip":"115.88.127.114","src_ip":"64.52.75.15","dst_port":46540,"src_port":24343},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":227,"stats":{"bytes":32622336,"packets":127431,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32622336,"hw_packets":127431,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127431, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127431, packets = 127431, expected = 127431, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127431, hw_packets = 127431, expected = 127431, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:45:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:45:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:45:16 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] 211.46
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1478' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.5, port 58368 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:45:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:28:21:b1:41:b0 dst_mac 02:55:e9:ea:36:1e src_ip 23.54.123.66 dst_ip 53.218.184.180 ip_proto udp src_port 64973 dst_port 25930 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:28:21:b1:41:b0 dst_mac 02:55:e9:ea:36:1e src_ip 23.54.123.66 dst_ip 53.218.184.180 ip_proto udp src_port 64973 dst_port 25930 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:55:e9:ea:36:1e","src_mac":"02:28:21:b1:41:b0","eth_type":"ipv4","ip_proto":"udp","dst_ip":"53.218.184.180","src_ip":"23.54.123.66","dst_port":25930,"src_port":64973},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225cc40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973 SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcMac SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstMac SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcIp SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstIp SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcPort SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstPort SIP-DIP N/A Tx 127561 Rx 127561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973 Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcMac Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstMac Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcIp Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstIp Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_srcPort Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:55:e9:ea:36:1e_src_mac_02:28:21:b1:41:b0_eth_type_ipv4_ip_proto_udp_dst_ip_53.218.184.180_src_ip_23.54.123.66_dst_port_25930_src_port_64973_unmatch_dstPort Tx Frames: 127561, Rx Frames: 127561, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:55:e9:ea:36:1e","src_mac":"02:28:21:b1:41:b0","eth_type":"ipv4","ip_proto":"udp","dst_ip":"53.218.184.180","src_ip":"23.54.123.66","dst_port":25930,"src_port":64973},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":209,"stats":{"bytes":32655616,"packets":127561,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32655616,"hw_packets":127561,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127561, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127561, packets = 127561, expected = 127561, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127561, hw_packets = 127561, expected = 127561, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:48:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:48:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:48:47 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] 212.73
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1545' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.5, port 46762 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:48:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:1e:3e:33:40:3e dst_mac 02:d0:33:79:a2:f3 src_ip 23.13.150.71 dst_ip 118.21.188.53 ip_proto udp src_port 20800 dst_port 49751 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:1e:3e:33:40:3e dst_mac 02:d0:33:79:a2:f3 src_ip 23.13.150.71 dst_ip 118.21.188.53 ip_proto udp src_port 20800 dst_port 49751 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:d0:33:79:a2:f3","src_mac":"02:1e:3e:33:40:3e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"118.21.188.53","src_ip":"23.13.150.71","dst_port":49751,"src_port":20800},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ef280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800 SIP-DIP N/A Tx 127731 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcMac SIP-DIP N/A Tx 127731 Rx 127731 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstMac SIP-DIP N/A Tx 127731 Rx 127731 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcIp SIP-DIP N/A Tx 127731 Rx 127731 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstIp SIP-DIP N/A Tx 127731 Rx 127731 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcPort SIP-DIP N/A Tx 127731 Rx 127731 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstPort SIP-DIP N/A Tx 127731 Rx 127731 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800 Tx Frames: 127731, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcMac Tx Frames: 127731, Rx Frames: 127731, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstMac Tx Frames: 127731, Rx Frames: 127731, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcIp Tx Frames: 127731, Rx Frames: 127731, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstIp Tx Frames: 127731, Rx Frames: 127731, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_srcPort Tx Frames: 127731, Rx Frames: 127731, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d0:33:79:a2:f3_src_mac_02:1e:3e:33:40:3e_eth_type_ipv4_ip_proto_udp_dst_ip_118.21.188.53_src_ip_23.13.150.71_dst_port_49751_src_port_20800_unmatch_dstPort Tx Frames: 127731, Rx Frames: 127731, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:d0:33:79:a2:f3","src_mac":"02:1e:3e:33:40:3e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"118.21.188.53","src_ip":"23.13.150.71","dst_port":49751,"src_port":20800},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":210,"stats":{"bytes":32699136,"packets":127731,"drops":127731,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32699136,"hw_packets":127731,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127731, drops = 127731, expected = 127731, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127731, packets = 127731, expected = 127731, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127731, hw_packets = 127731, expected = 127731, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:52:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:52:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:52:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] 212.94
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1612' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.5, port 38124 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:52:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:28:97:e0:c4:04 dst_mac 02:d4:23:2a:3a:40 src_ip 42.28.38.75 dst_ip 32.83.195.153 ip_proto udp src_port 50225 dst_port 2523 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:28:97:e0:c4:04 dst_mac 02:d4:23:2a:3a:40 src_ip 42.28.38.75 dst_ip 32.83.195.153 ip_proto udp src_port 50225 dst_port 2523 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:d4:23:2a:3a:40","src_mac":"02:28:97:e0:c4:04","eth_type":"ipv4","ip_proto":"udp","dst_ip":"32.83.195.153","src_ip":"42.28.38.75","dst_port":2523,"src_port":50225},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ef1f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225 SIP-DIP N/A Tx 127623 Rx 51200 Loss 59.882 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcMac SIP-DIP N/A Tx 127623 Rx 127623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstMac SIP-DIP N/A Tx 127623 Rx 127623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcIp SIP-DIP N/A Tx 127623 Rx 127623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstIp SIP-DIP N/A Tx 127623 Rx 127623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcPort SIP-DIP N/A Tx 127623 Rx 127623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstPort SIP-DIP N/A Tx 127623 Rx 127623 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225 Tx Frames: 127623, Rx Frames: 51200, loss = 59.882, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcMac Tx Frames: 127623, Rx Frames: 127623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstMac Tx Frames: 127623, Rx Frames: 127623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcIp Tx Frames: 127623, Rx Frames: 127623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstIp Tx Frames: 127623, Rx Frames: 127623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_srcPort Tx Frames: 127623, Rx Frames: 127623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:d4:23:2a:3a:40_src_mac_02:28:97:e0:c4:04_eth_type_ipv4_ip_proto_udp_dst_ip_32.83.195.153_src_ip_42.28.38.75_dst_port_2523_src_port_50225_unmatch_dstPort Tx Frames: 127623, Rx Frames: 127623, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:d4:23:2a:3a:40","src_mac":"02:28:97:e0:c4:04","eth_type":"ipv4","ip_proto":"udp","dst_ip":"32.83.195.153","src_ip":"42.28.38.75","dst_port":2523,"src_port":50225},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":211,"stats":{"bytes":32671488,"packets":127623,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32671488,"hw_packets":127623,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127623, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127623, packets = 127623, expected = 127623, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127623, hw_packets = 127623, expected = 127623, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:55:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:55:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:55:53 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] 222.78
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1679' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.5, port 39934 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:55:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2394 && bridge vlan add dev swp34 vid 2394 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp33 vid 2394 && bridge vlan add dev swp34 vid 2394 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:66:64:0b:bd:04 dst_mac 02:7d:02:95:89:7b vlan_id 2394 vlan_ethtype ip src_ip 34.56.15.243 dst_ip 85.214.13.158 ip_proto udp src_port 22075 dst_port 49538 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:66:64:0b:bd:04 dst_mac 02:7d:02:95:89:7b vlan_id 2394 vlan_ethtype ip src_ip 34.56.15.243 dst_ip 85.214.13.158 ip_proto udp src_port 22075 dst_port 49538 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2394,"vlan_ethtype":"ip","dst_mac":"02:7d:02:95:89:7b","src_mac":"02:66:64:0b:bd:04","eth_type":"ipv4","ip_proto":"udp","dst_ip":"85.214.13.158","src_ip":"34.56.15.243","dst_port":49538,"src_port":22075},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2394, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2394, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b7f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075 SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcMac SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstMac SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_vlanID SIP-DIP N/A Tx 127747 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcIp SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstIp SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcPort SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstPort SIP-DIP N/A Tx 127747 Rx 127747 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075 Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcMac Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstMac Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_vlanID Tx Frames: 127747, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcIp Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstIp Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_srcPort Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2394_vlan_ethtype_ip_dst_mac_02:7d:02:95:89:7b_src_mac_02:66:64:0b:bd:04_eth_type_ipv4_ip_proto_udp_dst_ip_85.214.13.158_src_ip_34.56.15.243_dst_port_49538_src_port_22075_unmatch_dstPort Tx Frames: 127747, Rx Frames: 127747, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2394,"vlan_ethtype":"ip","dst_mac":"02:7d:02:95:89:7b","src_mac":"02:66:64:0b:bd:04","eth_type":"ipv4","ip_proto":"udp","dst_ip":"85.214.13.158","src_ip":"34.56.15.243","dst_port":49538,"src_port":22075},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":220,"stats":{"bytes":32703232,"packets":127747,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32703232,"hw_packets":127747,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127747, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127747, packets = 127747, expected = 127747, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127747, hw_packets = 127747, expected = 127747, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:59:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:59:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:59:36 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] 227.40
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1748' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.5, port 58272 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 18:59:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2139 && bridge vlan add dev swp34 vid 2139 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp33 vid 2139 && bridge vlan add dev swp34 vid 2139 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:28:51:be:19:4f dst_mac 02:cc:fd:12:2d:30 vlan_id 2139 vlan_ethtype ip src_ip 52.232.130.224 dst_ip 27.236.192.69 ip_proto udp src_port 61167 dst_port 57042 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:28:51:be:19:4f dst_mac 02:cc:fd:12:2d:30 vlan_id 2139 vlan_ethtype ip src_ip 52.232.130.224 dst_ip 27.236.192.69 ip_proto udp src_port 61167 dst_port 57042 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2139,"vlan_ethtype":"ip","dst_mac":"02:cc:fd:12:2d:30","src_mac":"02:28:51:be:19:4f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"27.236.192.69","src_ip":"52.232.130.224","dst_port":57042,"src_port":61167},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2139, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2139, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85923036a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167 SIP-DIP N/A Tx 127751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcMac SIP-DIP N/A Tx 127751 Rx 127751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstMac SIP-DIP N/A Tx 127751 Rx 127751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_vlanID SIP-DIP N/A Tx 127751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcIp SIP-DIP N/A Tx 127751 Rx 127751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstIp SIP-DIP N/A Tx 127751 Rx 127751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcPort SIP-DIP N/A Tx 127751 Rx 127751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstPort SIP-DIP N/A Tx 127751 Rx 127751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167 Tx Frames: 127751, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcMac Tx Frames: 127751, Rx Frames: 127751, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstMac Tx Frames: 127751, Rx Frames: 127751, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_vlanID Tx Frames: 127751, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcIp Tx Frames: 127751, Rx Frames: 127751, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstIp Tx Frames: 127751, Rx Frames: 127751, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_srcPort Tx Frames: 127751, Rx Frames: 127751, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2139_vlan_ethtype_ip_dst_mac_02:cc:fd:12:2d:30_src_mac_02:28:51:be:19:4f_eth_type_ipv4_ip_proto_udp_dst_ip_27.236.192.69_src_ip_52.232.130.224_dst_port_57042_src_port_61167_unmatch_dstPort Tx Frames: 127751, Rx Frames: 127751, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2139,"vlan_ethtype":"ip","dst_mac":"02:cc:fd:12:2d:30","src_mac":"02:28:51:be:19:4f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"27.236.192.69","src_ip":"52.232.130.224","dst_port":57042,"src_port":61167},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":225,"stats":{"bytes":32704256,"packets":127751,"drops":127751,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32704256,"hw_packets":127751,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127751, drops = 127751, expected = 127751, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127751, packets = 127751, expected = 127751, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127751, hw_packets = 127751, expected = 127751, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:03:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:03:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:03:23 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] 226.58
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1817' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.5, port 57918 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:03:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3170 && bridge vlan add dev swp34 vid 3170 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp33 vid 3170 && bridge vlan add dev swp34 vid 3170 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:4f:54:b5:d7:91 dst_mac 02:ca:e6:95:cd:f8 vlan_id 3170 vlan_ethtype ip src_ip 33.54.205.156 dst_ip 57.119.130.185 ip_proto udp src_port 55070 dst_port 21262 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:4f:54:b5:d7:91 dst_mac 02:ca:e6:95:cd:f8 vlan_id 3170 vlan_ethtype ip src_ip 33.54.205.156 dst_ip 57.119.130.185 ip_proto udp src_port 55070 dst_port 21262 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3170,"vlan_ethtype":"ip","dst_mac":"02:ca:e6:95:cd:f8","src_mac":"02:4f:54:b5:d7:91","eth_type":"ipv4","ip_proto":"udp","dst_ip":"57.119.130.185","src_ip":"33.54.205.156","dst_port":21262,"src_port":55070},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3170, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3170, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ec730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070 SIP-DIP N/A Tx 127405 Rx 51119 Loss 59.877 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcMac SIP-DIP N/A Tx 127405 Rx 127405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstMac SIP-DIP N/A Tx 127405 Rx 127405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_vlanID SIP-DIP N/A Tx 127405 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcIp SIP-DIP N/A Tx 127405 Rx 127405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstIp SIP-DIP N/A Tx 127405 Rx 127405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcPort SIP-DIP N/A Tx 127405 Rx 127405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstPort SIP-DIP N/A Tx 127405 Rx 127405 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070 Tx Frames: 127405, Rx Frames: 51119, loss = 59.877, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcMac Tx Frames: 127405, Rx Frames: 127405, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstMac Tx Frames: 127405, Rx Frames: 127405, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_vlanID Tx Frames: 127405, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcIp Tx Frames: 127405, Rx Frames: 127405, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstIp Tx Frames: 127405, Rx Frames: 127405, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_srcPort Tx Frames: 127405, Rx Frames: 127405, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3170_vlan_ethtype_ip_dst_mac_02:ca:e6:95:cd:f8_src_mac_02:4f:54:b5:d7:91_eth_type_ipv4_ip_proto_udp_dst_ip_57.119.130.185_src_ip_33.54.205.156_dst_port_21262_src_port_55070_unmatch_dstPort Tx Frames: 127405, Rx Frames: 127405, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3170,"vlan_ethtype":"ip","dst_mac":"02:ca:e6:95:cd:f8","src_mac":"02:4f:54:b5:d7:91","eth_type":"ipv4","ip_proto":"udp","dst_ip":"57.119.130.185","src_ip":"33.54.205.156","dst_port":21262,"src_port":55070},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":224,"stats":{"bytes":32615680,"packets":127405,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32615680,"hw_packets":127405,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127405, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127405, packets = 127405, expected = 127405, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 127405, hw_packets = 127405, expected = 127405, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:07:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:07:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:07:10 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] 225.92
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1886' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.5, port 54292 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:07:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:b2:28:4f:1c:af dst_mac 02:09:26:96:3e:f2 src_ip 45.48.224.215 dst_ip 26.101.209.227 ip_proto udp src_port 37012 dst_port 57832 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:b2:28:4f:1c:af dst_mac 02:09:26:96:3e:f2 src_ip 45.48.224.215 dst_ip 26.101.209.227 ip_proto udp src_port 37012 dst_port 57832 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:09:26:96:3e:f2","src_mac":"02:b2:28:4f:1c:af","eth_type":"ipv4","ip_proto":"udp","dst_ip":"26.101.209.227","src_ip":"45.48.224.215","dst_port":57832,"src_port":37012},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592300b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012 SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcMac SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstMac SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcIp SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstIp SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcPort SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstPort SIP-DIP N/A Tx 127513 Rx 127513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012 Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcMac Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstMac Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcIp Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstIp Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_srcPort Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:09:26:96:3e:f2_src_mac_02:b2:28:4f:1c:af_eth_type_ipv4_ip_proto_udp_dst_ip_26.101.209.227_src_ip_45.48.224.215_dst_port_57832_src_port_37012_unmatch_dstPort Tx Frames: 127513, Rx Frames: 127513, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:09:26:96:3e:f2","src_mac":"02:b2:28:4f:1c:af","eth_type":"ipv4","ip_proto":"udp","dst_ip":"26.101.209.227","src_ip":"45.48.224.215","dst_port":57832,"src_port":37012},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":223,"stats":{"bytes":32643328,"packets":127513,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32643328,"hw_packets":127513,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127513, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127513, packets = 127513, expected = 127513, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'pass', Tx Frames = 127513, hw_packets = 127513, expected = 127513, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:10:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:10:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:10:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] 214.76
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-1953' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.5, port 51628 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:10:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:52:84:4b:1e:29 dst_mac 02:ee:7e:5b:6c:2a src_ip 109.226.134.225 dst_ip 33.39.140.227 ip_proto udp src_port 4639 dst_port 23310 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:52:84:4b:1e:29 dst_mac 02:ee:7e:5b:6c:2a src_ip 109.226.134.225 dst_ip 33.39.140.227 ip_proto udp src_port 4639 dst_port 23310 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ee:7e:5b:6c:2a","src_mac":"02:52:84:4b:1e:29","eth_type":"ipv4","ip_proto":"udp","dst_ip":"33.39.140.227","src_ip":"109.226.134.225","dst_port":23310,"src_port":4639},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639 SIP-DIP N/A Tx 127998 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcMac SIP-DIP N/A Tx 127998 Rx 127998 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstMac SIP-DIP N/A Tx 127998 Rx 127998 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcIp SIP-DIP N/A Tx 127998 Rx 127998 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstIp SIP-DIP N/A Tx 127998 Rx 127998 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcPort SIP-DIP N/A Tx 127998 Rx 127998 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstPort SIP-DIP N/A Tx 127998 Rx 127998 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639 Tx Frames: 127998, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcMac Tx Frames: 127998, Rx Frames: 127998, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstMac Tx Frames: 127998, Rx Frames: 127998, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcIp Tx Frames: 127998, Rx Frames: 127998, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstIp Tx Frames: 127998, Rx Frames: 127998, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_srcPort Tx Frames: 127998, Rx Frames: 127998, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:ee:7e:5b:6c:2a_src_mac_02:52:84:4b:1e:29_eth_type_ipv4_ip_proto_udp_dst_ip_33.39.140.227_src_ip_109.226.134.225_dst_port_23310_src_port_4639_unmatch_dstPort Tx Frames: 127998, Rx Frames: 127998, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ee:7e:5b:6c:2a","src_mac":"02:52:84:4b:1e:29","eth_type":"ipv4","ip_proto":"udp","dst_ip":"33.39.140.227","src_ip":"109.226.134.225","dst_port":23310,"src_port":4639},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":213,"stats":{"bytes":32767488,"packets":127998,"drops":127998,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32767488,"hw_packets":127998,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127998, drops = 127998, expected = 127998, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127998, packets = 127998, expected = 127998, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'drop', Tx Frames = 127998, hw_packets = 127998, expected = 127998, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:14:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:14:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:14:31 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] 209.38
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2020' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.5, port 50312 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:14:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:f1:80:d6:d0:57 dst_mac 02:e8:df:ec:cc:5b src_ip 119.98.33.216 dst_ip 114.85.61.121 ip_proto udp src_port 26261 dst_port 348 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:f1:80:d6:d0:57 dst_mac 02:e8:df:ec:cc:5b src_ip 119.98.33.216 dst_ip 114.85.61.121 ip_proto udp src_port 26261 dst_port 348 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e8:df:ec:cc:5b","src_mac":"02:f1:80:d6:d0:57","eth_type":"ipv4","ip_proto":"udp","dst_ip":"114.85.61.121","src_ip":"119.98.33.216","dst_port":348,"src_port":26261},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261 SIP-DIP N/A Tx 126973 Rx 50960 Loss 59.865 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcMac SIP-DIP N/A Tx 126973 Rx 126973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstMac SIP-DIP N/A Tx 126973 Rx 126973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcIp SIP-DIP N/A Tx 126973 Rx 126973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstIp SIP-DIP N/A Tx 126973 Rx 126973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcPort SIP-DIP N/A Tx 126973 Rx 126973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstPort SIP-DIP N/A Tx 126973 Rx 126973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261 Tx Frames: 126973, Rx Frames: 50960, loss = 59.865, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcMac Tx Frames: 126973, Rx Frames: 126973, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstMac Tx Frames: 126973, Rx Frames: 126973, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcIp Tx Frames: 126973, Rx Frames: 126973, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstIp Tx Frames: 126973, Rx Frames: 126973, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_srcPort Tx Frames: 126973, Rx Frames: 126973, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:e8:df:ec:cc:5b_src_mac_02:f1:80:d6:d0:57_eth_type_ipv4_ip_proto_udp_dst_ip_114.85.61.121_src_ip_119.98.33.216_dst_port_348_src_port_26261_unmatch_dstPort Tx Frames: 126973, Rx Frames: 126973, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e8:df:ec:cc:5b","src_mac":"02:f1:80:d6:d0:57","eth_type":"ipv4","ip_proto":"udp","dst_ip":"114.85.61.121","src_ip":"119.98.33.216","dst_port":348,"src_port":26261},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":207,"stats":{"bytes":32505088,"packets":126973,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":32505088,"hw_packets":126973,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 126973, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 126973, packets = 126973, expected = 126973, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 1] Rule action = 'trap', Tx Frames = 126973, hw_packets = 126973, expected = 126973, max tolerance = 0.05
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:17:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:18:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:18:00 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc 0.87
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2085' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.5, port 43810 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:18:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG infra1:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:18:01 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up 251.69
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2134' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.5, port 45480 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:18:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 974 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 974 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 974 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 974 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c6770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 883 Rx 882 Frames Delta 1 Loss 0.113 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 883 Rx 882 Frames Delta 1 Loss 0.113 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 883 Rx 882 Frames Delta 1 Loss 0.113 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 883 Rx 882 Frames Delta 1 Loss 0.113 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:22:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:22:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh 377.08
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2168' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.5, port 33448 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:22:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c7220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:75:7c:b4","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c58d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:75:7c:b4","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 4101 Rx 4101 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:75:7c:b4","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:28:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:28:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue 240.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2202' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.5, port 54462 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:28:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b64a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 3199 Rx 3198 Frames Delta 1 Loss 0.031 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 3199 Rx 3198 Frames Delta 1 Loss 0.031 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 3199 Rx 3198 Frames Delta 1 Loss 0.031 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 3199 Rx 3198 Frames Delta 1 Loss 0.031 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:80:63:21","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:32:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:32:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif 340.81
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2233' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.5, port 54764 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:32:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c5270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 1352 Rx 1352 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 1352 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG infra1:Logger.py:156 19:37:52.780242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.780290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.780299 LLDP, length 82 [|LLDP] 19:37:52.780300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.780312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.780322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d7a 6cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.780325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.780328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.780332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.780338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.780344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.780347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.780350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.780364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.780371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.790219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.790268 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.790275 LLDP, length 82 [|LLDP] 19:37:52.790277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.790288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.790295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.790300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.790304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.790306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.790311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d82 0de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.790313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.790317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.790320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.790332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.790339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.800213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.800246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.800253 LLDP, length 82 [|LLDP] 19:37:52.800254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.800265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.800271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d89 af05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.800273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.800277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.800282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.800287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.800289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.800291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.800295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.800306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.800312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.810222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.810258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.810266 LLDP, length 82 [|LLDP] 19:37:52.810268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.810281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.810287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d91 5025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.810289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.810292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.810296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.810301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.810306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.810308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.810311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.810321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.810328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.820213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.820243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.820250 LLDP, length 82 [|LLDP] 19:37:52.820252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.820263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.820269 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.820274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.820278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.820281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.820283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d98 f145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.820286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.820289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.820293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.820302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.820308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.830210 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.830247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.830255 LLDP, length 82 [|LLDP] 19:37:52.830256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.830267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.830273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0da0 9265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.830275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.830279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.830282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.830287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.830292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.830294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.830297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.830307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.830313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.840212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.840247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.840254 LLDP, length 82 [|LLDP] 19:37:52.840256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.840267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.840273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0da8 3385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.840275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.840279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.840282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.840287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.840292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.840294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.840297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.840306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.840312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.850215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.850245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.850252 LLDP, length 82 [|LLDP] 19:37:52.850254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.850265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.850271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0daf d4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.850273 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.850278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.850283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.850286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.850288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.850292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.850295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.850306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.850311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.860215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.860252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.860260 LLDP, length 82 [|LLDP] 19:37:52.860261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.860272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.860278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0db7 75c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.860280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.860284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.860287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.860292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.860297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.860300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.860302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.860312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.860318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.870212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.870243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.870251 LLDP, length 82 [|LLDP] 19:37:52.870252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.870263 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.870269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.870274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.870277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.870279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.870284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dbf 16e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.870286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.870289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.870293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.870303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.870309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.880215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.880244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.880251 LLDP, length 82 [|LLDP] 19:37:52.880252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.880263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.880269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dc6 b805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.880271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.880275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.880280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.880285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.880288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.880290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.880293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.880304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.880310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.890227 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.890266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.890274 LLDP, length 82 [|LLDP] 19:37:52.890276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.890287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.890294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dce 5925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.890296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.890300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.890303 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.890309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.890314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.890317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.890319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.890331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.890337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.900216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.900247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.900255 LLDP, length 82 [|LLDP] 19:37:52.900256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.900268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.900274 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.900279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.900283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.900286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.900288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dd5 fa45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.900290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.900294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.900297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.900308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.900314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.910214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.910245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.910253 LLDP, length 82 [|LLDP] 19:37:52.910254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.910265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.910272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ddd 9b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.910274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.910278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.910281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.910286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.910291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.910293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.910296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.910307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.910313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.920213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.920244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.920251 LLDP, length 82 [|LLDP] 19:37:52.920253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.920264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.920270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0de5 3c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.920272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.920276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.920279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.920284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.920289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.920292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.920294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.920304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.920309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.930211 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.930240 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.930247 LLDP, length 82 [|LLDP] 19:37:52.930249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.930260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.930266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dec dda5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.930268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.930273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.930278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.930281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.930283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.930287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.930290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.930300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.930306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.940212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.940241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.940248 LLDP, length 82 [|LLDP] 19:37:52.940249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.940261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.940267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0df4 7ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.940269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.940272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.940275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.940280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.940285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.940288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.940290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.940300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.940306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.950212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.950241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.950248 LLDP, length 82 [|LLDP] 19:37:52.950250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.950260 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.950266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.950271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.950274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.950276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.950280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dfc 1fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.950282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.950286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.950289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.950299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.950305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.960214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.960244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.960259 LLDP, length 82 [|LLDP] 19:37:52.960260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.960274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.960280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e03 c105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.960282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.960285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.960290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.960295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.960298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.960301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.960304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.960314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.960320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.970213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.970245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.970253 LLDP, length 82 [|LLDP] 19:37:52.970254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.970266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.970272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e0b 6225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.970274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.970277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.970281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.970286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.970291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.970293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.970296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.970306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.970312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.980216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.980246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.980253 LLDP, length 82 [|LLDP] 19:37:52.980254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.980265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.980271 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.980276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.980281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.980284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.980286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e13 0345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.980288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.980291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.980295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.980305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.980311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.990213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.990249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.990257 LLDP, length 82 [|LLDP] 19:37:52.990258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.990270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.990275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e1a a465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.990277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.990281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.990284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.990289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.990294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.990297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.990299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.990309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.990315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.000218 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.000247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.000254 LLDP, length 82 [|LLDP] 19:37:53.000255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.000267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.000273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e22 4585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.000275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.000278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.000282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.000287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.000292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.000295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.000297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.000308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.000313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.010213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.010242 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.010249 LLDP, length 82 [|LLDP] 19:37:53.010251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.010262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.010268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e29 e6a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.010270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.010275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.010279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.010282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.010284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.010288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.010291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.010301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.010307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.020215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.020246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.020253 LLDP, length 82 [|LLDP] 19:37:53.020255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.020266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.020272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e31 87c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.020274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.020277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.020281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.020286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.020291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.020294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.020296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.020306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.020312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.030211 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.030241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.030248 LLDP, length 82 [|LLDP] 19:37:53.030250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.030261 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.030266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.030271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.030274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.030276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.030281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e39 28e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.030283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.030286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.030289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.030299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.030305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.040216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.040246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.040253 LLDP, length 82 [|LLDP] 19:37:53.040255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.040266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.040272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e40 ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.040274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.040277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.040283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.040287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.040290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.040292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.040296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.040306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.040312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.044569 LLDP, length 226: localhost 19:37:53.050211 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.050242 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.050250 LLDP, length 82 [|LLDP] 19:37:53.050251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.050262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.050269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e48 6b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.050270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.050274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.050277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.050283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.050287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.050290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.050292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.050302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.050308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.060212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.060243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.060250 LLDP, length 82 [|LLDP] 19:37:53.060251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.060262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.060268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.060273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.060278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.060281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.060283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e50 0c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.060285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.060288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.060292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.060302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.060308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.070213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.070250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.070258 LLDP, length 82 [|LLDP] 19:37:53.070260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.070271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.070277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e57 ad65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.070279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.070282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.070285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.070290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.070295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.070298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.070300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.070310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.070316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.080217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.080256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.080264 LLDP, length 82 [|LLDP] 19:37:53.080266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.080277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.080284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e5f 4e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.080286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.080289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.080292 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.080298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.080302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.080305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.080308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.080318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.080324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.090215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.090246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.090253 LLDP, length 82 [|LLDP] 19:37:53.090254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.090266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.090272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e66 efa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.090274 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.090279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.090283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.090286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.090288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.090292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.090295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.090305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.090311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.100217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.100247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.100254 LLDP, length 82 [|LLDP] 19:37:53.100255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.100266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.100272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e6e 90c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.100274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.100277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.100281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.100286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.100290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.100293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.100295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.100306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.100311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.110214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.110251 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.110258 LLDP, length 82 [|LLDP] 19:37:53.110260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.110271 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.110276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.110282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.110285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.110287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.110291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e76 31e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.110293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.110297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.110300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.110310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.110316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.120217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.120250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.120258 LLDP, length 82 [|LLDP] 19:37:53.120259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.120271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.120277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e7d d305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.120279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.120282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.120287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.120292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.120295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.120297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.120300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.120311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.120317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.130214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.130243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.130251 LLDP, length 82 [|LLDP] 19:37:53.130252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.130265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.130270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e85 7425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.130272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.130276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.130279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.130284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.130289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.130291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.130294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.130304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.130310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.140215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.140245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.140252 LLDP, length 82 [|LLDP] 19:37:53.140254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.140265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.140270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.140275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.140281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.140283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.140285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e8d 1545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.140287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.140291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.140294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.140305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.140311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.150213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.150248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.150255 LLDP, length 82 [|LLDP] 19:37:53.150257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.150268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.150273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e94 b665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.150275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.150279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.150282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.150287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.150292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.150295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.150297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.150307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.150312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.160217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.160248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.160262 LLDP, length 82 [|LLDP] 19:37:53.160264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.160276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.160282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e9c 5785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.160284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.160288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.160291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.160296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.160301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.160304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.160306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.160316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.160322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.170217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.170247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.170255 LLDP, length 82 [|LLDP] 19:37:53.170256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.170268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.170274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ea3 f8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.170276 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.170280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.170285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.170288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.170290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.170294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.170297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.170308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.170313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.180217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.180250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.180257 LLDP, length 82 [|LLDP] 19:37:53.180259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.180270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.180276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eab 99c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.180278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.180282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.180285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.180290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.180295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.180298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.180300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.180311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.180317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.190219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.190248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.190255 LLDP, length 82 [|LLDP] 19:37:53.190256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.190267 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.190273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.190279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.190281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.190283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.190288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eb3 3ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.190290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.190294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.190297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.190308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.190313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.200219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.200255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.200263 LLDP, length 82 [|LLDP] 19:37:53.200265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.200276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.200281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eba dc05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.200283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.200287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.200292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.200297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.200299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.200302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.200305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.200315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.200320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.210235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.210273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.210281 LLDP, length 82 [|LLDP] 19:37:53.210283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.210294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.210300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ec2 7d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.210302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.210306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.210309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.210314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.210319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.210322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.210324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.210335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.210341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.220221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.220252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.220260 LLDP, length 82 [|LLDP] 19:37:53.220262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.220273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.220279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.220284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.220288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.220291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.220294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eca 1e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.220295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.220299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.220303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.220313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.220319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.230222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.230259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.230267 LLDP, length 82 [|LLDP] 19:37:53.230269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.230281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.230287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ed1 bf65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.230289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.230293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.230296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.230301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.230306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.230309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.230311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.230322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.230328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.240217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.240246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.240254 LLDP, length 82 [|LLDP] 19:37:53.240255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.240267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.240273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ed9 6085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.240275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.240278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.240282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.240287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.240292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.240294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.240296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.240306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.240312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.250217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.250249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.250256 LLDP, length 82 [|LLDP] 19:37:53.250257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.250269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.250275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ee1 01a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.250277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.250282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.250287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.250289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.250292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.250295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.250298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.250308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.250314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.260217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.260253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.260261 LLDP, length 82 [|LLDP] 19:37:53.260262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.260274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.260279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ee8 a2c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.260282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.260285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.260288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.260293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.260298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.260300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.260302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.260312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.260318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.270241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.270300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.270309 LLDP, length 82 [|LLDP] 19:37:53.270311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.270323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.270329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.270336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.270340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.270342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.270349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ef0 43e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.270351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.270354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.270358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.270371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.270378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.280239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.280285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.280294 LLDP, length 82 [|LLDP] 19:37:53.280296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.280308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.280316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ef7 e505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.280318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.280322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.280327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.280332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.280335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.280338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.280341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.280354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.280361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.290223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.290255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.290263 LLDP, length 82 [|LLDP] 19:37:53.290264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.290275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.290282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eff 8625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.290284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.290288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.290291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.290296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.290301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.290304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.290306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.290316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.290322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.300240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.300292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.300307 LLDP, length 82 [|LLDP] 19:37:53.300308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.300321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.300328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.300334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.300340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.300343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.300345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f07 2745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.300347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.300350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.300354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.300367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.300373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.310221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.310263 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.310271 LLDP, length 82 [|LLDP] 19:37:53.310273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.310284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.310291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f0e c865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.310292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.310296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.310299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.310304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.310309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.310312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.310314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.310325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.310331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.320221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.320264 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.320272 LLDP, length 82 [|LLDP] 19:37:53.320273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.320285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.320291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f16 6985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.320293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.320297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.320300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.320305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.320310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.320313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.320315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.320325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.320331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.330216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.330247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.330255 LLDP, length 82 [|LLDP] 19:37:53.330256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.330268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.330274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f1e 0aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.330276 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.330281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.330286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.330289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.330291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.330294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.330297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.330307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.330314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.340230 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.340280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.340288 LLDP, length 82 [|LLDP] 19:37:53.340290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.340302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.340309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f25 abc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.340311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.340315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.340318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.340324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.340329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.340331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.340334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.340345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.340352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.350220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.350258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.350266 LLDP, length 82 [|LLDP] 19:37:53.350268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.350279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.350285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.350290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.350293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.350295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.350300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f2d 4ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.350302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.350306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.350309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.350320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.350326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.360221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.360258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.360265 LLDP, length 82 [|LLDP] 19:37:53.360267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.360278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.360284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f34 ee05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.360286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.360290 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.360295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.360300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.360302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.360305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.360308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.360319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.360325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.370231 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.370274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.370282 LLDP, length 82 [|LLDP] 19:37:53.370284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.370296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.370303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f3c 8f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.370305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.370308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.370312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.370317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.370322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.370325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.370327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.370339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.370345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.380221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.380253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.380261 LLDP, length 82 [|LLDP] 19:37:53.380262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.380274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.380280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.380285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.380289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.380292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.380294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f44 3045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.380296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.380300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.380303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.380314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.380319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.390219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.390253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.390260 LLDP, length 82 [|LLDP] 19:37:53.390262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.390273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.390279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f4b d165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.390281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.390285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.390288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.390293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.390298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.390301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.390303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.390313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.390319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.400228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.400277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.400286 LLDP, length 82 [|LLDP] 19:37:53.400287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.400299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.400305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f53 7285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.400307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.400311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.400314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.400320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.400325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.400328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.400330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.400355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.400362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.410241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.410299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.410308 LLDP, length 82 [|LLDP] 19:37:53.410310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.410322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.410331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f5b 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.410334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.410339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.410345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.410349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.410351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.410355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.410358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.410372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.410378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.420223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.420256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.420263 LLDP, length 82 [|LLDP] 19:37:53.420265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.420276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.420282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f62 b4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.420284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.420288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.420291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.420296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.420301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.420304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.420306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.420316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.420322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.430220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.430250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.430257 LLDP, length 82 [|LLDP] 19:37:53.430259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.430270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.430276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.430281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.430284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.430286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.430291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f6a 55e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.430293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.430296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.430300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.430310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.430316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.440220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.440249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.440257 LLDP, length 82 [|LLDP] 19:37:53.440258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.440269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.440275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f71 f705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.440277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.440280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.440285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.440290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.440293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.440295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.440299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.440308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.440315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.450218 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.450248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.450255 LLDP, length 82 [|LLDP] 19:37:53.450256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.450268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.450274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f79 9825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.450276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.450280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.450284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.450289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.450293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.450296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.450298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.450308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.450314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.460222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.460258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.460266 LLDP, length 82 [|LLDP] 19:37:53.460267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.460279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.460284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.460290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.460294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.460297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.460300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f81 3945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.460301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.460305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.460308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.460318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.460324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.470223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.470253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.470260 LLDP, length 82 [|LLDP] 19:37:53.470262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.470272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.470278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f88 da65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.470280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.470284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.470287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.470292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.470297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.470300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.470302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.470312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.470318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.480222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.480260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.480268 LLDP, length 82 [|LLDP] 19:37:53.480270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.480282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.480288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f90 7b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.480290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.480293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.480296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.480301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.480306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.480309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.480311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.480322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.480328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.490219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.490249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.490257 LLDP, length 82 [|LLDP] 19:37:53.490259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.490270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.490276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f98 1ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.490278 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.490284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.490288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.490291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.490293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.490297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.490300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.490310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.490316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.500221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.500250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.500257 LLDP, length 82 [|LLDP] 19:37:53.500259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.500270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.500276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f9f bdc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.500278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.500281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.500285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.500290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.500295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.500298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.500300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.500310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.500316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.510220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.510249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.510256 LLDP, length 82 [|LLDP] 19:37:53.510258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.510269 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.510274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.510279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.510282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.510284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.510289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fa7 5ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.510291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.510295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.510298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.510308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.510313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.520222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.520256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.520264 LLDP, length 82 [|LLDP] 19:37:53.520265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.520276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.520282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0faf 0005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.520284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.520288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.520293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.520298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.520300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.520303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.520306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.520316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.520322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.530224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.530253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.530261 LLDP, length 82 [|LLDP] 19:37:53.530262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.530273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.530278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fb6 a125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.530281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.530284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.530288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.530293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.530297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.530300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.530302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.530312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.530318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.540223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.540252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.540260 LLDP, length 82 [|LLDP] 19:37:53.540261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.540272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.540278 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.540283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.540288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.540291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.540293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fbe 4245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.540295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.540299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.540302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.540312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.540318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.550220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.550249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.550256 LLDP, length 82 [|LLDP] 19:37:53.550258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.550269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.550274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fc5 e365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.550276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.550280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.550284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.550288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.550293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.550296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.550298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.550309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.550314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.560221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.560256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.560264 LLDP, length 82 [|LLDP] 19:37:53.560265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.560276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.560282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fcd 8485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.560284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.560288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.560291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.560296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.560301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.560303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.560305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.560315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.560321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.570219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.570249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.570256 LLDP, length 82 [|LLDP] 19:37:53.570257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.570269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.570275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fd5 25a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.570277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.570282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.570286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.570289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.570291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.570295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.570298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.570308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.570313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.580221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.580259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.580267 LLDP, length 82 [|LLDP] 19:37:53.580268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.580280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.580285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fdc c6c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.580287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.580291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.580295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.580300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.580304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.580307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.580310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.580319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.580326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.590224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.590255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.590262 LLDP, length 82 [|LLDP] 19:37:53.590264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.590275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.590280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.590286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.590289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.590291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.590295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fe4 67e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.590297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.590301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.590304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.590314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.590320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.600223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.600262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.600270 LLDP, length 82 [|LLDP] 19:37:53.600271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.600283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.600289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fec 0905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.600291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.600294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.600299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.600304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.600307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.600309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.600313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.600323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.600329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.610220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.610256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.610264 LLDP, length 82 [|LLDP] 19:37:53.610266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.610277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.610283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ff3 aa25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.610285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.610289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.610292 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.610297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.610302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.610304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.610307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.610317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.610323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.620222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.620259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.620266 LLDP, length 82 [|LLDP] 19:37:53.620267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.620278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.620285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.620290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.620295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.620297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.620299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ffb 4b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.620301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.620305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.620308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.620318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.620324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.630222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.630258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.630265 LLDP, length 82 [|LLDP] 19:37:53.630267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.630278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.630284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1002 ec65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.630286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.630290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.630293 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.630298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.630302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.630305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.630307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.630317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.630323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.640222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.640271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.640280 LLDP, length 82 [|LLDP] 19:37:53.640282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.640294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.640300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 100a 8d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.640302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.640306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.640310 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.640316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.640322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.640324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.640326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.640337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.640344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.650247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.650288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.650295 LLDP, length 82 [|LLDP] 19:37:53.650297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.650309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.650317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1012 2ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.650320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.650326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.650332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.650336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.650338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.650342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.650345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.650360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.650367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.660228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.660262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.660270 LLDP, length 82 [|LLDP] 19:37:53.660271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.660282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.660289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1019 cfc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.660291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.660295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.660298 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.660303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.660308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.660311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.660313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.660325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.660331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.670225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.670255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.670263 LLDP, length 82 [|LLDP] 19:37:53.670264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.670276 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.670281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.670287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.670290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.670292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.670296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1021 70e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.670298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.670302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.670306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.670317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.670323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.680224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.680268 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.680276 LLDP, length 82 [|LLDP] 19:37:53.680277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.680288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.680294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1029 1205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.680296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.680300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.680305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.680310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.680313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.680315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.680318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.680328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.680334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.690223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.690262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.690270 LLDP, length 82 [|LLDP] 19:37:53.690271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.690283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.690289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1030 b325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.690291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.690295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.690298 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.690303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.690307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.690310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.690312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.690323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.690329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.700224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.700267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.700274 LLDP, length 82 [|LLDP] 19:37:53.700276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.700287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.700294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.700299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.700303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.700306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.700308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1038 5445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.700310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.700314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.700317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.700328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.700334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.710226 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.710255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.710263 LLDP, length 82 [|LLDP] 19:37:53.710264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.710275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.710282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 103f f565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.710284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.710287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.710291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.710296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.710301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.710304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.710306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.710316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.710322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.720223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.720258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.720266 LLDP, length 82 [|LLDP] 19:37:53.720267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.720279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.720285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1047 9685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.720287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.720291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.720294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.720299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.720304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.720307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.720309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.720319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.720324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.730222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.730252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.730259 LLDP, length 82 [|LLDP] 19:37:53.730260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.730271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.730278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 104f 37a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.730280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.730284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.730289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.730292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.730294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.730298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.730301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.730311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.730318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.740226 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.740264 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.740271 LLDP, length 82 [|LLDP] 19:37:53.740273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.740284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.740290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1056 d8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.740292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.740296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.740299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.740304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.740309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.740312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.740314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.740324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.740330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.750225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.750262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.750269 LLDP, length 82 [|LLDP] 19:37:53.750270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.750281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.750287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.750293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.750296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.750298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.750302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 105e 79e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.750304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.750307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.750311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.750321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.750327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.760223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.760260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.760267 LLDP, length 82 [|LLDP] 19:37:53.760268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.760280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.760285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1066 1b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.760288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.760291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.760296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.760301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.760304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.760306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.760309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.760319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.760325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.770228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.770259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.770266 LLDP, length 82 [|LLDP] 19:37:53.770268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.770279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.770285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 106d bc25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.770287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.770291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.770294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.770299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.770304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.770307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.770309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.770319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.770325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.780228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.780269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.780277 LLDP, length 82 [|LLDP] 19:37:53.780278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.780289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.780296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.780301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.780305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.780308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.780310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1075 5d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.780312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.780316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.780319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.780330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.780336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.790225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.790249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.790255 LLDP, length 82 [|LLDP] 19:37:53.790257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.790268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.790274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 107c fe65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.790276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.790279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.790282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.790287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.790292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.790295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.790297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.790306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.790311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.800220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.800250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.800257 LLDP, length 82 [|LLDP] 19:37:53.800258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.800270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.800276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1084 9f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.800278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.800282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.800285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.800290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.800295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.800297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.800299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.800308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.800314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.810220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.810241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.810248 LLDP, length 82 [|LLDP] 19:37:53.810250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.810260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.810266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 108c 40a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.810268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.810272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.810277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.810280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.810282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.810285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.810289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.810298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.810303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.820219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.820239 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.820245 LLDP, length 82 [|LLDP] 19:37:53.820247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.820258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.820263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1093 e1c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.820265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.820268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.820272 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.820277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.820281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.820284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.820286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.820294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.820300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.830218 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.830237 LLDP, length 82 [|LLDP] 19:37:53.830239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.830251 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.830256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.830261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.830264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.830266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.830272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.830276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 109b 82e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.830278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.830282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.830285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.830294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.830300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.840220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.840239 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.840245 LLDP, length 82 [|LLDP] 19:37:53.840246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.840257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.840262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10a3 2405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.840264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.840268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.840273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.840277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.840280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.840282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.840286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.840294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.840299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.850217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.850242 LLDP, length 82 [|LLDP] 19:37:53.850244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.850256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.850261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10aa c525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.850263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.850267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.850270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.850275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.850279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.850281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.850283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.850289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.850297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.850303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.860219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.860239 LLDP, length 82 [|LLDP] 19:37:53.860241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.860253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.860258 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.860263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.860267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.860270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.860272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.860277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10b2 6645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.860279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.860283 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.860286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.860295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.860300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.870217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.870243 LLDP, length 82 [|LLDP] 19:37:53.870244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.870256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.870262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10ba 0765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.870264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.870267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.870271 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.870275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.870280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.870282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.870284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.870290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.870298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.870304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.880221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.880244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.880250 LLDP, length 82 [|LLDP] 19:37:53.880252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.880263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.880268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10c1 a885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.880270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.880274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.880277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.880282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.880286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.880289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.880291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.880300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.880306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.890236 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.890266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.890274 LLDP, length 82 [|LLDP] 19:37:53.890275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.890288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.890294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10c9 49a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.890296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.890300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.890305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.890308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.890310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.890314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.890317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.890327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.890332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.900223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.900247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.900254 LLDP, length 82 [|LLDP] 19:37:53.900255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.900275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.900281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10d0 eac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.900284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.900287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.900291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.900296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.900300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.900303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.900306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.900315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.900321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.910220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.910241 LLDP, length 82 [|LLDP] 19:37:53.910243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.910254 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.910260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.910265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.910267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.910270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.910275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.910280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10d8 8be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.910281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.910285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.910289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.910298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.910303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.920223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.920242 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.920249 LLDP, length 82 [|LLDP] 19:37:53.920250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.920262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.920267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10e0 2d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.920269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.920272 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.920277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.920281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.920284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.920286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.920290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.920298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.920304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.930223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.930241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.930247 LLDP, length 82 [|LLDP] 19:37:53.930249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.930260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.930266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10e7 ce25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.930268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.930271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.930275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.930279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.930284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.930286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.930289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.930297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.930302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.940221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.940246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.940253 LLDP, length 82 [|LLDP] 19:37:53.940254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.940265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.940270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.940274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.940279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.940281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.940283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10ef 6f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.940285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.940289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.940292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.940300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.940305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.950219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.950244 LLDP, length 82 [|LLDP] 19:37:53.950245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.950257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.950262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10f7 1065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.950264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.950268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.950272 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.950276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.950281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.950283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.950285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.950291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.950299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.950305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.960220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.960245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.960252 LLDP, length 82 [|LLDP] 19:37:53.960253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.960264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.960269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10fe b185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.960271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.960275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.960278 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.960283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.960287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.960290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.960292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.960300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.960306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.970226 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.970257 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.970265 LLDP, length 82 [|LLDP] 19:37:53.970266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.970277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.970283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1106 52a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.970285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.970289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.970294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.970297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.970299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.970302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.970306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.970315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.970321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.980229 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.980252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.980259 LLDP, length 82 [|LLDP] 19:37:53.980261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.980271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.980277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 110d f3c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.980279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.980283 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.980286 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.980291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.980295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.980298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.980300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.980309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.980315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.990225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.990249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.990256 LLDP, length 82 [|LLDP] 19:37:53.990257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.990268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.990274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.990278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.990281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.990283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.990287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1115 94e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.990289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.990293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.990296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.990306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.990311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.000224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.000253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.000260 LLDP, length 82 [|LLDP] 19:37:54.000261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.000272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.000278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 111d 3605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.000280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.000283 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.000288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.000293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.000295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.000297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.000301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.000310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.000316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.010269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.010331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.010341 LLDP, length 82 [|LLDP] 19:37:54.010343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.010356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.010365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1124 d725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.010368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.010372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.010375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.010382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.010388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.010392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.010394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.010408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.010416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.020249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.020303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.020312 LLDP, length 82 [|LLDP] 19:37:54.020314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.020326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.020334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.020340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.020346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.020349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.020351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 112c 7845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.020353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.020357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.020360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.020373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.020381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.030246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.030291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.030299 LLDP, length 82 [|LLDP] 19:37:54.030301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.030313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.030320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1134 1965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.030322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.030326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.030329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.030335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.030340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.030343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.030345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.030357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.030364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.040243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.040285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.040294 LLDP, length 82 [|LLDP] 19:37:54.040295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.040307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.040315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 113b ba85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.040317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.040321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.040324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.040329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.040335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.040338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.040340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.040353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.040359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.050238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.050284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.050292 LLDP, length 82 [|LLDP] 19:37:54.050293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.050305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.050311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1143 5ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.050313 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.050318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.050323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.050326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.050329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.050332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.050336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.050347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.050354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.060238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.060277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.060285 LLDP, length 82 [|LLDP] 19:37:54.060286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.060298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.060305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 114a fcc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.060307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.060311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.060315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.060320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.060325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.060328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.060330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.060342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.060348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.070241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.070279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.070287 LLDP, length 82 [|LLDP] 19:37:54.070289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.070300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.070306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.070312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.070315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.070317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.070322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1152 9de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.070324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.070328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.070331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.070343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.070349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.080239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.080276 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.080284 LLDP, length 82 [|LLDP] 19:37:54.080285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.080297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.080303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 115a 3f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.080306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.080309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.080315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.080320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.080323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.080325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.080329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.080340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.080347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.090240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.090279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.090287 LLDP, length 82 [|LLDP] 19:37:54.090289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.090300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.090307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1161 e025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.090309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.090313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.090316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.090322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.090327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.090330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.090332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.090343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.090349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.100239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.100278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.100287 LLDP, length 82 [|LLDP] 19:37:54.100289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.100301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.100308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.100313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.100318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.100321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.100323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1169 8145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.100325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.100329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.100332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.100344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.100350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.110243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.110291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.110301 LLDP, length 82 [|LLDP] 19:37:54.110302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.110315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.110323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1171 2265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.110326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.110330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.110333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.110339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.110345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.110348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.110351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.110365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.110371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.120242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.120297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.120306 LLDP, length 82 [|LLDP] 19:37:54.120307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.120319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.120326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1178 c385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.120329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.120332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.120336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.120341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.120346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.120349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.120351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.120364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.120370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.130241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.130286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.130294 LLDP, length 82 [|LLDP] 19:37:54.130295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.130307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.130314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1180 64a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.130316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.130321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.130326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.130329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.130331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.130335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.130338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.130351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.130357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.140244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.140282 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.140291 LLDP, length 82 [|LLDP] 19:37:54.140292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.140304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.140310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1188 05c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.140313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.140316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.140319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.140324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.140329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.140332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.140335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.140346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.140352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.150246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.150283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.150291 LLDP, length 82 [|LLDP] 19:37:54.150293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.150304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.150311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.150317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.150320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.150322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.150327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 118f a6e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.150329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.150333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.150336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.150348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.150354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.160238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.160286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.160294 LLDP, length 82 [|LLDP] 19:37:54.160296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.160308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.160314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1197 4805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.160317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.160320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.160326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.160331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.160334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.160336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.160340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.160351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.160357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.170239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.170277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.170285 LLDP, length 82 [|LLDP] 19:37:54.170287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.170298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.170305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 119e e925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.170307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.170311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.170314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.170320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.170325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.170328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.170330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.170341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.170347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.180240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.180277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.180286 LLDP, length 82 [|LLDP] 19:37:54.180288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.180299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.180306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.180311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.180316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.180320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.180322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11a6 8a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.180325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.180328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.180332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.180343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.180350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.190242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.190281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.190289 LLDP, length 82 [|LLDP] 19:37:54.190291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.190303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.190310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11ae 2b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.190312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.190316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.190319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.190324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.190329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.190332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.190334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.190345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.190351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.200249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.200291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.200300 LLDP, length 82 [|LLDP] 19:37:54.200301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.200313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.200321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11b5 cc85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.200323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.200327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.200330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.200336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.200342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.200345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.200347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.200359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.200365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.210244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.210284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.210292 LLDP, length 82 [|LLDP] 19:37:54.210293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.210305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.210312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11bd 6da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.210314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.210320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.210325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.210328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.210330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.210334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.210337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.210349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.210356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.220244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.220286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.220294 LLDP, length 82 [|LLDP] 19:37:54.220296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.220308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.220315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11c5 0ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.220317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.220321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.220324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.220329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.220334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.220337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.220339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.220351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.220357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.230252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.230300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.230308 LLDP, length 82 [|LLDP] 19:37:54.230310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.230322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.230329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.230335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.230338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.230340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.230347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11cc afe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.230349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.230352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.230356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.230369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.230386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.240240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.240289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.240298 LLDP, length 82 [|LLDP] 19:37:54.240299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.240311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.240317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11d4 5105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.240319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.240323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.240329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.240334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.240337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.240339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.240343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.240354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.240360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.250247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.250293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.250301 LLDP, length 82 [|LLDP] 19:37:54.250303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.250315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.250322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11db f225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.250324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.250327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.250331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.250336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.250341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.250344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.250346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.250358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.250364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.260235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.260264 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.260271 LLDP, length 82 [|LLDP] 19:37:54.260273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.260284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.260290 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.260295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.260300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.260303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.260305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11e3 9345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.260307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.260310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.260314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.260324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.260330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.270235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.270265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.270273 LLDP, length 82 [|LLDP] 19:37:54.270275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.270286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.270292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11eb 3465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.270294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.270298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.270302 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.270307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.270311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.270315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.270317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.270327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.270333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.280233 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.280260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.280267 LLDP, length 82 [|LLDP] 19:37:54.280269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.280280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.280286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11f2 d585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.280288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.280291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.280295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.280300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.280305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.280308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.280310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.280319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.280325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.290241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.290283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.290291 LLDP, length 82 [|LLDP] 19:37:54.290293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.290304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.290310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11fa 76a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.290312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.290317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.290322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.290325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.290327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.290330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.290334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.290344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.290350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.300234 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.300261 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.300269 LLDP, length 82 [|LLDP] 19:37:54.300271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.300282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.300288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1202 17c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.300290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.300293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.300297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.300302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.300306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.300309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.300311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.300321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.300327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.310229 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.310254 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.310260 LLDP, length 82 [|LLDP] 19:37:54.310262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.310273 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.310279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.310284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.310287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.310289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.310294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1209 b8e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.310295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.310299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.310302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.310312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.310318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.320237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.320272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.320280 LLDP, length 82 [|LLDP] 19:37:54.320282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.320293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.320299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1211 5a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.320301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.320305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.320310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.320314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.320317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.320319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.320323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.320333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.320338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.330231 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.330257 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.330264 LLDP, length 82 [|LLDP] 19:37:54.330266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.330277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.330283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1218 fb25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.330285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.330288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.330292 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.330296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.330301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.330304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.330306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.330315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.330321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.340230 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.340254 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.340262 LLDP, length 82 [|LLDP] 19:37:54.340264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.340275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.340280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.340285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.340290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.340293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.340295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1220 9c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.340297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.340301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.340304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.340313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.340319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.350228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.350252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.350259 LLDP, length 82 [|LLDP] 19:37:54.350260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.350271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.350277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1228 3d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.350279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.350282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.350286 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.350290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.350295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.350298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.350300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.350309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.350314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.360227 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.360260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.360266 LLDP, length 82 [|LLDP] 19:37:54.360268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.360279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.360285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 122f de85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.360287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.360291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.360294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.360299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.360303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.360306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.360308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.360318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.360323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.370228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.370258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.370265 LLDP, length 82 [|LLDP] 19:37:54.370266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.370277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.370282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1237 7fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.370284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.370289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.370294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.370296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.370298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.370302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.370305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.370314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.370319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.380228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.380257 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.380264 LLDP, length 82 [|LLDP] 19:37:54.380266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.380277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.380282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 123f 20c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.380284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.380288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.380291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.380296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.380300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.380303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.380305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.380314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.380319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.390237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.390267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.390274 LLDP, length 82 [|LLDP] 19:37:54.390276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.390287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.390292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.390297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.390300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.390303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.390308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1246 c1e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.390309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.390313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.390317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.390326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.390332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.400232 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.400258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.400265 LLDP, length 82 [|LLDP] 19:37:54.400267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.400278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.400284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 124e 6305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.400286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.400289 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.400294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.400299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.400302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.400304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.400308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.400332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.400338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.410258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.410305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.410315 LLDP, length 82 [|LLDP] 19:37:54.410316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.410328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.410337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1256 0425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.410339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.410343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.410347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.410352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.410357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.410360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.410362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.410374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.410380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.420233 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.420267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.420275 LLDP, length 82 [|LLDP] 19:37:54.420276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.420287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.420293 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.420298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.420303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.420305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.420308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 125d a545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.420310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.420313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.420317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.420327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.420333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.430234 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.430260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.430267 LLDP, length 82 [|LLDP] 19:37:54.430269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.430280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.430286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1265 4665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.430287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.430291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.430295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.430300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.430304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.430307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.430310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.430319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.430325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.440248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.440296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.440305 LLDP, length 82 [|LLDP] 19:37:54.440307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.440319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.440327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 126c e785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.440329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.440332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.440336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.440341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.440346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.440349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.440351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.440363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.440368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.450232 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.450259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.450267 LLDP, length 82 [|LLDP] 19:37:54.450268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.450280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.450286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1274 88a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.450288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.450293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.450298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.450300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.450303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.450307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.450310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.450320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.450325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.460232 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.460263 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.460270 LLDP, length 82 [|LLDP] 19:37:54.460272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.460283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.460289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 127c 29c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.460291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.460294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.460298 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.460303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.460307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.460310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.460312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.460321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.460327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.470253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.470290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.470298 LLDP, length 82 [|LLDP] 19:37:54.470299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.470311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.470317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.470322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.470325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.470328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.470332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1283 cae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.470334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.470338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.470342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.470353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.470359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.480246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.480283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.480291 LLDP, length 82 [|LLDP] 19:37:54.480293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.480305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.480311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 128b 6c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.480313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.480317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.480322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.480326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.480329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.480331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.480335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.480345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.480351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.490235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.490258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.490266 LLDP, length 82 [|LLDP] 19:37:54.490268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.490279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.490285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1293 0d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.490287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.490291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.490294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.490299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.490304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.490306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.490308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.490317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.490323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.500233 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.500263 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.500271 LLDP, length 82 [|LLDP] 19:37:54.500272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.500295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.500302 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.500307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.500312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.500315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.500317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 129a ae45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.500320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.500323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.500327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.500336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.500342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.510269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.510319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.510328 LLDP, length 82 [|LLDP] 19:37:54.510330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.510342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.510351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12a2 4f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.510354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.510357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.510361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.510367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.510373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.510377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.510379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.510394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.510401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.520255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.520299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.520307 LLDP, length 82 [|LLDP] 19:37:54.520309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.520321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.520329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12a9 f085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.520331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.520335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.520338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.520344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.520349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.520352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.520354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.520366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.520373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.530237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.530270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.530278 LLDP, length 82 [|LLDP] 19:37:54.530280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.530291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.530297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12b1 91a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.530299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.530304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.530309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.530312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.530314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.530318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.530321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.530333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.530339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.540278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.540342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.540351 LLDP, length 82 [|LLDP] 19:37:54.540353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.540365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.540375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12b9 32c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.540377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.540381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.540385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.540391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.540397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.540400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.540402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.540417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.540424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.550241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.550275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.550283 LLDP, length 82 [|LLDP] 19:37:54.550285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.550296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.550302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.550308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.550310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.550313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.550318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12c0 d3e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.550320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.550323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.550327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.550337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.550343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.560240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.560278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.560286 LLDP, length 82 [|LLDP] 19:37:54.560288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.560299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.560305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12c8 7505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.560307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.560311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.560316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.560321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.560323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.560325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.560329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.560340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.560345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.570237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.570274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.570281 LLDP, length 82 [|LLDP] 19:37:54.570283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.570294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.570300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12d0 1625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.570302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.570306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.570310 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.570315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.570320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.570322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.570325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.570335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.570341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.580237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.580265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.580272 LLDP, length 82 [|LLDP] 19:37:54.580274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.580285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.580291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.580296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.580301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.580304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.580306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12d7 b745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.580308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.580311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.580315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.580325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.580331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.590239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.590273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.590281 LLDP, length 82 [|LLDP] 19:37:54.590282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.590294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.590300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12df 5865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.590301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.590305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.590308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.590313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.590318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.590321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.590323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.590333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.590339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.600236 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.600265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.600272 LLDP, length 82 [|LLDP] 19:37:54.600274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.600286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.600292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12e6 f985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.600294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.600298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.600301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.600307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.600311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.600314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.600316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.600326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.600332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.610236 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.610266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.610273 LLDP, length 82 [|LLDP] 19:37:54.610275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.610286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.610292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12ee 9aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.610294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.610299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.610304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.610306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.610309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.610312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.610316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.610326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.610331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.620239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.620269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.620277 LLDP, length 82 [|LLDP] 19:37:54.620278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.620289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.620296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12f6 3bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.620298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.620301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.620305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.620310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.620315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.620318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.620320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.620330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.620336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.630239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.630271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.630278 LLDP, length 82 [|LLDP] 19:37:54.630280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.630291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.630297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.630302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.630305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.630307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.630312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12fd dce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.630315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.630318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.630322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.630331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.630337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.640240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.640271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.640279 LLDP, length 82 [|LLDP] 19:37:54.640281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.640293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.640299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1305 7e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.640301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.640304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.640310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.640315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.640318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.640320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.640324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.640334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.640340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.650239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.650272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.650280 LLDP, length 82 [|LLDP] 19:37:54.650281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.650293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.650299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 130d 1f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.650301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.650304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.650308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.650313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.650317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.650320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.650322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.650333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.650339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.660244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.660281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.660289 LLDP, length 82 [|LLDP] 19:37:54.660291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.660302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.660308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.660313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.660318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.660321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.660323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1314 c045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.660325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.660329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.660332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.660343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.660349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.670239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.670274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.670282 LLDP, length 82 [|LLDP] 19:37:54.670283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.670295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.670301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 131c 6165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.670303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.670306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.670310 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.670315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.670319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.670322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.670324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.670334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.670340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.680241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.680270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.680277 LLDP, length 82 [|LLDP] 19:37:54.680278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.680290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.680296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1324 0285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.680298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.680301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.680305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.680310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.680314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.680317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.680319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.680329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.680335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.690240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.690276 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.690284 LLDP, length 82 [|LLDP] 19:37:54.690285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.690297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.690302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 132b a3a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.690304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.690309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.690314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.690316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.690319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.690322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.690326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.690336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.690342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.700239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.700267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.700274 LLDP, length 82 [|LLDP] 19:37:54.700276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.700287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.700293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1333 44c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.700295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.700299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.700302 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.700307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.700312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.700314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.700316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.700326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.700332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.710239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.710267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.710275 LLDP, length 82 [|LLDP] 19:37:54.710276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.710288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.710293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.710298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.710301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.710304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.710308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 133a e5e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.710310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.710314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.710317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.710327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.710333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.720238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.720265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.720272 LLDP, length 82 [|LLDP] 19:37:54.720274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.720287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.720293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1342 8705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.720295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.720299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.720304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.720308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.720311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.720313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.720317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.720327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.720332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.730240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.730269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.730276 LLDP, length 82 [|LLDP] 19:37:54.730278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.730289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.730295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 134a 2825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.730297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.730300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.730304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.730309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.730313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.730316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.730318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.730328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.730334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.740243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.740282 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.740289 LLDP, length 82 [|LLDP] 19:37:54.740291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.740302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.740308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.740313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.740318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.740321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.740324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1351 c945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.740326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.740329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.740333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.740343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.740350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.750241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.750278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.750286 LLDP, length 82 [|LLDP] 19:37:54.750287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.750298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.750304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1359 6a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.750306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.750310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.750313 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.750318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.750323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.750326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.750328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.750338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.750344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.760242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.760274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.760282 LLDP, length 82 [|LLDP] 19:37:54.760284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.760295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.760301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1361 0b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.760303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.760307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.760311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.760316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.760320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.760323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.760325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.760335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.760341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.770241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.770269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.770276 LLDP, length 82 [|LLDP] 19:37:54.770278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.770289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.770295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1368 aca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.770297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.770302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.770307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.770310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.770312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.770316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.770320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.770330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.770335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.780240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.780275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.780283 LLDP, length 82 [|LLDP] 19:37:54.780284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.780296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.780302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1370 4dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.780304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.780308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.780311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.780316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.780321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.780324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.780326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.780336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.780342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.790244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.790274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.790282 LLDP, length 82 [|LLDP] 19:37:54.790283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.790295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.790301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.790306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.790309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.790311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.790316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1377 eee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.790318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.790321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.790325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.790335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.790341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.800238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.800273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.800281 LLDP, length 82 [|LLDP] 19:37:54.800282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.800294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.800299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 137f 9005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.800301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.800305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.800310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.800314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.800317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.800319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.800323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.800333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.800338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.810240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.810270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.810278 LLDP, length 82 [|LLDP] 19:37:54.810279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.810291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.810297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1387 3125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.810299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.810302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.810306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.810311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.810316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.810319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.810321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.810331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.810337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.820241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.820269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.820276 LLDP, length 82 [|LLDP] 19:37:54.820278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.820289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.820295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.820300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.820305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.820308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.820310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 138e d245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.820312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.820316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.820319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.820329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.820335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.830239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.830267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.830274 LLDP, length 82 [|LLDP] 19:37:54.830275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.830286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.830292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1396 7365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.830294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.830298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.830301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.830306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.830310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.830313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.830316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.830325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.830332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.840241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.840278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.840285 LLDP, length 82 [|LLDP] 19:37:54.840287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.840298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.840305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 139e 1485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.840307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.840311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.840314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.840319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.840324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.840327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.840329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.840339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.840345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.850242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.850278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.850286 LLDP, length 82 [|LLDP] 19:37:54.850287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.850298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.850304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13a5 b5a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.850306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.850311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.850316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.850319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.850321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.850325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.850328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.850339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.850344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.860242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.860281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.860288 LLDP, length 82 [|LLDP] 19:37:54.860290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.860301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.860307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13ad 56c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.860309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.860313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.860317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.860322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.860327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.860330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.860332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.860343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.860348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.870244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.870280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.870288 LLDP, length 82 [|LLDP] 19:37:54.870289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.870301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.870306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.870311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.870314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.870316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.870321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13b4 f7e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.870323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.870326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.870330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.870340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.870346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.880240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.880271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.880278 LLDP, length 82 [|LLDP] 19:37:54.880280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.880291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.880297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13bc 9905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.880299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.880303 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.880307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.880312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.880315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.880317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.880321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.880330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.880336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.890255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.890292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.890300 LLDP, length 82 [|LLDP] 19:37:54.890302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.890314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.890321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13c4 3a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.890322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.890326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.890330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.890335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.890340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.890343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.890345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.890356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.890362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.900247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.900279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.900287 LLDP, length 82 [|LLDP] 19:37:54.900289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.900300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.900306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.900312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.900316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.900319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.900321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13cb db45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.900323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.900327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.900331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.900341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.900346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.910243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.910271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.910278 LLDP, length 82 [|LLDP] 19:37:54.910279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.910291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.910297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13d3 7c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.910299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.910302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.910306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.910310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.910315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.910318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.910320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.910330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.910336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.920241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.920269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.920276 LLDP, length 82 [|LLDP] 19:37:54.920278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.920289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.920295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13db 1d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.920297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.920301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.920304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.920309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.920313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.920316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.920319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.920329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.920335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.930241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.930269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.930276 LLDP, length 82 [|LLDP] 19:37:54.930278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.930289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.930295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13e2 bea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.930297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.930302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.930307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.930310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.930313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.930316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.930320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.930330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.930336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.940243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.940278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.940286 LLDP, length 82 [|LLDP] 19:37:54.940287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.940299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.940305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13ea 5fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.940307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.940311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.940315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.940320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.940325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.940328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.940330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.940341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.940347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.950244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.950276 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.950284 LLDP, length 82 [|LLDP] 19:37:54.950285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.950297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.950303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.950308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.950311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.950313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.950318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13f2 00e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.950320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.950323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.950327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.950337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.950344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.960248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.960287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.960294 LLDP, length 82 [|LLDP] 19:37:54.960296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.960307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.960313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13f9 a205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.960315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.960319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.960324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.960328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.960331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.960333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.960337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.960347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.960353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.970245 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.970281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.970290 LLDP, length 82 [|LLDP] 19:37:54.970291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.970303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.970309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1401 4325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.970311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.970314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.970318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.970323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.970327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.970330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.970333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.970342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.970348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.980259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.980306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.980314 LLDP, length 82 [|LLDP] 19:37:54.980316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.980328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.980335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.980341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.980346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.980349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.980351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1408 e445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.980353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.980357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.980360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.980371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.980376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.990251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.990288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.990296 LLDP, length 82 [|LLDP] 19:37:54.990297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.990309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.990315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1410 8565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.990317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.990321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.990325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.990330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.990335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.990338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.990340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.990350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.990356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.000244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.000273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.000281 LLDP, length 82 [|LLDP] 19:37:55.000282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.000293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.000299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1418 2685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.000301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.000305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.000308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.000314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.000318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.000321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.000323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.000333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.000339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.010242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.010271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.010278 LLDP, length 82 [|LLDP] 19:37:55.010280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.010291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.010297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 141f c7a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.010299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.010304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.010309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.010312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.010314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.010317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.010321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.010331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.010336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.020245 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.020280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.020288 LLDP, length 82 [|LLDP] 19:37:55.020289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.020300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.020307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1427 68c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.020309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.020312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.020316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.020321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.020325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.020328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.020331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.020340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.020346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.030244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.030281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.030288 LLDP, length 82 [|LLDP] 19:37:55.030290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.030301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.030307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.030312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.030315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.030317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.030321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 142f 09e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.030324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.030327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.030330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.030340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.030346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.040244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.040280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.040288 LLDP, length 82 [|LLDP] 19:37:55.040290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.040302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.040309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1436 ab05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.040311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.040314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.040320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.040324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.040327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.040329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.040333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.040343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.040348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.050246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.050286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.050293 LLDP, length 82 [|LLDP] 19:37:55.050295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.050306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.050312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 143e 4c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.050315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.050318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.050322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.050327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.050331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.050334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.050337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.050347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.050353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.060253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.060284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.060292 LLDP, length 82 [|LLDP] 19:37:55.060293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.060305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.060311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.060315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.060320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.060323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.060325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1445 ed45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.060327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.060331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.060334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.060345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.060351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.070244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.070275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.070282 LLDP, length 82 [|LLDP] 19:37:55.070283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.070295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.070300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 144d 8e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.070302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.070306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.070309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.070314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.070319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.070321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.070324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.070334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.070340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.080244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.080279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.080286 LLDP, length 82 [|LLDP] 19:37:55.080288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.080299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.080306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1455 2f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.080307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.080311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.080314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.080319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.080323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.080326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.080328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.080338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.080344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.090243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.090271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.090279 LLDP, length 82 [|LLDP] 19:37:55.090280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.090292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.090297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 145c d0a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.090299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.090305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.090309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.090312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.090314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.090318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.090321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.090332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.090338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.100244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.100272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.100280 LLDP, length 82 [|LLDP] 19:37:55.100281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.100292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.100299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1464 71c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.100301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.100304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.100308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.100312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.100317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.100320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.100322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.100332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.100337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.110245 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.110280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.110287 LLDP, length 82 [|LLDP] 19:37:55.110288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.110299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.110305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.110310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.110313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.110315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.110319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 146c 12e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.110321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.110325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.110328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.110338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.110344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.120248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.120285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.120293 LLDP, length 82 [|LLDP] 19:37:55.120294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.120306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.120312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1473 b405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.120314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.120318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.120323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.120327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.120330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.120333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.120336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.120347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.120353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.130253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.130291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.130299 LLDP, length 82 [|LLDP] 19:37:55.130300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.130312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.130318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 147b 5525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.130320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.130323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.130327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.130332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.130337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.130340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.130342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.130353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.130359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.140248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.140279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.140286 LLDP, length 82 [|LLDP] 19:37:55.140288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.140299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.140305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.140310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.140315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.140318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.140320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1482 f645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.140322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.140326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.140329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.140340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.140345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.150247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.150285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.150293 LLDP, length 82 [|LLDP] 19:37:55.150294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.150306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.150311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 148a 9765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.150313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.150317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.150320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.150326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.150330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.150333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.150335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.150345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.150351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.160247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.160286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.160293 LLDP, length 82 [|LLDP] 19:37:55.160295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.160306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.160312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1492 3885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.160314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.160318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.160321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.160326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.160331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.160334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.160335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.160346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.160352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.170250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.170284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.170291 LLDP, length 82 [|LLDP] 19:37:55.170293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.170304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.170310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1499 d9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.170312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.170317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.170322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.170325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.170327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.170330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.170334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.170345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.170350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.180249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.180279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.180287 LLDP, length 82 [|LLDP] 19:37:55.180289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.180300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.180306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14a1 7ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.180308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.180312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.180315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.180320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.180324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.180327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.180329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.180339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.180345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.190246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.190275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.190282 LLDP, length 82 [|LLDP] 19:37:55.190283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.190295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.190300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.190306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.190308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.190310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.190316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14a9 1be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.190317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.190321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.190324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.190334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.190340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.200247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.200281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.200288 LLDP, length 82 [|LLDP] 19:37:55.200289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.200301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.200307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14b0 bd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.200308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.200312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.200317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.200321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.200324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.200326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.200329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.200339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.200344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.210266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.210310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.210318 LLDP, length 82 [|LLDP] 19:37:55.210320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.210332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.210338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14b8 5e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.210340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.210344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.210347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.210352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.210357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.210359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.210362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.210372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.210378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.220254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.220288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.220296 LLDP, length 82 [|LLDP] 19:37:55.220298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.220309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.220316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.220321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.220325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.220328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.220331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14bf ff45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.220333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.220336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.220340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.220350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.220355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.230257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.230296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.230304 LLDP, length 82 [|LLDP] 19:37:55.230305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.230318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.230324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14c7 a065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.230326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.230330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.230333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.230339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.230343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.230347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.230349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.230360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.230366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.240257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.240302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.240311 LLDP, length 82 [|LLDP] 19:37:55.240313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.240324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.240331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14cf 4185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.240333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.240337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.240340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.240345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.240350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.240354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.240356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.240367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.240373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.250254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.250294 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.250302 LLDP, length 82 [|LLDP] 19:37:55.250304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.250315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.250322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14d6 e2a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.250324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.250329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.250334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.250337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.250339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.250343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.250346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.250357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.250363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.260252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.260292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.260300 LLDP, length 82 [|LLDP] 19:37:55.260301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.260313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.260319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14de 83c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.260321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.260325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.260328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.260333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.260338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.260341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.260343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.260353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.260359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.270252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.270292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.270300 LLDP, length 82 [|LLDP] 19:37:55.270301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.270313 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.270318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.270323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.270326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.270329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.270334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14e6 24e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.270336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.270340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.270343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.270354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.270360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.280250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.280283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.280291 LLDP, length 82 [|LLDP] 19:37:55.280293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.280304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.280310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14ed c605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.280312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.280316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.280321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.280326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.280329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.280331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.280334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.280345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.280351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.290250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.290287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.290295 LLDP, length 82 [|LLDP] 19:37:55.290297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.290308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.290314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14f5 6725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.290316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.290319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.290323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.290328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.290332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.290335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.290337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.290347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.290353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.300249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.300278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.300286 LLDP, length 82 [|LLDP] 19:37:55.300287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.300298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.300304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.300309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.300314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.300317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.300319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14fd 0845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.300321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.300324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.300328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.300338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.300344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.310248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.310277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.310284 LLDP, length 82 [|LLDP] 19:37:55.310285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.310297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.310302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1504 a965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.310304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.310308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.310311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.310316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.310320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.310323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.310325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.310335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.310341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.320251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.320281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.320289 LLDP, length 82 [|LLDP] 19:37:55.320291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.320302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.320308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 150c 4a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.320310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.320314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.320317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.320322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.320327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.320330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.320332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.320342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.320348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.330251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.330282 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.330290 LLDP, length 82 [|LLDP] 19:37:55.330291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.330302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.330308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1513 eba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.330311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.330315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.330320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.330323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.330325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.330329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.330332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.330342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.330348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.340251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.340281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.340288 LLDP, length 82 [|LLDP] 19:37:55.340289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.340301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.340307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 151b 8cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.340308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.340312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.340316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.340320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.340325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.340328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.340330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.340340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.340345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.350250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.350279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.350286 LLDP, length 82 [|LLDP] 19:37:55.350288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.350300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.350305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.350310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.350313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.350315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.350320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1523 2de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.350322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.350325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.350329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.350339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.350344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.360250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.360288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.360296 LLDP, length 82 [|LLDP] 19:37:55.360298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.360310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.360316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 152a cf05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.360318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.360334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.360341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.360346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.360349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.360352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.360356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.360367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.360373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.370280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.370324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.370332 LLDP, length 82 [|LLDP] 19:37:55.370334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.370347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.370356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1532 7025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.370358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.370362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.370365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.370373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.370379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.370382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.370385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.370399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.370406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.380256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.380289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.380296 LLDP, length 82 [|LLDP] 19:37:55.380298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.380309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.380316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.380322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.380326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.380330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.380332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 153a 1145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.380334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.380338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.380342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.380353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.380359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.390253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.390285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.390292 LLDP, length 82 [|LLDP] 19:37:55.390294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.390305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.390311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1541 b265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.390313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.390316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.390320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.390325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.390329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.390332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.390334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.390344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.390350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.400251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.400281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.400288 LLDP, length 82 [|LLDP] 19:37:55.400290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.400302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.400308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1549 5385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.400310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.400313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.400317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.400322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.400327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.400330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.400332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.400356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.400362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.410252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.410287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.410294 LLDP, length 82 [|LLDP] 19:37:55.410296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.410307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.410313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1550 f4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.410315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.410320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.410325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.410327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.410330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.410333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.410337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.410347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.410352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.420254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.420283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.420291 LLDP, length 82 [|LLDP] 19:37:55.420292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.420304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.420310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1558 95c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.420312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.420315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.420318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.420323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.420328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.420330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.420332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.420342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.420348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.430252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.430281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.430288 LLDP, length 82 [|LLDP] 19:37:55.430290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.430301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.430307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.430312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.430314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.430317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.430322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1560 36e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.430324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.430327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.430331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.430341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.430347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.440250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.440286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.440293 LLDP, length 82 [|LLDP] 19:37:55.440295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.440306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.440312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1567 d805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.440314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.440318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.440323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.440328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.440330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.440332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.440336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.440345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.440351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.450257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.450286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.450293 LLDP, length 82 [|LLDP] 19:37:55.450295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.450305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.450311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 156f 7925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.450313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.450317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.450321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.450325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.450330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.450333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.450335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.450345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.450351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.460263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.460309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.460318 LLDP, length 82 [|LLDP] 19:37:55.460319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.460331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.460338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.460344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.460349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.460352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.460354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1577 1a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.460356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.460360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.460364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.460376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.460382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.470255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.470295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.470302 LLDP, length 82 [|LLDP] 19:37:55.470304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.470315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.470322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 157e bb65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.470323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.470327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.470330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.470336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.470340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.470343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.470346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.470356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.470362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.480252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.480294 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.480302 LLDP, length 82 [|LLDP] 19:37:55.480303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.480314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.480320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1586 5c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.480322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.480326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.480329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.480334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.480339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.480341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.480344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.480362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.480368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.490254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.490284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.490291 LLDP, length 82 [|LLDP] 19:37:55.490293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.490304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.490310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 158d fda5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.490312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.490318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.490322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.490325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.490327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.490331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.490335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.490345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.490351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.500255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.500283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.500291 LLDP, length 82 [|LLDP] 19:37:55.500292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.500304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.500310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1595 9ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.500312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.500315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.500319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.500324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.500328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.500331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.500333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.500343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.500348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.510257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.510286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.510294 LLDP, length 82 [|LLDP] 19:37:55.510295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.510306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.510312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.510317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.510320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.510322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.510327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 159d 3fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.510329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.510332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.510336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.510345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.510351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.520253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.520288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.520296 LLDP, length 82 [|LLDP] 19:37:55.520297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.520308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.520314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15a4 e105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.520316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.520320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.520325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.520329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.520332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.520334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.520338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.520347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.520353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.530256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.530287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.530294 LLDP, length 82 [|LLDP] 19:37:55.530296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.530306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.530312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15ac 8225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.530314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.530318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.530321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.530327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.530331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.530334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.530337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.530347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.530352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.540287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.540345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.540355 LLDP, length 82 [|LLDP] 19:37:55.540358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.540370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.540378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.540384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.540390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.540393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.540396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15b4 2345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.540398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.540402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.540405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.540418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.540430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.550260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.550300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.550309 LLDP, length 82 [|LLDP] 19:37:55.550310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.550322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.550328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15bb c465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.550330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.550334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.550338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.550343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.550348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.550351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.550353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.550364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.550371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.560258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.560288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.560295 LLDP, length 82 [|LLDP] 19:37:55.560297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.560308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.560314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15c3 6585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.560316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.560320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.560323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.560328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.560333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.560336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.560338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.560348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.560354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.570256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.570287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.570295 LLDP, length 82 [|LLDP] 19:37:55.570296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.570308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.570314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15cb 06a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.570316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.570322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.570327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.570330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.570333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.570336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.570340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.570350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.570356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.580273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.580319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.580328 LLDP, length 82 [|LLDP] 19:37:55.580330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.580342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.580349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15d2 a7c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.580351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.580355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.580358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.580363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.580368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.580372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.580374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.580386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.580391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.590257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.590296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.590304 LLDP, length 82 [|LLDP] 19:37:55.590306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.590317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.590323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.590329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.590332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.590334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.590339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15da 48e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.590341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.590345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.590348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.590359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.590365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.600256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.600286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.600294 LLDP, length 82 [|LLDP] 19:37:55.600296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.600307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.600313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15e1 ea05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.600315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.600319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.600324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.600329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.600331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.600333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.600337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.600348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.600354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.610268 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.610312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.610320 LLDP, length 82 [|LLDP] 19:37:55.610322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.610334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.610341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15e9 8b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.610343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.610347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.610350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.610356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.610361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.610364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.610367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.610379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.610385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.620258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.620289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.620297 LLDP, length 82 [|LLDP] 19:37:55.620299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.620310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.620316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.620321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.620326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.620329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.620332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15f1 2c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.620334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.620338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.620341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.620352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.620358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.630256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.630286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.630294 LLDP, length 82 [|LLDP] 19:37:55.630295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.630306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.630312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15f8 cd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.630314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.630318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.630322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.630327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.630332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.630334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.630337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.630347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.630353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.640266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.640317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.640325 LLDP, length 82 [|LLDP] 19:37:55.640327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.640339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.640345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1600 6e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.640347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.640351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.640355 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.640360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.640365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.640368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.640370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.640381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.640387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.650275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.650317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.650325 LLDP, length 82 [|LLDP] 19:37:55.650327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.650338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.650346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1608 0fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.650347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.650353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.650358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.650361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.650363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.650367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.650371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.650383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.650389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.660258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.660292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.660300 LLDP, length 82 [|LLDP] 19:37:55.660302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.660313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.660319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 160f b0c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.660321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.660325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.660328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.660333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.660338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.660341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.660343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.660353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.660359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.670254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.670286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.670294 LLDP, length 82 [|LLDP] 19:37:55.670295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.670306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.670312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.670318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.670321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.670323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.670328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1617 51e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.670330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.670334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.670337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.670347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.670353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.680287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.680347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.680356 LLDP, length 82 [|LLDP] 19:37:55.680359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.680371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.680380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 161e f305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.680382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.680386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.680393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.680399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.680402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.680405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.680409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.680423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.680430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.690268 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.690306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.690314 LLDP, length 82 [|LLDP] 19:37:55.690316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.690327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.690335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1626 9425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.690337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.690340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.690344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.690349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.690354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.690357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.690359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.690370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.690377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.700257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.700296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.700305 LLDP, length 82 [|LLDP] 19:37:55.700306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.700317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.700324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.700329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.700334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.700337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.700339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 162e 3545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.700341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.700345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.700348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.700359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.700365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.710259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.710290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.710298 LLDP, length 82 [|LLDP] 19:37:55.710300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.710311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.710317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1635 d665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.710319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.710323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.710326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.710332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.710336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.710339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.710342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.710352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.710358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.720260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.720297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.720304 LLDP, length 82 [|LLDP] 19:37:55.720305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.720316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.720322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 163d 7785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.720324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.720328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.720331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.720336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.720341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.720344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.720346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.720355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.720361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.730257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.730293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.730301 LLDP, length 82 [|LLDP] 19:37:55.730302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.730313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.730320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1645 18a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.730322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.730327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.730331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.730334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.730336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.730340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.730344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.730354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.730360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.740257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.740287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.740295 LLDP, length 82 [|LLDP] 19:37:55.740297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.740308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.740314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 164c b9c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.740316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.740320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.740323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.740328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.740333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.740335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.740337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.740348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.740353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.750261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.750299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.750307 LLDP, length 82 [|LLDP] 19:37:55.750308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.750319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.750325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.750331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.750334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.750336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.750341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1654 5ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.750343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.750347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.750350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.750360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.750367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.760257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.760294 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.760301 LLDP, length 82 [|LLDP] 19:37:55.760303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.760314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.760320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 165b fc05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.760322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.760326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.760331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.760335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.760338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.760341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.760344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.760354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.760359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.770256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.770286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.770294 LLDP, length 82 [|LLDP] 19:37:55.770295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.770306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.770312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1663 9d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.770314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.770317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.770321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.770326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.770330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.770333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.770335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.770345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.770351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.780271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.780314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.780322 LLDP, length 82 [|LLDP] 19:37:55.780325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.780336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.780344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.780349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.780354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.780357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.780360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 166b 3e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.780362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.780366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.780369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.780381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.780388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.790265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.790300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.790308 LLDP, length 82 [|LLDP] 19:37:55.790310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.790321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.790328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1672 df65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.790330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.790333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.790337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.790342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.790347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.790350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.790352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.790363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.790370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.800260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.800293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.800301 LLDP, length 82 [|LLDP] 19:37:55.800303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.800315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.800321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 167a 8085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.800323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.800327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.800330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.800335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.800340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.800343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.800345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.800356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.800362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.810260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.810297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.810305 LLDP, length 82 [|LLDP] 19:37:55.810306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.810317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.810323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1682 21a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.810325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.810330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.810335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.810338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.810340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.810344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.810347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.810357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.810363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.820258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.820289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.820297 LLDP, length 82 [|LLDP] 19:37:55.820299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.820310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.820316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1689 c2c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.820318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.820322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.820325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.820330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.820335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.820338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.820340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.820350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.820356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.830258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.830288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.830295 LLDP, length 82 [|LLDP] 19:37:55.830297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.830308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.830314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.830319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.830322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.830324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.830329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1691 63e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.830331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.830334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.830338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.830348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.830354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.840260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.840289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.840297 LLDP, length 82 [|LLDP] 19:37:55.840299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.840310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.840317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1699 0505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.840319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.840322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.840327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.840332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.840334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.840337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.840340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.840350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.840356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.850261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.850290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.850297 LLDP, length 82 [|LLDP] 19:37:55.850298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.850309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.850316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16a0 a625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.850318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.850321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.850325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.850330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.850335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.850338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.850340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.850350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.850356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.860260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.860290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.860297 LLDP, length 82 [|LLDP] 19:37:55.860299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.860310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.860316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.860321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.860325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.860328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.860330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16a8 4745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.860332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.860336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.860340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.860350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.860355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.870259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.870296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.870304 LLDP, length 82 [|LLDP] 19:37:55.870305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.870317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.870323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16af e865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.870325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.870328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.870332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.870337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.870342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.870344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.870346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.870356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.870362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.880265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.880304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.880312 LLDP, length 82 [|LLDP] 19:37:55.880313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.880325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.880331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16b7 8985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.880333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.880336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.880340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.880345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.880350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.880353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.880355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.880366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.880372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.890269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.890306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.890314 LLDP, length 82 [|LLDP] 19:37:55.890316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.890328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.890334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16bf 2aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.890336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.890341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.890346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.890349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.890351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.890355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.890358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.890369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.890376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.900264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.900306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.900314 LLDP, length 82 [|LLDP] 19:37:55.900315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.900327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.900333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16c6 cbc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.900335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.900339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.900342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.900347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.900352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.900355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.900357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.900368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.900374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.910264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.910295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.910302 LLDP, length 82 [|LLDP] 19:37:55.910304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.910315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.910321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.910326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.910329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.910331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.910337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16ce 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.910339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.910343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.910346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.910356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.910362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.920259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.920296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.920303 LLDP, length 82 [|LLDP] 19:37:55.920305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.920316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.920322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16d6 0e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.920324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.920327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.920332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.920337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.920339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.920341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.920345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.920355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.920360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.930260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.930297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.930305 LLDP, length 82 [|LLDP] 19:37:55.930306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.930318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.930324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16dd af25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.930326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.930330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.930333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.930338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.930343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.930346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.930348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.930358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.930364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.940258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.940289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.940296 LLDP, length 82 [|LLDP] 19:37:55.940298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.940310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.940316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.940320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.940325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.940328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.940330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16e5 5045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.940332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.940336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.940340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.940350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.940356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.950261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.950289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.950297 LLDP, length 82 [|LLDP] 19:37:55.950298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.950309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.950315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16ec f165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.950317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.950320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.950324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.950329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.950334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.950336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.950338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.950348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.950354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.960261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.960291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.960298 LLDP, length 82 [|LLDP] 19:37:55.960300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.960312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.960318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16f4 9285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.960319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.960323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.960326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.960332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.960336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.960339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.960341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.960351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.960357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.970261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.970291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.970298 LLDP, length 82 [|LLDP] 19:37:55.970300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.970311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.970317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16fc 33a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.970319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.970324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.970329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.970332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.970334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.970337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.970341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.970351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.970357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.980265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.980296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.980304 LLDP, length 82 [|LLDP] 19:37:55.980306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.980317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.980324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1703 d4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.980326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.980329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.980333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.980338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.980343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.980345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.980347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.980357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.980363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.990262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.990300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.990309 LLDP, length 82 [|LLDP] 19:37:55.990310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.990321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.990327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.990333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.990335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.990338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.990343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 170b 75e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.990345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.990348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.990352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.990362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.990368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.000266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.000305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.000312 LLDP, length 82 [|LLDP] 19:37:56.000314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.000325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.000332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1713 1705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.000333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.000337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.000342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.000347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.000350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.000352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.000356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.000367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.000372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.010264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.010296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.010304 LLDP, length 82 [|LLDP] 19:37:56.010305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.010317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.010323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 171a b825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.010325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.010328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.010331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.010336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.010341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.010344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.010346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.010357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.010363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.020263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.020299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.020306 LLDP, length 82 [|LLDP] 19:37:56.020308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.020319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.020326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.020331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.020335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.020338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.020340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1722 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.020342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.020346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.020349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.020359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.020365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.030262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.030291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.030298 LLDP, length 82 [|LLDP] 19:37:56.030300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.030311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.030316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1729 fa65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.030318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.030322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.030325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.030330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.030335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.030338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.030340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.030350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.030355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.040266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.040302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.040309 LLDP, length 82 [|LLDP] 19:37:56.040311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.040321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.040327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1731 9b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.040329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.040333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.040336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.040341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.040346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.040348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.040350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.040360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.040366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.050262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.050299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.050307 LLDP, length 82 [|LLDP] 19:37:56.050308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.050320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.050326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1739 3ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.050328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.050333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.050337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.050340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.050342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.050346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.050349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.050359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.050365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.060262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.060297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.060305 LLDP, length 82 [|LLDP] 19:37:56.060307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.060318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.060324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1740 ddc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.060326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.060329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.060333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.060338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.060342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.060345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.060347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.060358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.060363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.070263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.070292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.070299 LLDP, length 82 [|LLDP] 19:37:56.070301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.070312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.070318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.070323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.070326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.070328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.070333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1748 7ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.070335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.070339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.070342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.070352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.070359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.080263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.080293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.080300 LLDP, length 82 [|LLDP] 19:37:56.080302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.080313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.080319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1750 2005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.080321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.080324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.080329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.080334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.080337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.080339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.080343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.080352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.080358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.090265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.090309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.090316 LLDP, length 82 [|LLDP] 19:37:56.090318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.090329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.090336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1757 c125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.090338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.090341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.090345 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.090350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.090355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.090358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.090360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.090372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.090378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.100271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.100303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.100310 LLDP, length 82 [|LLDP] 19:37:56.100312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.100323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.100329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.100334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.100339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.100342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.100344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 175f 6245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.100346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.100350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.100353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.100365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.100371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.110264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.110301 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.110309 LLDP, length 82 [|LLDP] 19:37:56.110310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.110322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.110328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1767 0365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.110330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.110333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.110337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.110342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.110346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.110349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.110351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.110361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.110367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.120263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.120295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.120303 LLDP, length 82 [|LLDP] 19:37:56.120305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.120316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.120322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 176e a485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.120324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.120327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.120330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.120336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.120341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.120343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.120345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.120356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.120362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.130269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.130304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.130312 LLDP, length 82 [|LLDP] 19:37:56.130314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.130325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.130331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1776 45a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.130334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.130339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.130344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.130347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.130349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.130352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.130355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.130367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.130372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.140278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.140318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.140327 LLDP, length 82 [|LLDP] 19:37:56.140328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.140340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.140347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 177d e6c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.140349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.140353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.140356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.140361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.140366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.140369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.140371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.140383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.140390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.150275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.150318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.150327 LLDP, length 82 [|LLDP] 19:37:56.150328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.150340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.150345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.150352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.150355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.150358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.150364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1785 87e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.150366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.150369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.150373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.150385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.150391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.160267 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.160297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.160304 LLDP, length 82 [|LLDP] 19:37:56.160306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.160317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.160324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 178d 2905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.160326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.160329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.160334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.160338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.160341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.160343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.160347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.160357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.160363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.170261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.170288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.170295 LLDP, length 82 [|LLDP] 19:37:56.170297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.170308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.170314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1794 ca25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.170316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.170320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.170324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.170328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.170333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.170336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.170338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.170348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.170353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.180260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.180284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.180291 LLDP, length 82 [|LLDP] 19:37:56.180292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.180304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.180309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.180314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.180318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.180321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.180323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 179c 6b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.180325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.180329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.180333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.180341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.180347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.190262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.190295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.190302 LLDP, length 82 [|LLDP] 19:37:56.190304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.190315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.190321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17a4 0c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.190323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.190327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.190331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.190336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.190341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.190343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.190346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.190355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.190361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.200305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.200365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.200375 LLDP, length 82 [|LLDP] 19:37:56.200377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.200388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.200398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ab ad85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.200401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.200404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.200408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.200414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.200420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.200423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.200425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.200440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.200447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.210309 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.210382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.210393 LLDP, length 82 [|LLDP] 19:37:56.210395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.210408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.210418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17b3 4ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.210420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.210427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.210433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.210436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.210439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.210443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.210446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.210463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.210470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.220311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.220384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.220395 LLDP, length 82 [|LLDP] 19:37:56.220397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.220409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.220421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ba efc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.220424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.220428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.220431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.220437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.220463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.220467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.220470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.220488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.220496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.230311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.230364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.230373 LLDP, length 82 [|LLDP] 19:37:56.230375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.230388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.230395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.230405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.230409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.230411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.230419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17c2 90e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.230421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.230425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.230429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.230445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.230452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.240313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.240385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.240395 LLDP, length 82 [|LLDP] 19:37:56.240397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.240409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.240420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ca 3205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.240422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.240426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.240432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.240439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.240443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.240445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.240449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.240466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.240473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.250311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.250383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.250394 LLDP, length 82 [|LLDP] 19:37:56.250396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.250408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.250419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17d1 d325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.250422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.250426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.250430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.250436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.250442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.250446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.250448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.250464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.250471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.260307 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.260379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.260390 LLDP, length 82 [|LLDP] 19:37:56.260392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.260405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.260415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.260421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.260427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.260431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.260434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17d9 7445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.260437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.260441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.260444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.260460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.260468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.270302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.270369 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.270379 LLDP, length 82 [|LLDP] 19:37:56.270381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.270392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.270402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17e1 1565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.270404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.270408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.270411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.270417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.270423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.270426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.270428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.270443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.270450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.280277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.280324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.280332 LLDP, length 82 [|LLDP] 19:37:56.280334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.280345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.280353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17e8 b685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.280355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.280359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.280362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.280369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.280374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.280377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.280379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.280392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.280398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.290274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.290311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.290320 LLDP, length 82 [|LLDP] 19:37:56.290322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.290333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.290340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17f0 57a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.290342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.290348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.290353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.290356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.290358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.290362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.290366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.290377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.290384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.300280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.300320 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.300329 LLDP, length 82 [|LLDP] 19:37:56.300330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.300342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.300349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17f7 f8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.300351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.300355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.300358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.300364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.300369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.300372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.300374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.300385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.300392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.310274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.310320 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.310329 LLDP, length 82 [|LLDP] 19:37:56.310331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.310342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.310348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.310354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.310357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.310359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.310365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ff 99e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.310367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.310370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.310374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.310386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.310392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.320277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.320318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.320326 LLDP, length 82 [|LLDP] 19:37:56.320328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.320339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.320346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1807 3b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.320348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.320352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.320357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.320363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.320366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.320368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.320372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.320383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.320390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.330274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.330313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.330321 LLDP, length 82 [|LLDP] 19:37:56.330323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.330334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.330341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 180e dc25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.330343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.330347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.330350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.330356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.330361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.330364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.330366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.330378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.330384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.340273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.340314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.340322 LLDP, length 82 [|LLDP] 19:37:56.340324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.340336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.340342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.340348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.340352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.340356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.340358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1816 7d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.340360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.340364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.340367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.340379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.340385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.350272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.350315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.350323 LLDP, length 82 [|LLDP] 19:37:56.350324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.350337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.350343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 181e 1e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.350346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.350349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.350353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.350358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.350363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.350366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.350368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.350380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.350386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.360275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.360310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.360319 LLDP, length 82 [|LLDP] 19:37:56.360320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.360332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.360339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1825 bf85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.360341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.360345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.360348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.360354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.360359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.360362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.360365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.360376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.360382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.370272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.370309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.370318 LLDP, length 82 [|LLDP] 19:37:56.370319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.370331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.370338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 182d 60a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.370340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.370345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.370350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.370353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.370356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.370359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.370363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.370375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.370380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.380275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.380311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.380319 LLDP, length 82 [|LLDP] 19:37:56.380321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.380332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.380339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1835 01c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.380341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.380344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.380348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.380353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.380358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.380361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.380363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.380375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.380381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.390289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.390339 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.390348 LLDP, length 82 [|LLDP] 19:37:56.390350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.390362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.390368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.390374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.390378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.390380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.390386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 183c a2e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.390389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.390392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.390396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.390409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.390415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.400279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.400320 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.400328 LLDP, length 82 [|LLDP] 19:37:56.400330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.400342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.400349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1844 4405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.400351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.400355 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.400361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.400366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.400369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.400371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.400375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.400400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.400407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.410277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.410315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.410325 LLDP, length 82 [|LLDP] 19:37:56.410326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.410338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.410345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 184b e525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.410347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.410350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.410354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.410359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.410364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.410367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.410369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.410381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.410388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.420277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.420318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.420326 LLDP, length 82 [|LLDP] 19:37:56.420328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.420340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.420346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.420351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.420357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.420360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.420362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1853 8645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.420364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.420368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.420371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.420383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.420390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.430277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.430321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.430329 LLDP, length 82 [|LLDP] 19:37:56.430331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.430342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.430349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 185b 2765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.430351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.430355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.430358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.430363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.430368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.430371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.430373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.430384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.430391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.440277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.440314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.440322 LLDP, length 82 [|LLDP] 19:37:56.440323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.440335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.440342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1862 c885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.440344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.440348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.440351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.440356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.440361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.440364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.440366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.440377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.440384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.450274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.450311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.450319 LLDP, length 82 [|LLDP] 19:37:56.450320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.450332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.450338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 186a 69a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.450341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.450346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.450351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.450354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.450356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.450360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.450363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.450375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.450381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.460274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.460312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.460320 LLDP, length 82 [|LLDP] 19:37:56.460321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.460333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.460340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1872 0ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.460343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.460346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.460350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.460355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.460360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.460363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.460365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.460377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.460383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.470275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.470312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.470321 LLDP, length 82 [|LLDP] 19:37:56.470322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.470334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.470340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.470346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.470348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.470351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.470356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1879 abe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.470358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.470362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.470365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.470376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.470383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.480276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.480318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.480326 LLDP, length 82 [|LLDP] 19:37:56.480328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.480339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.480346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1881 4d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.480348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.480352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.480356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.480361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.480364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.480366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.480370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.480381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.480387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.490276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.490319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.490327 LLDP, length 82 [|LLDP] 19:37:56.490329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.490340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.490347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1888 ee25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.490349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.490353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.490356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.490361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.490367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.490369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.490371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.490382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.490388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.500281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.500318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.500326 LLDP, length 82 [|LLDP] 19:37:56.500328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.500339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.500346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.500351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.500356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.500359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.500361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1890 8f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.500363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.500367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.500370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.500382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.500388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.510276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.510311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.510319 LLDP, length 82 [|LLDP] 19:37:56.510321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.510332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.510339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1898 3065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.510341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.510345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.510348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.510353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.510358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.510361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.510363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.510374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.510380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.520279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.520313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.520320 LLDP, length 82 [|LLDP] 19:37:56.520322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.520333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.520340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 189f d185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.520342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.520346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.520349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.520355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.520359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.520362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.520364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.520376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.520381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.530273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.530305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.530313 LLDP, length 82 [|LLDP] 19:37:56.530315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.530326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.530332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18a7 72a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.530334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.530339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.530344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.530347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.530349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.530352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.530356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.530366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.530372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.540272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.540307 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.540315 LLDP, length 82 [|LLDP] 19:37:56.540317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.540328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.540334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18af 13c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.540336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.540340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.540343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.540348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.540353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.540356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.540358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.540368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.540374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.550270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.550306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.550313 LLDP, length 82 [|LLDP] 19:37:56.550315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.550326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.550332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.550337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.550340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.550342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.550347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18b6 b4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.550349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.550353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.550356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.550367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.550372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.560270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.560305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.560313 LLDP, length 82 [|LLDP] 19:37:56.560314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.560326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.560332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18be 5605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.560334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.560338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.560342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.560347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.560350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.560352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.560355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.560365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.560372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.570270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.570300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.570308 LLDP, length 82 [|LLDP] 19:37:56.570309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.570320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.570326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18c5 f725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.570328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.570332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.570335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.570340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.570345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.570348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.570350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.570360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.570366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.580269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.580298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.580305 LLDP, length 82 [|LLDP] 19:37:56.580307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.580319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.580324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.580329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.580334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.580337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.580339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18cd 9845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.580341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.580345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.580348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.580358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.580364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.590269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.590298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.590306 LLDP, length 82 [|LLDP] 19:37:56.590307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.590320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.590325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18d5 3965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.590327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.590331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.590334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.590339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.590344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.590347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.590349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.590359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.590365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.600269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.600304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.600312 LLDP, length 82 [|LLDP] 19:37:56.600313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.600324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.600331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18dc da85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.600333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.600336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.600340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.600345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.600350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.600353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.600355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.600365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.600370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.610270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.610300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.610307 LLDP, length 82 [|LLDP] 19:37:56.610309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.610320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.610326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18e4 7ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.610328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.610333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.610338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.610340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.610343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.610347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.610350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.610360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.610366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.620270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.620300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.620308 LLDP, length 82 [|LLDP] 19:37:56.620309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.620321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.620327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18ec 1cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.620330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.620333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.620337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.620342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.620347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.620350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.620352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.620362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.620368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.630273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.630303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.630310 LLDP, length 82 [|LLDP] 19:37:56.630312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.630323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.630329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.630334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.630337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.630339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.630345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18f3 bde5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.630346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.630350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.630354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.630364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.630370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.640273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.640305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.640313 LLDP, length 82 [|LLDP] 19:37:56.640314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.640326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.640332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18fb 5f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.640334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.640337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.640342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.640347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.640350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.640352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.640356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.640365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.640371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.650270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.650305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.650312 LLDP, length 82 [|LLDP] 19:37:56.650314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.650325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.650332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1903 0025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.650334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.650337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.650341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.650345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.650351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.650353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.650356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.650365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.650371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.660269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.660298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.660305 LLDP, length 82 [|LLDP] 19:37:56.660307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.660318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.660324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.660330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.660334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.660337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.660339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 190a a145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.660341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.660345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.660348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.660359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.660364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.670271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.670300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.670308 LLDP, length 82 [|LLDP] 19:37:56.670309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.670321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.670326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1912 4265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.670329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.670332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.670336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.670341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.670345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.670348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.670350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.670361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.670368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.680296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.680349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.680358 LLDP, length 82 [|LLDP] 19:37:56.680360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.680372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.680381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1919 e385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.680383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.680387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.680390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.680396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.680401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.680405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.680407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.680420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.680427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.690279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.690313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.690322 LLDP, length 82 [|LLDP] 19:37:56.690323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.690335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.690343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1921 84a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.690345 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.690350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.690354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.690357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.690360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.690363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.690367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.690377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.690383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.700271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.700301 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.700309 LLDP, length 82 [|LLDP] 19:37:56.700310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.700322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.700328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1929 25c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.700330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.700334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.700338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.700343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.700348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.700350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.700353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.700362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.700368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.710285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.710331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.710340 LLDP, length 82 [|LLDP] 19:37:56.710342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.710354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.710360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.710366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.710369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.710372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.710377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1930 c6e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.710380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.710383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.710387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.710398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.710404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.720296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.720346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.720354 LLDP, length 82 [|LLDP] 19:37:56.720356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.720368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.720376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1938 6805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.720378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.720382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.720388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.720393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.720396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.720398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.720402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.720414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.720421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.730281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.730323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.730332 LLDP, length 82 [|LLDP] 19:37:56.730334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.730345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.730352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1940 0925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.730354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.730358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.730361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.730367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.730372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.730375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.730377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.730388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.730394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.740274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.740312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.740320 LLDP, length 82 [|LLDP] 19:37:56.740322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.740333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.740339 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.740344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.740349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.740352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.740354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1947 aa45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.740356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.740360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.740363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.740374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.740380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.750288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.750331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.750340 LLDP, length 82 [|LLDP] 19:37:56.750341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.750353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.750361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 194f 4b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.750363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.750367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.750370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.750375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.750381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.750384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.750386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.750398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.750405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.760280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.760313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.760322 LLDP, length 82 [|LLDP] 19:37:56.760323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.760335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.760342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1956 ec85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.760344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.760347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.760351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.760356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.760361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.760364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.760366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.760378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.760384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.770272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.770302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.770310 LLDP, length 82 [|LLDP] 19:37:56.770311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.770323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.770328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 195e 8da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.770331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.770336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.770341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.770343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.770346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.770350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.770353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.770363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.770369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.780287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.780332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.780341 LLDP, length 82 [|LLDP] 19:37:56.780343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.780354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.780361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1966 2ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.780363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.780367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.780370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.780375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.780381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.780384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.780386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.780397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.780403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.790280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.790319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.790327 LLDP, length 82 [|LLDP] 19:37:56.790329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.790341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.790348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.790354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.790357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.790359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.790364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 196d cfe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.790366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.790370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.790373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.790384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.790390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.800274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.800303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.800311 LLDP, length 82 [|LLDP] 19:37:56.800312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.800324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.800330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1975 7105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.800332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.800335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.800340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.800345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.800347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.800350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.800354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.800364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.800370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.810286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.810322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.810330 LLDP, length 82 [|LLDP] 19:37:56.810331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.810343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.810349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 197d 1225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.810351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.810354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.810358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.810363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.810368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.810371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.810373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.810384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.810390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.820310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.820370 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.820380 LLDP, length 82 [|LLDP] 19:37:56.820382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.820394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.820403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.820409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.820415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.820418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.820420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1984 b345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.820423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.820426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.820430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.820444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.820451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.830277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.830316 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.830323 LLDP, length 82 [|LLDP] 19:37:56.830325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.830337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.830343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 198c 5465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.830345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.830349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.830353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.830358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.830363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.830365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.830367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.830378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.830384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.840274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.840313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.840320 LLDP, length 82 [|LLDP] 19:37:56.840322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.840333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.840340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1993 f585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.840342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.840345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.840349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.840354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.840359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.840361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.840363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.840374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.840379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.850274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.850309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.850317 LLDP, length 82 [|LLDP] 19:37:56.850318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.850330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.850336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 199b 96a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.850338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.850343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.850348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.850351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.850353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.850357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.850360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.850371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.850376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.860276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.860304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.860311 LLDP, length 82 [|LLDP] 19:37:56.860313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.860324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.860330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19a3 37c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.860332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.860336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.860339 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.860344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.860349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.860351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.860353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.860364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.860370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.870273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.870300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.870307 LLDP, length 82 [|LLDP] 19:37:56.870309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.870320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.870326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.870331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.870334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.870336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.870341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19aa d8e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.870343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.870347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.870350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.870360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.870367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.880274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.880303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.880310 LLDP, length 82 [|LLDP] 19:37:56.880312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.880323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.880329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19b2 7a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.880331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.880334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.880340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.880344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.880347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.880350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.880354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.880364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.880369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.890290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.890327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.890335 LLDP, length 82 [|LLDP] 19:37:56.890336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.890348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.890355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19ba 1b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.890357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.890361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.890365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.890369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.890374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.890377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.890379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.890390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.890396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.900279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.900312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.900320 LLDP, length 82 [|LLDP] 19:37:56.900322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.900333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.900340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.900345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.900350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.900353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.900355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19c1 bc45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.900357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.900361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.900364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.900375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.900381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.910275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.910309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.910317 LLDP, length 82 [|LLDP] 19:37:56.910318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.910331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.910337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19c9 5d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.910339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.910343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.910346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.910351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.910357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.910359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.910362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.910372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.910378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.920276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.920307 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.920315 LLDP, length 82 [|LLDP] 19:37:56.920316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.920328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.920334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19d0 fe85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.920336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.920339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.920343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.920348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.920353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.920356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.920358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.920369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.920375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.930276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.930305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.930313 LLDP, length 82 [|LLDP] 19:37:56.930314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.930326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.930332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19d8 9fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.930334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.930340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.930345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.930347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.930350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.930353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.930357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.930367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.930373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.940277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.940307 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.940315 LLDP, length 82 [|LLDP] 19:37:56.940316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.940328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.940334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19e0 40c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.940336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.940339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.940342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.940348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.940352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.940355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.940357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.940367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.940373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.950274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.950302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.950310 LLDP, length 82 [|LLDP] 19:37:56.950312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.950323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.950329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.950334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.950337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.950339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.950343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19e7 e1e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.950345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.950349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.950352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.950363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.950369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.960276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.960312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.960320 LLDP, length 82 [|LLDP] 19:37:56.960321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.960332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.960339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19ef 8305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.960341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.960344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.960349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.960355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.960357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.960359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.960363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.960372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.960378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.970348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.970395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.970405 LLDP, length 82 [|LLDP] 19:37:56.970406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.970419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.970427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19f7 2425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.970429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.970433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.970436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.970442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.970447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.970450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.970452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.970466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.970473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.980284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.980327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.980336 LLDP, length 82 [|LLDP] 19:37:56.980338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.980349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.980355 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.980360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.980365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.980368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.980370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19fe c545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.980372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.980376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.980379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.980390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.980396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.990284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.990318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.990326 LLDP, length 82 [|LLDP] 19:37:56.990328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.990339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.990345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a06 6665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.990347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.990351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.990354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.990359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.990364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.990367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.990369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.990380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.990386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.000292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.000331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.000340 LLDP, length 82 [|LLDP] 19:37:57.000342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.000353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.000359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a0e 0785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.000361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.000365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.000368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.000373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.000378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.000381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.000384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.000395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.000402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.010281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.010321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.010329 LLDP, length 82 [|LLDP] 19:37:57.010330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.010342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.010349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a15 a8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.010351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.010356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.010361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.010364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.010366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.010369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.010373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.010383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.010389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.020286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.020322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.020330 LLDP, length 82 [|LLDP] 19:37:57.020331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.020343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.020350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a1d 49c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.020352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.020355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.020358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.020364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.020369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.020372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.020374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.020386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.020392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.030283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.030321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.030329 LLDP, length 82 [|LLDP] 19:37:57.030331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.030342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.030347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.030353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.030356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.030358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.030363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a24 eae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.030365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.030368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.030372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.030381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.030387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.040289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.040326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.040334 LLDP, length 82 [|LLDP] 19:37:57.040336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.040347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.040354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a2c 8c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.040356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.040360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.040365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.040369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.040373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.040375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.040379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.040390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.040396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.050280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.050324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.050333 LLDP, length 82 [|LLDP] 19:37:57.050334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.050346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.050352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a34 2d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.050354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.050358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.050362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.050367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.050371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.050374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.050376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.050387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.050394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.060286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.060324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.060332 LLDP, length 82 [|LLDP] 19:37:57.060333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.060345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.060351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.060356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.060361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.060364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.060367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a3b ce45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.060369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.060372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.060376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.060387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.060393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.070282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.070315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.070323 LLDP, length 82 [|LLDP] 19:37:57.070324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.070336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.070342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a43 6f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.070344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.070347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.070351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.070356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.070361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.070363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.070366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.070376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.070382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.080283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.080316 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.080323 LLDP, length 82 [|LLDP] 19:37:57.080325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.080336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.080342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a4b 1085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.080344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.080348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.080351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.080357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.080361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.080364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.080366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.080391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.080399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.090322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.090374 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.090383 LLDP, length 82 [|LLDP] 19:37:57.090385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.090397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.090406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a52 b1a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.090408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.090413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.090420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.090423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.090425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.090429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.090433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.090447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.090454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.100294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.100343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.100352 LLDP, length 82 [|LLDP] 19:37:57.100354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.100366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.100374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a5a 52c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.100376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.100380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.100383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.100389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.100393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.100397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.100399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.100411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.100419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.110286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.110322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.110330 LLDP, length 82 [|LLDP] 19:37:57.110331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.110343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.110349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.110354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.110357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.110359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.110365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a61 f3e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.110367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.110370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.110374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.110385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.110391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.120293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.120343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.120352 LLDP, length 82 [|LLDP] 19:37:57.120354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.120366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.120373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a69 9505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.120376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.120379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.120385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.120390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.120393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.120395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.120399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.120412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.120418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.130288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.130336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.130345 LLDP, length 82 [|LLDP] 19:37:57.130347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.130359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.130366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a71 3625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.130368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.130372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.130376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.130381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.130386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.130389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.130391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.130404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.130410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.140292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.140334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.140343 LLDP, length 82 [|LLDP] 19:37:57.140345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.140358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.140365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.140370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.140375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.140379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.140381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a78 d745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.140383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.140387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.140391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.140404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.140410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.150293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.150341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.150350 LLDP, length 82 [|LLDP] 19:37:57.150351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.150363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.150370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a80 7865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.150373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.150376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.150380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.150385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.150391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.150394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.150396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.150409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.150415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.160290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.160336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.160344 LLDP, length 82 [|LLDP] 19:37:57.160345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.160358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.160365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a88 1985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.160367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.160371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.160375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.160380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.160385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.160389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.160391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.160403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.160410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.170289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.170327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.170334 LLDP, length 82 [|LLDP] 19:37:57.170336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.170348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.170355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a8f baa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.170357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.170362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.170367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.170370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.170372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.170376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.170380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.170391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.170397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.180291 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.180336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.180345 LLDP, length 82 [|LLDP] 19:37:57.180346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.180358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.180366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a97 5bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.180368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.180372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.180375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.180380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.180385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.180388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.180390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.180402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.180409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.190286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.190322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.190330 LLDP, length 82 [|LLDP] 19:37:57.190331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.190343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.190348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.190354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.190357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.190359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.190364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a9e fce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.190366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.190370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.190373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.190384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.190390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.200284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.200324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.200332 LLDP, length 82 [|LLDP] 19:37:57.200333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.200345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.200351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1aa6 9e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.200353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.200357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.200362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.200367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.200370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.200372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.200376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.200386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.200392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.210312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.210383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.210393 LLDP, length 82 [|LLDP] 19:37:57.210395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.210407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.210416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1aae 3f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.210418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.210423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.210426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.210433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.210438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.210442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.210444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.210458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.210465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.220291 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.220332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.220340 LLDP, length 82 [|LLDP] 19:37:57.220342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.220353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.220360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.220365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.220370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.220373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.220375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ab5 e045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.220378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.220381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.220385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.220397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.220403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.230286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.230317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.230325 LLDP, length 82 [|LLDP] 19:37:57.230326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.230339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.230345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1abd 8165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.230347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.230351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.230354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.230359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.230364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.230367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.230369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.230380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.230386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.240282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.240313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.240320 LLDP, length 82 [|LLDP] 19:37:57.240322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.240333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.240339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ac5 2285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.240341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.240345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.240348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.240353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.240358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.240360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.240363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.240373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.240379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.250281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.250312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.250320 LLDP, length 82 [|LLDP] 19:37:57.250322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.250333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.250339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1acc c3a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.250341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.250346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.250351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.250353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.250355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.250359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.250363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.250373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.250379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.260281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.260311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.260319 LLDP, length 82 [|LLDP] 19:37:57.260321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.260332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.260338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ad4 64c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.260340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.260344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.260347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.260352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.260357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.260360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.260362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.260371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.260377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.270312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.270379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.270389 LLDP, length 82 [|LLDP] 19:37:57.270391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.270404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.270411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.270418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.270422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.270424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.270431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1adc 05e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.270434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.270437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.270441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.270456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.270463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.280326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.280403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.280414 LLDP, length 82 [|LLDP] 19:37:57.280416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.280429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.280439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ae3 a705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.280442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.280446 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.280452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.280459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.280463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.280466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.280470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.280487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.280496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.290301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.290348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.290357 LLDP, length 82 [|LLDP] 19:37:57.290359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.290371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.290378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1aeb 4825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.290381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.290385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.290389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.290394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.290400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.290403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.290405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.290418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.290425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.300288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.300324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.300332 LLDP, length 82 [|LLDP] 19:37:57.300334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.300345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.300352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.300357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.300362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.300365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.300367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1af2 e945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.300369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.300373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.300377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.300388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.300394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.310290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.310322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.310330 LLDP, length 82 [|LLDP] 19:37:57.310332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.310344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.310350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1afa 8a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.310352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.310356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.310360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.310365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.310369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.310373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.310375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.310385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.310391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.320287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.320331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.320339 LLDP, length 82 [|LLDP] 19:37:57.320341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.320352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.320359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b02 2b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.320361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.320365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.320368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.320373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.320378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.320381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.320384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.320394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.320400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.330289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.330323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.330330 LLDP, length 82 [|LLDP] 19:37:57.330332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.330343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.330350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b09 cca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.330352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.330357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.330362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.330365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.330368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.330371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.330375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.330386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.330392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.340286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.340328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.340335 LLDP, length 82 [|LLDP] 19:37:57.340337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.340349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.340355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b11 6dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.340357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.340361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.340365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.340370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.340374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.340378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.340380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.340391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.340397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.350288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.350324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.350331 LLDP, length 82 [|LLDP] 19:37:57.350333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.350345 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.350350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.350356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.350359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.350361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.350366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b19 0ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.350368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.350372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.350375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.350386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.350392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.360284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.360319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.360327 LLDP, length 82 [|LLDP] 19:37:57.360329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.360340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.360347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b20 b005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.360349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.360352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.360357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.360363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.360366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.360368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.360371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.360382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.360389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.370292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.370329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.370337 LLDP, length 82 [|LLDP] 19:37:57.370338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.370350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.370356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b28 5125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.370358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.370362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.370366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.370370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.370375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.370378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.370380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.370391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.370398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.380294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.380334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.380343 LLDP, length 82 [|LLDP] 19:37:57.380344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.380356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.380363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.380369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.380374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.380377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.380379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b2f f245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.380381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.380385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.380389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.380400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.380406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.390281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.390314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.390322 LLDP, length 82 [|LLDP] 19:37:57.390323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.390334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.390340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b37 9365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.390342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.390346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.390349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.390354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.390358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.390361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.390363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.390373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.390378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.400277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.400309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.400316 LLDP, length 82 [|LLDP] 19:37:57.400318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.400329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.400335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b3f 3485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.400337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.400341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.400344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.400349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.400353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.400356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.400358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.400380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.400386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.410280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.410304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.410311 LLDP, length 82 [|LLDP] 19:37:57.410313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.410324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.410330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b46 d5a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.410332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.410337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.410341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.410344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.410347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.410350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.410354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.410363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.410368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.420279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.420308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.420315 LLDP, length 82 [|LLDP] 19:37:57.420317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.420328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.420333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b4e 76c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.420336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.420339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.420343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.420347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.420352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.420354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.420357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.420365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.420371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.430275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.430298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.430305 LLDP, length 82 [|LLDP] 19:37:57.430307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.430318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.430323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.430328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.430331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.430333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.430338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b56 17e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.430339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.430343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.430346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.430355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.430361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.440278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.440299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.440306 LLDP, length 82 [|LLDP] 19:37:57.440308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.440319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.440325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b5d b905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.440327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.440330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.440335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.440340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.440343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.440345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.440348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.440357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.440362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.450278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.450298 LLDP, length 82 [|LLDP] 19:37:57.450300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.450312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.450317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b65 5a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.450319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.450323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.450327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.450331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.450336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.450339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.450341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.450347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.450356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.450361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.460279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.460306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.460313 LLDP, length 82 [|LLDP] 19:37:57.460314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.460326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.460331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.460336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.460341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.460343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.460346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b6c fb45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.460348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.460351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.460355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.460364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.460370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.470277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.470306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.470313 LLDP, length 82 [|LLDP] 19:37:57.470315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.470326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.470331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b74 9c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.470333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.470337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.470340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.470345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.470350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.470352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.470354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.470363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.470369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.480280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.480302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.480309 LLDP, length 82 [|LLDP] 19:37:57.480310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.480321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.480327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b7c 3d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.480328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.480332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.480335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.480340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.480345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.480347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.480349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.480358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.480364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.490276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.490297 LLDP, length 82 [|LLDP] 19:37:57.490299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.490311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.490316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b83 dea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.490318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.490323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.490327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.490330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.490332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.490338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.490342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.490345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.490354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.490359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.500289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.500311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.500317 LLDP, length 82 [|LLDP] 19:37:57.500319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.500330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.500336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b8b 7fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.500338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.500341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.500344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.500349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.500354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.500356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.500358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.500367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.500373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.510279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.510299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.510306 LLDP, length 82 [|LLDP] 19:37:57.510308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.510318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.510324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.510329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.510331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.510334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.510338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b93 20e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.510340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.510344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.510347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.510356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.510361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.520281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.520306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.520313 LLDP, length 82 [|LLDP] 19:37:57.520314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.520325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.520331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b9a c205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.520333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.520336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.520341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.520345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.520348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.520350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.520353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.520363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.520368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.530282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.530305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.530313 LLDP, length 82 [|LLDP] 19:37:57.530314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.530325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.530331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ba2 6325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.530333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.530337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.530340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.530345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.530350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.530352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.530354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.530364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.530369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.540280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.540308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.540316 LLDP, length 82 [|LLDP] 19:37:57.540317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.540329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.540334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.540339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.540343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.540346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.540348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1baa 0445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.540350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.540354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.540358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.540367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.540372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.550277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.550300 LLDP, length 82 [|LLDP] 19:37:57.550302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.550314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.550320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bb1 a565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.550322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.550325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.550329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.550334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.550338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.550341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.550343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.550349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.550358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.550364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.560283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.560315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.560322 LLDP, length 82 [|LLDP] 19:37:57.560324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.560335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.560341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bb9 4685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.560343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.560347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.560350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.560355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.560359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.560362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.560365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.560374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.560380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.570280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.570314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.570321 LLDP, length 82 [|LLDP] 19:37:57.570323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.570334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.570340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bc0 e7a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.570342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.570347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.570352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.570354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.570356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.570360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.570363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.570372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.570378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.580279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.580303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.580310 LLDP, length 82 [|LLDP] 19:37:57.580311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.580323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.580328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bc8 88c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.580330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.580334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.580337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.580341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.580346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.580348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.580350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.580359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.580365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.590280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.590302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.590308 LLDP, length 82 [|LLDP] 19:37:57.590310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.590320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.590326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.590331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.590333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.590335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.590340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bd0 29e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.590342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.590345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.590349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.590357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.590363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.600280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.600309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.600316 LLDP, length 82 [|LLDP] 19:37:57.600317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.600329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.600335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bd7 cb05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.600337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.600340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.600345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.600349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.600352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.600354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.600358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.600366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.600372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.610280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.610308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.610315 LLDP, length 82 [|LLDP] 19:37:57.610317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.610327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.610333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bdf 6c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.610335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.610339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.610342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.610347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.610351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.610354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.610356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.610364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.610370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.620279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.620308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.620315 LLDP, length 82 [|LLDP] 19:37:57.620316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.620328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.620334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.620339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.620343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.620346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.620348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1be7 0d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.620350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.620353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.620356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.620366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.620371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.630280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.630309 LLDP, length 82 [|LLDP] 19:37:57.630310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.630322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.630328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bee ae65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.630330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.630333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.630337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.630341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.630346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.630348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.630351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.630356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.630365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.630371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.640281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.640303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.640310 LLDP, length 82 [|LLDP] 19:37:57.640311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.640322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.640328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bf6 4f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.640330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.640333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.640337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.640342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.640346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.640349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.640351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.640360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.640366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.650279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.650301 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.650308 LLDP, length 82 [|LLDP] 19:37:57.650309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.650320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.650326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bfd f0a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.650327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.650332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.650337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.650339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.650341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.650345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.650349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.650358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.650363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.660279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.660304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.660311 LLDP, length 82 [|LLDP] 19:37:57.660312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.660324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.660329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c05 91c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.660331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.660335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.660338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.660343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.660347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.660350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.660352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.660361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.660366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.670279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.670302 LLDP, length 82 [|LLDP] 19:37:57.670304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.670316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.670321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.670326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.670329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.670331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.670337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.670341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c0d 32e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.670343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.670347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.670350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.670359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.670365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.680280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.680308 LLDP, length 82 [|LLDP] 19:37:57.680310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.680322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.680327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c14 d405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.680329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.680333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.680338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.680342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.680345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.680347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.680353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.680357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.680366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.680372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.690281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.690312 LLDP, length 82 [|LLDP] 19:37:57.690313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.690325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.690331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c1c 7525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.690333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.690336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.690340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.690345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.690350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.690352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.690355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.690361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.690370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.690375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.700283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.700323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.700331 LLDP, length 82 [|LLDP] 19:37:57.700332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.700343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.700349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.700354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.700359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.700362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.700364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c24 1645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.700366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.700369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.700373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.700383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.700388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.710285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.710312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.710320 LLDP, length 82 [|LLDP] 19:37:57.710321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.710333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.710339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c2b b765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.710341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.710344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.710348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.710353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.710358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.710360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.710362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.710372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.710379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.720288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.720321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.720329 LLDP, length 82 [|LLDP] 19:37:57.720331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.720342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.720348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c33 5885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.720350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.720354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.720357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.720362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.720367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.720370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.720372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.720382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.720387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.730282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.730306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.730313 LLDP, length 82 [|LLDP] 19:37:57.730314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.730325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.730332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c3a f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.730334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.730338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.730343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.730346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.730348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.730351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.730355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.730364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.730369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.740281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.740310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.740317 LLDP, length 82 [|LLDP] 19:37:57.740318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.740329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.740335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c42 9ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.740337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.740340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.740344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.740348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.740353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.740356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.740358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.740367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.740372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.750282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.750311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.750318 LLDP, length 82 [|LLDP] 19:37:57.750319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.750331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.750336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.750341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.750344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.750346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.750351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c4a 3be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.750352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.750356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.750360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.750368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.750374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.760284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.760308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.760315 LLDP, length 82 [|LLDP] 19:37:57.760316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.760327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.760333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c51 dd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.760335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.760339 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.760343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.760348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.760351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.760353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.760356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.760366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.760372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.770283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.770314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.770322 LLDP, length 82 [|LLDP] 19:37:57.770323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.770334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.770340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c59 7e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.770342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.770345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.770349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.770354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.770358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.770361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.770363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.770372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.770378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.780282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.780306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.780313 LLDP, length 82 [|LLDP] 19:37:57.780315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.780326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.780331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.780336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.780340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.780343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.780345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c61 1f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.780347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.780351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.780354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.780363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.780369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.790282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.790304 LLDP, length 82 [|LLDP] 19:37:57.790306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.790318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.790323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c68 c065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.790325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.790329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.790332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.790337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.790341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.790344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.790346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.790353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.790362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.790367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.800287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.800318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.800325 LLDP, length 82 [|LLDP] 19:37:57.800327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.800339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.800345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c70 6185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.800347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.800351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.800354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.800359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.800364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.800366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.800368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.800377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.800383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.810291 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.810317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.810324 LLDP, length 82 [|LLDP] 19:37:57.810325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.810337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.810342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c78 02a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.810344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.810349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.810354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.810356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.810359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.810363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.810366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.810376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.810382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.820313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.820364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.820373 LLDP, length 82 [|LLDP] 19:37:57.820375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.820387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.820395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c7f a3c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.820397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.820401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.820405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.820410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.820415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.820418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.820420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.820432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.820438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.830288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.830315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.830322 LLDP, length 82 [|LLDP] 19:37:57.830324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.830335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.830340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.830345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.830348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.830351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.830356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c87 44e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.830358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.830362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.830365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.830375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.830380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.840284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.840313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.840321 LLDP, length 82 [|LLDP] 19:37:57.840323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.840335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.840340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c8e e605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.840342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.840346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.840351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.840355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.840358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.840360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.840364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.840373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.840378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.850302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.850341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.850350 LLDP, length 82 [|LLDP] 19:37:57.850351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.850363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.850370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c96 8725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.850372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.850376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.850379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.850384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.850389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.850392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.850394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.850405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.850411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.860285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.860312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.860319 LLDP, length 82 [|LLDP] 19:37:57.860320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.860333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.860338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.860343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.860348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.860351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.860353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c9e 2845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.860355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.860359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.860362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.860371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.860377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.870285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.870315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.870322 LLDP, length 82 [|LLDP] 19:37:57.870324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.870335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.870341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ca5 c965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.870343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.870347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.870350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.870355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.870359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.870362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.870364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.870373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.870379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.880293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.880332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.880341 LLDP, length 82 [|LLDP] 19:37:57.880342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.880354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.880361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cad 6a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.880363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.880366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.880370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.880375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.880380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.880382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.880385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.880395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.880401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.890312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.890357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.890365 LLDP, length 82 [|LLDP] 19:37:57.890367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.890379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.890386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cb5 0ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.890388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.890393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.890398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.890401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.890403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.890407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.890411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.890422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.890429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.900289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.900315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.900322 LLDP, length 82 [|LLDP] 19:37:57.900324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.900335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.900341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cbc acc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.900343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.900346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.900350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.900354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.900359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.900362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.900364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.900374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.900380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.910286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.910318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.910325 LLDP, length 82 [|LLDP] 19:37:57.910326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.910338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.910344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.910349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.910352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.910354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.910359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cc4 4de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.910361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.910364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.910368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.910377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.910383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.920306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.920355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.920364 LLDP, length 82 [|LLDP] 19:37:57.920366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.920378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.920384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ccb ef05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.920387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.920390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.920396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.920401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.920405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.920407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.920410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.920421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.920427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.930290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.930315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.930322 LLDP, length 82 [|LLDP] 19:37:57.930324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.930335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.930341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cd3 9025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.930343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.930347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.930351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.930355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.930360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.930362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.930364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.930374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.930379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.940294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.940324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.940331 LLDP, length 82 [|LLDP] 19:37:57.940333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.940344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.940350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.940356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.940360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.940363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.940365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cdb 3145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.940367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.940371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.940374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.940384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.940389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.950335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.950396 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.950405 LLDP, length 82 [|LLDP] 19:37:57.950407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.950419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.950429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ce2 d265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.950432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.950435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.950439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.950445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.950451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.950454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.950457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.950471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.950477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.960324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.960371 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.960380 LLDP, length 82 [|LLDP] 19:37:57.960382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.960394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.960403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cea 7385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.960406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.960410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.960413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.960420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.960426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.960430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.960432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.960447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.960454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.970301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.970341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.970349 LLDP, length 82 [|LLDP] 19:37:57.970351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.970363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.970369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cf2 14a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.970371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.970377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.970382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.970385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.970387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.970391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.970394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.970405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.970411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.980292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.980324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.980332 LLDP, length 82 [|LLDP] 19:37:57.980333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.980345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.980351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cf9 b5c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.980353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.980357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.980361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.980366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.980370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.980373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.980375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.980386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.980392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.990295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.990326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.990333 LLDP, length 82 [|LLDP] 19:37:57.990334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.990346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.990352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.990357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.990360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.990362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.990366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d01 56e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.990369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.990372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.990376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.990386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.990392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.000306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.000343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.000351 LLDP, length 82 [|LLDP] 19:37:58.000353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.000365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.000371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d08 f805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.000374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.000377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.000383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.000388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.000391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.000393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.000397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.000407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.000413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.010297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.010331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.010339 LLDP, length 82 [|LLDP] 19:37:58.010341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.010352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.010359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d10 9925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.010361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.010364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.010368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.010373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.010377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.010380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.010383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.010394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.010400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.020297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.020327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.020335 LLDP, length 82 [|LLDP] 19:37:58.020336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.020347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.020354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.020359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.020364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.020367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.020369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d18 3a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.020371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.020374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.020378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.020388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.020393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.030290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.030321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.030329 LLDP, length 82 [|LLDP] 19:37:58.030330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.030341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.030347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d1f db65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.030349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.030353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.030356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.030361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.030366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.030368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.030370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.030380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.030386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.040293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.040328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.040336 LLDP, length 82 [|LLDP] 19:37:58.040337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.040348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.040354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d27 7c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.040356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.040360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.040363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.040368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.040373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.040375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.040377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.040387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.040393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.050293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.050323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.050330 LLDP, length 82 [|LLDP] 19:37:58.050332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.050343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.050348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d2f 1da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.050350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.050355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.050360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.050363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.050365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.050369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.050372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.050382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.050388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.060293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.060324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.060331 LLDP, length 82 [|LLDP] 19:37:58.060333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.060344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.060350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d36 bec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.060352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.060356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.060359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.060364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.060368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.060371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.060373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.060384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.060390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.070292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.070328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.070335 LLDP, length 82 [|LLDP] 19:37:58.070337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.070348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.070354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.070360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.070362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.070365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.070370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d3e 5fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.070372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.070375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.070379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.070389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.070394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.080295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.080331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.080338 LLDP, length 82 [|LLDP] 19:37:58.080340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.080351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.080358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d46 0105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.080360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.080363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.080368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.080373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.080376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.080378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.080382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.080392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.080397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.090293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.090323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.090331 LLDP, length 82 [|LLDP] 19:37:58.090332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.090344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.090350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d4d a225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.090352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.090356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.090359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.090364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.090369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.090372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.090374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.090384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.090390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.100297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.100327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.100335 LLDP, length 82 [|LLDP] 19:37:58.100336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.100347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.100353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.100358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.100363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.100366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.100368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d55 4345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.100370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.100373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.100377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.100387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.100392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.110297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.110331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.110338 LLDP, length 82 [|LLDP] 19:37:58.110340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.110351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.110357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d5c e465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.110359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.110363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.110366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.110371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.110376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.110379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.110381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.110391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.110398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.120296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.120327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.120335 LLDP, length 82 [|LLDP] 19:37:58.120336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.120348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.120355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d64 8585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.120357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.120361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.120364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.120370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.120375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.120377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.120380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.120391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.120397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.130295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.130333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.130340 LLDP, length 82 [|LLDP] 19:37:58.130342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.130353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.130359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d6c 26a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.130362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.130367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.130371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.130374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.130377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.130380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.130384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.130394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.130399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.140294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.140330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.140337 LLDP, length 82 [|LLDP] 19:37:58.140338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.140350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.140355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d73 c7c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.140358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.140361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.140365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.140370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.140374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.140377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.140379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.140389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.140395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.150297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.150326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.150333 LLDP, length 82 [|LLDP] 19:37:58.150334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.150346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.150351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.150356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.150359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.150361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.150366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d7b 68e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.150368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.150372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.150375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.150384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.150390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.160293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.160322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.160330 LLDP, length 82 [|LLDP] 19:37:58.160331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.160343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.160349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d83 0a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.160351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.160354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.160360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.160364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.160367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.160369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.160372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.160382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.160388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.170296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.170326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.170333 LLDP, length 82 [|LLDP] 19:37:58.170335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.170346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.170352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d8a ab25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.170354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.170358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.170361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.170366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.170371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.170374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.170376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.170387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.170392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.180294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.180331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.180339 LLDP, length 82 [|LLDP] 19:37:58.180341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.180353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.180360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.180365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.180369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.180372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.180374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d92 4c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.180376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.180380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.180383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.180394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.180400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.190299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.190341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.190349 LLDP, length 82 [|LLDP] 19:37:58.190350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.190362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.190369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d99 ed65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.190371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.190375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.190378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.190383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.190388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.190391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.190393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.190404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.190410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.200296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.200332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.200340 LLDP, length 82 [|LLDP] 19:37:58.200341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.200353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.200359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1da1 8e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.200361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.200364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.200368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.200373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.200378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.200381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.200383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.200393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.200398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.210298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.210328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.210335 LLDP, length 82 [|LLDP] 19:37:58.210337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.210348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.210354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1da9 2fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.210356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.210361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.210366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.210369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.210371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.210375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.210378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.210388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.210394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.220294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.220325 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.220332 LLDP, length 82 [|LLDP] 19:37:58.220334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.220345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.220352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1db0 d0c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.220354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.220357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.220361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.220366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.220371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.220374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.220376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.220385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.220392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.230300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.230336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.230343 LLDP, length 82 [|LLDP] 19:37:58.230345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.230356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.230362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.230367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.230370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.230372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.230377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1db8 71e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.230379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.230383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.230386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.230396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.230402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.240294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.240325 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.240333 LLDP, length 82 [|LLDP] 19:37:58.240334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.240346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.240352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dc0 1305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.240354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.240358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.240363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.240368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.240371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.240373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.240376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.240387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.240393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.250296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.250330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.250338 LLDP, length 82 [|LLDP] 19:37:58.250339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.250351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.250357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dc7 b425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.250359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.250363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.250366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.250371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.250376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.250378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.250381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.250392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.250398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.260296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.260326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.260334 LLDP, length 82 [|LLDP] 19:37:58.260335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.260347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.260352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.260358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.260362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.260366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.260368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dcf 5545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.260370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.260373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.260377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.260387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.260393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.270301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.270331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.270339 LLDP, length 82 [|LLDP] 19:37:58.270340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.270352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.270358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dd6 f665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.270360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.270364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.270367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.270372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.270377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.270380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.270382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.270393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.270398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.280315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.280363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.280372 LLDP, length 82 [|LLDP] 19:37:58.280373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.280385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.280393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dde 9785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.280395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.280399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.280403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.280408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.280413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.280417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.280419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.280431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.280437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.290300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.290341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.290349 LLDP, length 82 [|LLDP] 19:37:58.290351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.290363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.290369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1de6 38a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.290372 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.290376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.290381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.290384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.290387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.290390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.290394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.290404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.290410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.300297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.300328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.300336 LLDP, length 82 [|LLDP] 19:37:58.300337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.300349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.300355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ded d9c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.300357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.300361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.300364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.300369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.300374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.300376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.300379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.300389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.300395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.310304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.310340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.310348 LLDP, length 82 [|LLDP] 19:37:58.310350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.310361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.310367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.310373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.310375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.310377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.310383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1df5 7ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.310385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.310388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.310391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.310402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.310408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.320298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.320335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.320343 LLDP, length 82 [|LLDP] 19:37:58.320344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.320356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.320362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dfd 1c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.320364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.320367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.320372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.320377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.320380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.320382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.320386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.320397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.320403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.330297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.330327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.330334 LLDP, length 82 [|LLDP] 19:37:58.330336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.330347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.330354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e04 bd25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.330356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.330359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.330363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.330368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.330372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.330375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.330377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.330387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.330393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.340298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.340327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.340334 LLDP, length 82 [|LLDP] 19:37:58.340336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.340347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.340353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.340358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.340362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.340365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.340368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e0c 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.340370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.340373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.340377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.340387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.340393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.350297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.350334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.350341 LLDP, length 82 [|LLDP] 19:37:58.350343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.350355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.350361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e13 ff65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.350363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.350366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.350370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.350375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.350380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.350382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.350385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.350394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.350400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.360295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.360331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.360338 LLDP, length 82 [|LLDP] 19:37:58.360340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.360351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.360357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e1b a085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.360359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.360362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.360365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.360370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.360375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.360377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.360379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.360389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.360395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.370296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.370335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.370343 LLDP, length 82 [|LLDP] 19:37:58.370344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.370356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.370362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e23 41a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.370364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.370369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.370373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.370376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.370379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.370382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.370386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.370396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.370401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.380300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.380335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.380343 LLDP, length 82 [|LLDP] 19:37:58.380344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.380356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.380362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e2a e2c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.380364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.380368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.380371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.380376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.380381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.380384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.380386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.380396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.380403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.390298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.390329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.390336 LLDP, length 82 [|LLDP] 19:37:58.390337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.390349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.390354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.390360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.390363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.390365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.390370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e32 83e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.390372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.390375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.390379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.390389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.390395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.400304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.400334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.400342 LLDP, length 82 [|LLDP] 19:37:58.400344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.400355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.400362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e3a 2505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.400364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.400368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.400373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.400377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.400380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.400382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.400386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.400409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.400415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.410300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.410329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.410337 LLDP, length 82 [|LLDP] 19:37:58.410338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.410349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.410355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e41 c625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.410357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.410361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.410364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.410369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.410374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.410377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.410379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.410389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.410394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.420298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.420327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.420335 LLDP, length 82 [|LLDP] 19:37:58.420337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.420348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.420354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.420359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.420364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.420367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.420369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e49 6745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.420371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.420375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.420378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.420388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.420394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.430301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.430336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.430344 LLDP, length 82 [|LLDP] 19:37:58.430345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.430357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.430363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e51 0865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.430365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.430369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.430372 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.430377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.430382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.430385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.430387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.430398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.430404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.440301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.440332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.440340 LLDP, length 82 [|LLDP] 19:37:58.440342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.440353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.440359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e58 a985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.440361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.440365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.440368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.440373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.440378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.440381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.440383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.440393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.440399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.450299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.450329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.450336 LLDP, length 82 [|LLDP] 19:37:58.450338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.450350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.450356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e60 4aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.450358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.450362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.450367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.450370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.450372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.450376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.450379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.450389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.450394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.460301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.460330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.460338 LLDP, length 82 [|LLDP] 19:37:58.460339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.460350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.460356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e67 ebc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.460358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.460362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.460366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.460371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.460375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.460378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.460380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.460390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.460396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.470299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.470327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.470335 LLDP, length 82 [|LLDP] 19:37:58.470336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.470347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.470353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.470358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.470361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.470363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.470368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e6f 8ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.470370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.470373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.470377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.470387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.470392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.480299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.480334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.480342 LLDP, length 82 [|LLDP] 19:37:58.480343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.480355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.480360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e77 2e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.480362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.480366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.480371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.480375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.480378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.480380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.480384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.480394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.480399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.490300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.490338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.490345 LLDP, length 82 [|LLDP] 19:37:58.490346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.490358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.490364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e7e cf25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.490366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.490369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.490373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.490378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.490382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.490385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.490387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.490398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.490403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.500305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.500337 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.500344 LLDP, length 82 [|LLDP] 19:37:58.500346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.500357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.500363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.500367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.500372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.500375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.500377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e86 7045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.500379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.500383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.500387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.500397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.500403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.510301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.510329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.510337 LLDP, length 82 [|LLDP] 19:37:58.510339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.510350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.510356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e8e 1165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.510358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.510362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.510365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.510371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.510375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.510378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.510380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.510391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.510396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.520301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.520331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.520338 LLDP, length 82 [|LLDP] 19:37:58.520340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.520351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.520357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e95 b285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.520359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.520362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.520366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.520371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.520375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.520378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.520380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.520389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.520395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.530300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.530330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.530338 LLDP, length 82 [|LLDP] 19:37:58.530339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.530350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.530356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e9d 53a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.530358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.530363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.530368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.530371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.530373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.530377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.530380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.530390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.530396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.540301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.540332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.540340 LLDP, length 82 [|LLDP] 19:37:58.540342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.540353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.540359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ea4 f4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.540361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.540365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.540369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.540374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.540378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.540381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.540383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.540393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.540399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.550300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.550333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.550340 LLDP, length 82 [|LLDP] 19:37:58.550341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.550353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.550359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.550364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.550367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.550369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.550374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1eac 95e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.550376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.550380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.550383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.550394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.550400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.560301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.560330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.560337 LLDP, length 82 [|LLDP] 19:37:58.560339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.560350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.560356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1eb4 3705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.560359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.560362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.560367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.560372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.560374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.560377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.560380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.560390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.560396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.573476 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.573506 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.573513 LLDP, length 82 [|LLDP] 19:37:58.573514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.573525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.573531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ebb d825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.573533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.573537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.573540 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.573545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.573550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.573553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.573555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.573564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.573570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.580302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.580338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.580345 LLDP, length 82 [|LLDP] 19:37:58.580347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.580358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.580364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.580369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.580373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.580376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.580378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ec3 7945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.580380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.580384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.580387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.580398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.580403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.590301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.590330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.590337 LLDP, length 82 [|LLDP] 19:37:58.590339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.590350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.590355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ecb 1a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.590357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.590361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.590364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.590369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.590374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.590377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.590379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.590389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.590394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.600301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.600331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.600338 LLDP, length 82 [|LLDP] 19:37:58.600340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.600351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.600356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ed2 bb85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.600359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.600362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.600366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.600370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.600375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.600378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.600380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.600390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.600395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.610302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.610331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.610338 LLDP, length 82 [|LLDP] 19:37:58.610340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.610351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.610357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1eda 5ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.610359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.610364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.610369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.610372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.610374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.610378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.610381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.610392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.610397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.620301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.620336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.620343 LLDP, length 82 [|LLDP] 19:37:58.620344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.620356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.620362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ee1 fdc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.620364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.620367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.620371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.620376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.620381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.620384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.620386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.620395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.620402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.630306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.630335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.630342 LLDP, length 82 [|LLDP] 19:37:58.630343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.630354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.630360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.630366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.630369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.630371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.630376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ee9 9ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.630378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.630381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.630385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.630394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.630401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.640300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.640330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.640337 LLDP, length 82 [|LLDP] 19:37:58.640339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.640350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.640356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ef1 4005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.640358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.640361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.640367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.640372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.640375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.640377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.640380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.640391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.640396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.650303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.650333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.650341 LLDP, length 82 [|LLDP] 19:37:58.650342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.650353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.650359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ef8 e125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.650361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.650365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.650368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.650373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.650378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.650381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.650383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.650393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.650399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.660302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.660331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.660338 LLDP, length 82 [|LLDP] 19:37:58.660340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.660351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.660357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.660362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.660367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.660370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.660372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f00 8245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.660374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.660377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.660381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.660391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.660397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.670313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.670356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.670364 LLDP, length 82 [|LLDP] 19:37:58.670366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.670377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.670383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f08 2365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.670385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.670389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.670393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.670398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.670403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.670406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.670408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.670419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.670425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.680310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.680355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.680364 LLDP, length 82 [|LLDP] 19:37:58.680365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.680377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.680383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f0f c485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.680386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.680389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.680393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.680398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.680403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.680405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.680408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.680419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.680426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.690301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.690337 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.690345 LLDP, length 82 [|LLDP] 19:37:58.690347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.690358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.690364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f17 65a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.690366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.690371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.690376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.690379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.690381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.690385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.690388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.690398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.690404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.700302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.700332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.700340 LLDP, length 82 [|LLDP] 19:37:58.700341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.700352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.700358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f1f 06c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.700360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.700364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.700368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.700373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.700378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.700381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.700383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.700393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.700399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.710303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.710333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.710341 LLDP, length 82 [|LLDP] 19:37:58.710342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.710353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.710358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.710364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.710367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.710369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.710373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f26 a7e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.710375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.710379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.710382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.710392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.710397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.720303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.720335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.720343 LLDP, length 82 [|LLDP] 19:37:58.720344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.720356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.720362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f2e 4905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.720363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.720367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.720372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.720377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.720380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.720382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.720386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.720396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.720402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.730304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.730340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.730348 LLDP, length 82 [|LLDP] 19:37:58.730350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.730361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.730367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f35 ea25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.730369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.730373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.730377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.730382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.730386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.730389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.730391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.730401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.730407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.740302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.740333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.740340 LLDP, length 82 [|LLDP] 19:37:58.740342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.740353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.740359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.740364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.740369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.740371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.740373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f3d 8b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.740375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.740379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.740382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.740393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.740398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.750302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.750331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.750339 LLDP, length 82 [|LLDP] 19:37:58.750341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.750352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.750358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f45 2c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.750360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.750364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.750367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.750372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.750377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.750380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.750382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.750392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.750398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.760303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.760332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.760340 LLDP, length 82 [|LLDP] 19:37:58.760341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.760353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.760359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f4c cd85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.760361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.760364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.760368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.760373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.760378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.760380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.760382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.760393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.760398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.770303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.770331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.770339 LLDP, length 82 [|LLDP] 19:37:58.770340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.770352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.770358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f54 6ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.770360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.770365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.770370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.770373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.770375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.770379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.770382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.770392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.770397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.780307 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.780338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.780346 LLDP, length 82 [|LLDP] 19:37:58.780348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.780359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.780365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f5c 0fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.780367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.780371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.780374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.780380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.780385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.780388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.780390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.780401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.780407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.790306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.790343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.790350 LLDP, length 82 [|LLDP] 19:37:58.790351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.790362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.790368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.790373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.790376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.790378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.790383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f63 b0e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.790385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.790388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.790392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.790402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.790407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.800303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.800338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.800346 LLDP, length 82 [|LLDP] 19:37:58.800347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.800359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.800365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f6b 5205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.800367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.800371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.800376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.800380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.800383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.800385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.800388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.800398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.800404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.810302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.810331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.810339 LLDP, length 82 [|LLDP] 19:37:58.810353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.810367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.810373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f72 f325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.810375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.810378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.810382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.810387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.810392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.810394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.810396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.810406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.810412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.820335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.820382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.820390 LLDP, length 82 [|LLDP] 19:37:58.820392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.820404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.820413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.820419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.820424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.820428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.820430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f7a 9445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.820432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.820436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.820440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.820454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.820461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.830311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.830348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.830355 LLDP, length 82 [|LLDP] 19:37:58.830356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.830368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.830375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f82 3565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.830377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.830381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.830384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.830389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.830394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.830397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.830399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.830409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.830416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.840308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.840341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.840348 LLDP, length 82 [|LLDP] 19:37:58.840350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.840361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.840367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f89 d685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.840369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.840373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.840376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.840381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.840386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.840389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.840391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.840401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.840407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.850304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.850335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.850342 LLDP, length 82 [|LLDP] 19:37:58.850344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.850355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.850361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f91 77a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.850363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.850368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.850373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.850375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.850378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.850381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.850385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.850395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.850401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.860303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.860339 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.860346 LLDP, length 82 [|LLDP] 19:37:58.860348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.860359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.860365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f99 18c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.860367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.860371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.860374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.860379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.860384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.860386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.860388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.860398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.860404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.870305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.870344 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.870351 LLDP, length 82 [|LLDP] 19:37:58.870352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.870363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.870369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.870374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.870377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.870379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.870384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fa0 b9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.870386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.870390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.870393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.870403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.870409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.880315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.880347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.880355 LLDP, length 82 [|LLDP] 19:37:58.880357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.880367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.880374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fa8 5b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.880375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.880379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.880384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.880389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.880392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.880394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.880398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.880408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.880414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.890327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.890373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.890381 LLDP, length 82 [|LLDP] 19:37:58.890383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.890395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.890402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1faf fc25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.890404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.890407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.890411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.890417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.890421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.890424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.890427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.890438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.890444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.900308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.900338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.900345 LLDP, length 82 [|LLDP] 19:37:58.900347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.900358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.900364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.900370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.900375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.900378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.900380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fb7 9d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.900382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.900386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.900390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.900400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.900405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.910304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.910334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.910341 LLDP, length 82 [|LLDP] 19:37:58.910342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.910354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.910360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fbf 3e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.910362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.910366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.910369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.910374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.910379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.910382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.910384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.910394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.910399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.920306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.920342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.920349 LLDP, length 82 [|LLDP] 19:37:58.920351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.920362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.920368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fc6 df85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.920370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.920374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.920377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.920382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.920387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.920390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.920392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.920402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.920408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.930304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.930341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.930348 LLDP, length 82 [|LLDP] 19:37:58.930350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.930361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.930367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fce 80a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.930369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.930374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.930378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.930381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.930383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.930387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.930390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.930400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.930405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.940308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.940343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.940351 LLDP, length 82 [|LLDP] 19:37:58.940353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.940364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.940370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fd6 21c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.940372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.940375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.940378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.940383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.940388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.940391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.940393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.940403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.940409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.950305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.950334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.950342 LLDP, length 82 [|LLDP] 19:37:58.950343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.950354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.950360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.950365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.950368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.950370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.950375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fdd c2e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.950377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.950381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.950385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.950395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.950400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.960333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.960392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.960402 LLDP, length 82 [|LLDP] 19:37:58.960404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.960417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.960424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fe5 6405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.960427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.960431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.960436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.960441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.960444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.960447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.960450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.960464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.960470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.970310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.970342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.970350 LLDP, length 82 [|LLDP] 19:37:58.970352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.970364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.970370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fed 0525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.970372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.970376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.970380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.970385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.970389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.970392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.970394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.970405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.970411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.980306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.980338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.980346 LLDP, length 82 [|LLDP] 19:37:58.980348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.980359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.980365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.980371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.980376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.980378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.980380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ff4 a645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.980383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.980386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.980390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.980400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.980407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.990322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.990374 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.990382 LLDP, length 82 [|LLDP] 19:37:58.990384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.990396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.990403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ffc 4765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.990405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.990409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.990413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.990418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.990423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.990426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.990429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.990440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.990446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.000313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.000353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.000361 LLDP, length 82 [|LLDP] 19:37:59.000362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.000374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.000380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2003 e885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.000382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.000386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.000389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.000394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.000399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.000402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.000404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.000415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.000421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.010309 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.010340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.010347 LLDP, length 82 [|LLDP] 19:37:59.010348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.010359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.010365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 200b 89a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.010368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.010372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.010377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.010380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.010382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.010386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.010389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.010399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.010405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.020322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.020362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.020371 LLDP, length 82 [|LLDP] 19:37:59.020373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.020384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.020397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2013 2ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.020399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.020403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.020407 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.020412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.020417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.020420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.020422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.020434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.020440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.030313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.030352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.030360 LLDP, length 82 [|LLDP] 19:37:59.030362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.030373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.030379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.030385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.030387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.030389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.030394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 201a cbe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.030396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.030400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.030404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.030414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.030420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.040310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.040340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.040348 LLDP, length 82 [|LLDP] 19:37:59.040349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.040360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.040366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2022 6d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.040368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.040372 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.040377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.040382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.040385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.040387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.040390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.040400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.040406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.050307 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.050338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.050345 LLDP, length 82 [|LLDP] 19:37:59.050347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.050358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.050364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 202a 0e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.050366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.050369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.050373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.050378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.050383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.050385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.050388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.050398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.050403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.060324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.060366 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.060374 LLDP, length 82 [|LLDP] 19:37:59.060376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.060388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.060395 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.060400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.060405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.060408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.060411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2031 af45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.060413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.060416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.060420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.060433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.060439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.070314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.070345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.070353 LLDP, length 82 [|LLDP] 19:37:59.070354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.070365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.070372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2039 5065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.070373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.070377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.070381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.070386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.070390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.070393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.070395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.070406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.070412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.080308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.080346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.080353 LLDP, length 82 [|LLDP] 19:37:59.080355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.080366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.080372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2040 f185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.080374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.080378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.080381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.080387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.080391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.080394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.080397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.080407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.080413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.090334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.090400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.090410 LLDP, length 82 [|LLDP] 19:37:59.090411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.090423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.090433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2048 92a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.090435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.090441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.090447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.090451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.090453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.090457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.090460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.090474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.090482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.100322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.100361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.100370 LLDP, length 82 [|LLDP] 19:37:59.100371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.100383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.100390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2050 33c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.100393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.100396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.100400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.100405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.100410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.100413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.100415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.100426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.100432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.110314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.110348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.110356 LLDP, length 82 [|LLDP] 19:37:59.110357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.110369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.110374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.110380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.110382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.110385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.110390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2057 d4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.110392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.110395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.110399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.110410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.110416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.120315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.120346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.120353 LLDP, length 82 [|LLDP] 19:37:59.120355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.120367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.120373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 205f 7605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.120375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.120378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.120383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.120388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.120391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.120393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.120396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.120406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.120412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.130316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.130350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.130357 LLDP, length 82 [|LLDP] 19:37:59.130359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.130370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.130376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2067 1725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.130378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.130382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.130385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.130391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.130396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.130399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.130401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.130411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.130417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.140310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.140350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.140358 LLDP, length 82 [|LLDP] 19:37:59.140359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.140370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.140376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.140381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.140386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.140389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.140392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 206e b845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.140393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.140397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.140400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.140411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.140417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.150311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.150349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.150356 LLDP, length 82 [|LLDP] 19:37:59.150358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.150369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.150375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2076 5965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.150377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.150381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.150384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.150389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.150394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.150397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.150399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.150409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.150415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.160310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.160341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.160348 LLDP, length 82 [|LLDP] 19:37:59.160350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.160361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.160367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 207d fa85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.160369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.160373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.160376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.160381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.160386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.160389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.160391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.160401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.160407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.170310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.170340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.170347 LLDP, length 82 [|LLDP] 19:37:59.170348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.170360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.170366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2085 9ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.170368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.170373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.170377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.170380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.170382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.170386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.170390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.170400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.170405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.180312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.180348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.180356 LLDP, length 82 [|LLDP] 19:37:59.180357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.180369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.180375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 208d 3cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.180377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.180380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.180384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.180389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.180394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.180397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.180399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.180409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.180414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.190320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.190352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.190361 LLDP, length 82 [|LLDP] 19:37:59.190362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.190374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.190380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.190385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.190388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.190390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.190395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2094 dde5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.190397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.190401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.190404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.190415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.190421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.200314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.200347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.200354 LLDP, length 82 [|LLDP] 19:37:59.200356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.200367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.200374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 209c 7f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.200376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.200380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.200385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.200389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.200392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.200394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.200398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.200408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.200414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.210312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.210342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.210350 LLDP, length 82 [|LLDP] 19:37:59.210351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.210362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.210368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20a4 2025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.210370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.210374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.210377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.210382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.210387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.210390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.210392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.210402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.210408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.220310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.220338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.220345 LLDP, length 82 [|LLDP] 19:37:59.220346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.220358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.220364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.220369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.220374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.220377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.220379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20ab c145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.220381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.220385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.220388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.220398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.220404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.230311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.230341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.230348 LLDP, length 82 [|LLDP] 19:37:59.230350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.230361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.230367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20b3 6265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.230369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.230373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.230376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.230381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.230386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.230388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.230391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.230401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.230407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.240317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.240348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.240355 LLDP, length 82 [|LLDP] 19:37:59.240357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.240368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.240374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20bb 0385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.240376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.240380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.240384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.240389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.240393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.240396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.240399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.240409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.240415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.250313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.250348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.250355 LLDP, length 82 [|LLDP] 19:37:59.250357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.250368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.250374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20c2 a4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.250376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.250382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.250387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.250390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.250392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.250396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.250399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.250409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.250414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.260311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.260341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.260349 LLDP, length 82 [|LLDP] 19:37:59.260351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.260362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.260368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20ca 45c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.260370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.260374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.260377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.260382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.260387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.260390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.260392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.260402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.260407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.270316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.270346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.270354 LLDP, length 82 [|LLDP] 19:37:59.270355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.270366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.270372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.270378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.270381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.270383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.270388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20d1 e6e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.270389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.270393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.270397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.270407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.270413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.280313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.280351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.280359 LLDP, length 82 [|LLDP] 19:37:59.280360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.280371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.280377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20d9 8805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.280379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.280383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.280387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.280392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.280395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.280397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.280401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.280411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.280417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.290316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.290347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.290355 LLDP, length 82 [|LLDP] 19:37:59.290356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.290368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.290374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20e1 2925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.290376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.290380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.290383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.290388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.290393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.290396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.290398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.290408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.290414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.300316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.300350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.300357 LLDP, length 82 [|LLDP] 19:37:59.300359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.300370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.300377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.300382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.300387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.300390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.300392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20e8 ca45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.300394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.300398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.300401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.300412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.300417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.310315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.310345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.310353 LLDP, length 82 [|LLDP] 19:37:59.310354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.310365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.310371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20f0 6b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.310373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.310377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.310380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.310386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.310390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.310393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.310395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.310405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.310411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.320316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.320349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.320357 LLDP, length 82 [|LLDP] 19:37:59.320358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.320369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.320376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20f8 0c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.320378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.320382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.320385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.320390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.320395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.320397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.320399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.320410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.320416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.330313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.330343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.330350 LLDP, length 82 [|LLDP] 19:37:59.330352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.330362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.330368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20ff ada5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.330371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.330376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.330381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.330384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.330386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.330390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.330393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.330402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.330408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.340312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.340342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.340350 LLDP, length 82 [|LLDP] 19:37:59.340351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.340362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.340369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2107 4ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.340370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.340374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.340378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.340383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.340387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.340390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.340392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.340402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.340408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.350314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.350342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.350350 LLDP, length 82 [|LLDP] 19:37:59.350351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.350362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.350368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.350373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.350376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.350378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.350383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 210e efe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.350385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.350388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.350392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.350402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.350407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.360318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.360348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.360355 LLDP, length 82 [|LLDP] 19:37:59.360357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.360368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.360374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2116 9105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.360376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.360379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.360384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.360389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.360392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.360394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.360397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.360407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.360413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.370313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.370349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.370356 LLDP, length 82 [|LLDP] 19:37:59.370358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.370370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.370376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 211e 3225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.370378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.370381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.370385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.370389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.370394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.370397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.370399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.370409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.370415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.380313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.380341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.380349 LLDP, length 82 [|LLDP] 19:37:59.380350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.380361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.380367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.380372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.380377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.380380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.380382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2125 d345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.380384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.380388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.380391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.380401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.380407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.390317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.390357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.390365 LLDP, length 82 [|LLDP] 19:37:59.390366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.390378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.390384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 212d 7465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.390386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.390390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.390394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.390398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.390403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.390406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.390408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.390419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.390425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.400316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.400351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.400358 LLDP, length 82 [|LLDP] 19:37:59.400360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.400371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.400377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2135 1585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.400379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.400383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.400386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.400392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.400397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.400399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.400402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.400425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.400432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.410316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.410348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.410355 LLDP, length 82 [|LLDP] 19:37:59.410357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.410368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.410375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 213c b6a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.410377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.410382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.410386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.410389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.410392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.410395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.410399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.410410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.410415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.420315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.420352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.420360 LLDP, length 82 [|LLDP] 19:37:59.420361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.420372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.420378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2144 57c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.420380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.420384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.420387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.420392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.420397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.420400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.420402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.420412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.420418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.430320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.430358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.430366 LLDP, length 82 [|LLDP] 19:37:59.430367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.430379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.430385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.430390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.430392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.430395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.430400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 214b f8e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.430401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.430405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.430408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.430419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.430425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.440315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.440347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.440355 LLDP, length 82 [|LLDP] 19:37:59.440357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.440368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.440374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2153 9a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.440375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.440380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.440385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.440390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.440392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.440394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.440398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.440408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.440414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.450316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.450345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.450352 LLDP, length 82 [|LLDP] 19:37:59.450354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.450366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.450372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 215b 3b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.450374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.450378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.450382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.450387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.450392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.450395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.450397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.450407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.450412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.460314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.460351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.460358 LLDP, length 82 [|LLDP] 19:37:59.460360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.460371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.460377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.460382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.460387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.460389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.460391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2162 dc45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.460393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.460397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.460400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.460411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.460416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.470316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.470346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.470353 LLDP, length 82 [|LLDP] 19:37:59.470354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.470366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.470372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 216a 7d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.470374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.470378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.470382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.470387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.470391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.470394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.470396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.470406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.470411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.480318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.480347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.480355 LLDP, length 82 [|LLDP] 19:37:59.480356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.480367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.480373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2172 1e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.480375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.480378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.480382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.480387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.480392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.480394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.480397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.480407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.480413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.490317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.490352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.490360 LLDP, length 82 [|LLDP] 19:37:59.490361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.490373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.490378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2179 bfa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.490380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.490385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.490390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.490393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.490395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.490399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.490402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.490412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.490417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.500313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.500345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.500352 LLDP, length 82 [|LLDP] 19:37:59.500354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.500365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.500371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2181 60c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.500373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.500377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.500380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.500385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.500390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.500393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.500395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.500406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.500412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.510316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.510347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.510355 LLDP, length 82 [|LLDP] 19:37:59.510356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.510368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.510374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.510379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.510382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.510384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.510388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2189 01e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.510390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.510394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.510397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.510408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.510414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.520321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.520350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.520358 LLDP, length 82 [|LLDP] 19:37:59.520359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.520370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.520376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2190 a305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.520378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.520382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.520387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.520391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.520394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.520396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.520400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.520409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.520416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.530317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.530353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.530361 LLDP, length 82 [|LLDP] 19:37:59.530362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.530374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.530380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2198 4425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.530382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.530386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.530389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.530395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.530399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.530402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.530404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.530414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.530420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.540316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.540352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.540359 LLDP, length 82 [|LLDP] 19:37:59.540361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.540372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.540378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.540383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.540388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.540391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.540393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 219f e545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.540395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.540400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.540403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.540413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.540419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.550316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.550356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.550363 LLDP, length 82 [|LLDP] 19:37:59.550365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.550376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.550382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21a7 8665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.550384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.550388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.550391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.550396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.550401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.550403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.550406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.550416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.550421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.560316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.560352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.560359 LLDP, length 82 [|LLDP] 19:37:59.560360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.560372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.560378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21af 2785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.560380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.560384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.560387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.560392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.560397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.560400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.560402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.560412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.560418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.570317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.570347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.570355 LLDP, length 82 [|LLDP] 19:37:59.570356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.570368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.570374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21b6 c8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.570376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.570382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.570387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.570389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.570391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.570395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.570398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.570408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.570414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.580320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.580351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.580358 LLDP, length 82 [|LLDP] 19:37:59.580360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.580371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.580377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21be 69c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.580379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.580383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.580386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.580391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.580396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.580399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.580401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.580411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.580417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.590317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.590348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.590355 LLDP, length 82 [|LLDP] 19:37:59.590357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.590368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.590374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.590379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.590382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.590385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.590389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21c6 0ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.590391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.590395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.590398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.590408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.590414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.600318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.600347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.600354 LLDP, length 82 [|LLDP] 19:37:59.600355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.600367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.600373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21cd ac05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.600375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.600379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.600383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.600388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.600391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.600393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.600397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.600406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.600413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.610319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.610351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.610358 LLDP, length 82 [|LLDP] 19:37:59.610360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.610372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.610378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21d5 4d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.610380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.610383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.610387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.610392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.610397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.610400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.610402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.610412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.610418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.620317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.620347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.620354 LLDP, length 82 [|LLDP] 19:37:59.620356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.620367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.620373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.620378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.620383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.620386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.620388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21dc ee45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.620390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.620393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.620397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.620407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.620413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.630320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.630349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.630357 LLDP, length 82 [|LLDP] 19:37:59.630358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.630370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.630376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21e4 8f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.630378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.630381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.630385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.630389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.630394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.630397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.630399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.630409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.630415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.640319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.640347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.640354 LLDP, length 82 [|LLDP] 19:37:59.640356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.640367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.640373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21ec 3085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.640375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.640379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.640382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.640387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.640392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.640394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.640396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.640406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.640412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.650317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.650345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.650353 LLDP, length 82 [|LLDP] 19:37:59.650354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.650365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.650371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21f3 d1a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.650373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.650378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.650383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.650385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.650388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.650391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.650395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.650404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.650410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.660318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.660346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.660353 LLDP, length 82 [|LLDP] 19:37:59.660354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.660366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.660372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21fb 72c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.660374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.660377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.660381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.660386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.660391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.660394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.660396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.660406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.660413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.670319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.670356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.670363 LLDP, length 82 [|LLDP] 19:37:59.670365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.670376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.670382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.670399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.670403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.670405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.670411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2203 13e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.670413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.670416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.670420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.670430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.670435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.680351 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.680404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.680413 LLDP, length 82 [|LLDP] 19:37:59.680415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.680428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.680436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 220a b505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.680439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.680442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.680449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.680455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.680459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.680461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.680465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.680479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.680486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.690324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.690363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.690370 LLDP, length 82 [|LLDP] 19:37:59.690372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.690383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.690390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2212 5625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.690392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.690396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.690400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.690405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.690409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.690412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.690415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.690426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.690431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.700318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.700356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.700363 LLDP, length 82 [|LLDP] 19:37:59.700365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.700376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.700382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.700387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.700391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.700394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.700396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2219 f745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.700399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.700402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.700406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.700416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.700422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.710317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.710356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.710364 LLDP, length 82 [|LLDP] 19:37:59.710365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.710377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.710383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2221 9865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.710385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.710388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.710392 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.710398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.710402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.710405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.710407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.710418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.710424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.720319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.720352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.720360 LLDP, length 82 [|LLDP] 19:37:59.720361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.720373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.720379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2229 3985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.720381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.720385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.720388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.720394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.720398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.720401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.720404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.720414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.720419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.730319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.730349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.730357 LLDP, length 82 [|LLDP] 19:37:59.730358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.730370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.730376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2230 daa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.730378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.730383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.730388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.730391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.730393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.730397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.730401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.730411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.730417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.740321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.740361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.740368 LLDP, length 82 [|LLDP] 19:37:59.740370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.740381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.740387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2238 7bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.740389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.740393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.740396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.740401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.740406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.740408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.740410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.740421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.740426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.750319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.750356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.750363 LLDP, length 82 [|LLDP] 19:37:59.750365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.750376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.750381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.750386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.750389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.750391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.750396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2240 1ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.750399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.750402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.750406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.750416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.750422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.760319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.760349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.760357 LLDP, length 82 [|LLDP] 19:37:59.760358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.760369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.760376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2247 be05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.760377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.760381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.760386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.760391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.760393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.760396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.760399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.760409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.760415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.770318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.770354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.770362 LLDP, length 82 [|LLDP] 19:37:59.770363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.770376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.770382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 224f 5f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.770384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.770387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.770391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.770396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.770401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.770403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.770406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.770416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.770422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.780317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.780354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.780361 LLDP, length 82 [|LLDP] 19:37:59.780363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.780374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.780380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.780385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.780390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.780392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.780395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2257 0045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.780396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.780400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.780403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.780413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.780418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.790322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.790352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.790360 LLDP, length 82 [|LLDP] 19:37:59.790361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.790372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.790378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 225e a165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.790380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.790383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.790387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.790392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.790397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.790399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.790402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.790411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.790417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.800319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.800348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.800356 LLDP, length 82 [|LLDP] 19:37:59.800357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.800368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.800375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2266 4285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.800377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.800381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.800384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.800389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.800394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.800396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.800398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.800408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.800414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.810317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.810345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.810352 LLDP, length 82 [|LLDP] 19:37:59.810354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.810365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.810371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 226d e3a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.810373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.810378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.810383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.810386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.810388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.810392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.810395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.810405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.810411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.820320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.820353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.820360 LLDP, length 82 [|LLDP] 19:37:59.820362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.820373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.820379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2275 84c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.820381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.820385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.820388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.820393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.820398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.820401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.820403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.820414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.820419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.830320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.830355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.830362 LLDP, length 82 [|LLDP] 19:37:59.830364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.830375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.830381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.830386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.830389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.830391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.830396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 227d 25e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.830398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.830402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.830405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.830415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.830421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.840321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.840357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.840364 LLDP, length 82 [|LLDP] 19:37:59.840366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.840377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.840382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2284 c705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.840384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.840388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.840393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.840398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.840401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.840403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.840407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.840417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.840423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.850322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.850359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.850367 LLDP, length 82 [|LLDP] 19:37:59.850368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.850380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.850385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 228c 6825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.850387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.850391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.850394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.850399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.850404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.850407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.850409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.850419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.850426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.860325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.860354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.860361 LLDP, length 82 [|LLDP] 19:37:59.860363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.860374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.860380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.860385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.860390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.860392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.860394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2294 0945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.860396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.860400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.860404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.860413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.860419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.870321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.870350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.870357 LLDP, length 82 [|LLDP] 19:37:59.870359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.870370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.870376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 229b aa65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.870378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.870382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.870386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.870391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.870395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.870398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.870400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.870410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.870415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.880320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.880350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.880357 LLDP, length 82 [|LLDP] 19:37:59.880359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.880370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.880376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22a3 4b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.880379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.880382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.880386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.880391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.880396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.880398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.880400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.880410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.880416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.890335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.890373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.890381 LLDP, length 82 [|LLDP] 19:37:59.890383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.890394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.890401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22aa eca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.890403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.890409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.890414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.890417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.890419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.890423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.890426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.890436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.890442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.900322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.900353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.900360 LLDP, length 82 [|LLDP] 19:37:59.900362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.900373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.900379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22b2 8dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.900381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.900385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.900388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.900393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.900398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.900401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.900403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.900413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.900418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.910324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.910361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.910369 LLDP, length 82 [|LLDP] 19:37:59.910370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.910381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.910387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.910392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.910395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.910397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.910402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22ba 2ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.910404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.910408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.910411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.910421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.910427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.920322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.920354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.920362 LLDP, length 82 [|LLDP] 19:37:59.920363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.920374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.920381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22c1 d005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.920383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.920386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.920392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.920396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.920399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.920401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.920405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.920415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.920421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.930323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.930362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.930370 LLDP, length 82 [|LLDP] 19:37:59.930372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.930383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.930389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22c9 7125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.930392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.930395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.930399 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.930404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.930409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.930412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.930414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.930424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.930430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.940323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.940361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.940369 LLDP, length 82 [|LLDP] 19:37:59.940370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.940381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.940387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.940392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.940397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.940400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.940402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22d1 1245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.940404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.940408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.940411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.940421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.940427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.950323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.950352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.950359 LLDP, length 82 [|LLDP] 19:37:59.950361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.950372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.950378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22d8 b365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.950380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.950384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.950387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.950392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.950396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.950399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.950401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.950412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.950417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.960320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.960349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.960356 LLDP, length 82 [|LLDP] 19:37:59.960358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.960369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.960375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22e0 5485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.960377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.960381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.960384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.960389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.960394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.960398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.960400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.960410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.960416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.970337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.970382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.970391 LLDP, length 82 [|LLDP] 19:37:59.970392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.970405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.970413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22e7 f5a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.970415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.970421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.970426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.970430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.970432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.970435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.970439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.970451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.970459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.980338 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.980379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.980387 LLDP, length 82 [|LLDP] 19:37:59.980389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.980401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.980408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22ef 96c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.980410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.980414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.980417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.980422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.980427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.980430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.980433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.980444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.980449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.990341 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.990386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.990395 LLDP, length 82 [|LLDP] 19:37:59.990397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.990409 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.990415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.990421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.990424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.990427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.990432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22f7 37e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.990434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.990438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.990441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.990453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.990459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.000337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.000375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.000383 LLDP, length 82 [|LLDP] 19:38:00.000385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.000397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.000404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22fe d905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.000406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.000410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.000415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.000420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.000423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.000425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.000429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.000440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.000446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.010330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.010373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.010381 LLDP, length 82 [|LLDP] 19:38:00.010383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.010394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.010401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2306 7a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.010403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.010406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.010410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.010415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.010420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.010423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.010425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.010435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.010442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.020329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.020369 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.020378 LLDP, length 82 [|LLDP] 19:38:00.020379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.020391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.020398 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.020403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.020408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.020411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.020413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 230e 1b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.020415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.020419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.020422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.020433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.020440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.030333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.030368 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.030376 LLDP, length 82 [|LLDP] 19:38:00.030378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.030390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.030396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2315 bc65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.030398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.030401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.030405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.030411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.030415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.030418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.030420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.030432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.030438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.040349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.040394 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.040403 LLDP, length 82 [|LLDP] 19:38:00.040405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.040417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.040425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 231d 5d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.040427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.040431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.040435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.040440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.040445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.040448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.040450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.040463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.040469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.050335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.050373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.050382 LLDP, length 82 [|LLDP] 19:38:00.050383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.050395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.050402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2324 fea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.050404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.050409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.050414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.050418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.050420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.050424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.050427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.050438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.050444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.060332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.060367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.060375 LLDP, length 82 [|LLDP] 19:38:00.060377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.060388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.060394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 232c 9fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.060396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.060400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.060404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.060408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.060413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.060416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.060418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.060429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.060434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.070330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.070365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.070374 LLDP, length 82 [|LLDP] 19:38:00.070375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.070387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.070393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.070399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.070402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.070404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.070409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2334 40e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.070412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.070415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.070419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.070429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.070435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.080329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.080367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.080375 LLDP, length 82 [|LLDP] 19:38:00.080377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.080388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.080394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 233b e205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.080396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.080400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.080405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.080410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.080412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.080415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.080418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.080428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.080434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.090359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.090419 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.090428 LLDP, length 82 [|LLDP] 19:38:00.090430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.090444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.090453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2343 8325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.090456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.090460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.090463 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.090469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.090475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.090478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.090480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.090494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.090501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.100341 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.100382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.100390 LLDP, length 82 [|LLDP] 19:38:00.100392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.100404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.100411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.100416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.100421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.100425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.100427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 234b 2445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.100429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.100433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.100436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.100448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.100455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.110331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.110366 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.110374 LLDP, length 82 [|LLDP] 19:38:00.110375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.110387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.110393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2352 c565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.110395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.110399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.110402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.110407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.110412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.110416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.110418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.110429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.110435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.120345 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.120389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.120397 LLDP, length 82 [|LLDP] 19:38:00.120399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.120411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.120419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 235a 6685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.120421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.120425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.120434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.120440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.120445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.120448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.120451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.120462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.120468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.130347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.130399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.130409 LLDP, length 82 [|LLDP] 19:38:00.130410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.130422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.130431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2362 07a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.130433 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.130438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.130444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.130447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.130449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.130453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.130457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.130469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.130475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.140342 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.140384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.140393 LLDP, length 82 [|LLDP] 19:38:00.140395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.140407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.140414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2369 a8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.140417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.140420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.140424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.140429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.140434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.140437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.140439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.140451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.140457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.150335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.150372 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.150380 LLDP, length 82 [|LLDP] 19:38:00.150382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.150393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.150399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.150405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.150408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.150410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.150415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2371 49e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.150417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.150421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.150424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.150435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.150442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.160349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.160399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.160408 LLDP, length 82 [|LLDP] 19:38:00.160410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.160422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.160430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2378 eb05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.160432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.160436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.160442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.160447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.160451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.160453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.160457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.160469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.160476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.170339 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.170383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.170392 LLDP, length 82 [|LLDP] 19:38:00.170394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.170406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.170413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2380 8c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.170415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.170419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.170422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.170427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.170432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.170435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.170438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.170449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.170455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.180331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.180367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.180375 LLDP, length 82 [|LLDP] 19:38:00.180377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.180388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.180395 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.180401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.180406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.180409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.180411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2388 2d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.180413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.180417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.180421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.180432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.180438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.190352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.190393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.190401 LLDP, length 82 [|LLDP] 19:38:00.190403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.190421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.190428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 238f ce65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.190430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.190433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.190437 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.190443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.190448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.190451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.190454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.190465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.190471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.200337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.200371 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.200378 LLDP, length 82 [|LLDP] 19:38:00.200380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.200392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.200399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2397 6f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.200400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.200404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.200408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.200413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.200418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.200421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.200423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.200434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.200440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.210334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.210364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.210372 LLDP, length 82 [|LLDP] 19:38:00.210374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.210385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.210391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 239f 10a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.210393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.210398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.210403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.210406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.210408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.210412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.210415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.210425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.210430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.220332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.220375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.220383 LLDP, length 82 [|LLDP] 19:38:00.220385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.220397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.220404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23a6 b1c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.220406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.220409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.220413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.220418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.220422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.220425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.220427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.220438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.220444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.230357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.230418 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.230428 LLDP, length 82 [|LLDP] 19:38:00.230430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.230443 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.230451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.230458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.230461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.230463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.230471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23ae 52e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.230473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.230477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.230481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.230495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.230502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.240329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.240358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.240366 LLDP, length 82 [|LLDP] 19:38:00.240367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.240379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.240385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23b5 f405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.240388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.240391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.240396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.240401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.240404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.240406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.240410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.240420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.240426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.250325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.250360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.250368 LLDP, length 82 [|LLDP] 19:38:00.250369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.250380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.250387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23bd 9525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.250389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.250392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.250396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.250401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.250405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.250408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.250410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.250420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.250426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.260324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.260355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.260363 LLDP, length 82 [|LLDP] 19:38:00.260364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.260376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.260382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.260386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.260391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.260394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.260396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23c5 3645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.260399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.260402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.260406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.260415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.260421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.270333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.270368 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.270376 LLDP, length 82 [|LLDP] 19:38:00.270377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.270389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.270395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23cc d765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.270397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.270400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.270404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.270409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.270413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.270417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.270419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.270428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.270434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.280324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.280357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.280364 LLDP, length 82 [|LLDP] 19:38:00.280365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.280377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.280383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23d4 7885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.280385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.280389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.280392 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.280397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.280402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.280405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.280407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.280416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.280422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.290325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.290350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.290357 LLDP, length 82 [|LLDP] 19:38:00.290359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.290371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.290376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23dc 19a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.290378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.290383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.290388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.290391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.290393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.290396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.290400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.290409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.290415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.300324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.300348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.300354 LLDP, length 82 [|LLDP] 19:38:00.300356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.300367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.300373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23e3 bac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.300375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.300378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.300382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.300387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.300391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.300394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.300396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.300405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.300411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.310324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.310346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.310353 LLDP, length 82 [|LLDP] 19:38:00.310355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.310366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.310372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.310377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.310380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.310382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.310386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23eb 5be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.310388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.310392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.310395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.310404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.310410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.320324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.320348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.320355 LLDP, length 82 [|LLDP] 19:38:00.320357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.320368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.320374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23f2 fd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.320376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.320379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.320384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.320389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.320392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.320394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.320397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.320407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.320412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.333284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.333310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.333317 LLDP, length 82 [|LLDP] 19:38:00.333319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.333330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.333335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23fa 9e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.333337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.333341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.333344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.333349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.333354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.333357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.333359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.333368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.333373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.340326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.340352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.340359 LLDP, length 82 [|LLDP] 19:38:00.340360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.340372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.340377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.340382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.340387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.340390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.340392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2402 3f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.340394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.340397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.340401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.340410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.340416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.350327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.350359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.350366 LLDP, length 82 [|LLDP] 19:38:00.350367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.350379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.350385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2409 e065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.350387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.350391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.350394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.350399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.350404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.350407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.350409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.350418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.350424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.360324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.360349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.360356 LLDP, length 82 [|LLDP] 19:38:00.360357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.360369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.360375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2411 8185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.360377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.360381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.360384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.360389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.360394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.360397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.360399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.360408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.360414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.370329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.370360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.370368 LLDP, length 82 [|LLDP] 19:38:00.370370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.370381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.370388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2419 22a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.370390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.370395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.370399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.370402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.370405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.370408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.370412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.370422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.370429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.380330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.380359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.380366 LLDP, length 82 [|LLDP] 19:38:00.380367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.380379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.380385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2420 c3c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.380387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.380390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.380394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.380398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.380403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.380406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.380408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.380418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.380423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.393963 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.394002 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.394010 LLDP, length 82 [|LLDP] 19:38:00.394011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.394023 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.394029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.394036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.394039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.394041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.394047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2428 64e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.394049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.394053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.394056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.394068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.394075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.400329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.400358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.400366 LLDP, length 82 [|LLDP] 19:38:00.400368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.400379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.400385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2430 0605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.400387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.400390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.400396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.400401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.400403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.400406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.400409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.400431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.400438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.410333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.410363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.410371 LLDP, length 82 [|LLDP] 19:38:00.410372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.410384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.410390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2437 a725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.410392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.410395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.410399 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.410404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.410409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.410411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.410413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.410424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.410430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.420330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.420358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.420365 LLDP, length 82 [|LLDP] 19:38:00.420367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.420378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.420384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.420389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.420394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.420396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.420399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 243f 4845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.420401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.420404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.420408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.420418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.420423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.430328 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.430354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.430361 LLDP, length 82 [|LLDP] 19:38:00.430362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.430373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.430379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2446 e965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.430381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.430384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.430388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.430393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.430397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.430400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.430402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.430412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.430418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.440333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.440362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.440369 LLDP, length 82 [|LLDP] 19:38:00.440371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.440382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.440388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 244e 8a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.440390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.440394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.440397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.440403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.440407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.440410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.440412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.440422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.440428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.450330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.450359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.450366 LLDP, length 82 [|LLDP] 19:38:00.450368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.450379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.450385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2456 2ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.450387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.450392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.450396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.450399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.450401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.450405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.450408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.450418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.450424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.460335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.460378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.460386 LLDP, length 82 [|LLDP] 19:38:00.460387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.460399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.460405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 245d ccc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.460407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.460411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.460414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.460420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.460425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.460428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.460430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.460441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.460447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.470326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.470357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.470364 LLDP, length 82 [|LLDP] 19:38:00.470366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.470377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.470383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.470388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.470391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.470393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.470398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2465 6de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.470400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.470403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.470407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.470416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.470422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.480325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.480350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.480357 LLDP, length 82 [|LLDP] 19:38:00.480359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.480370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.480375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 246d 0f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.480377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.480381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.480385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.480390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.480393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.480395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.480398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.480407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.480412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.490324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.490347 LLDP, length 82 [|LLDP] 19:38:00.490349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.490361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.490366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2474 b025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.490368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.490372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.490376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.490380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.490385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.490388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.490390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.490396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.490405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.490410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.500323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.500351 LLDP, length 82 [|LLDP] 19:38:00.500353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.500366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.500371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.500376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.500380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.500383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.500385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.500391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 247c 5145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.500393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.500396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.500400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.500410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.500415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.510326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.510346 LLDP, length 82 [|LLDP] 19:38:00.510348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.510360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.510365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2483 f265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.510367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.510370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.510374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.510379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.510384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.510386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.510388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.510394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.510403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.510408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.520327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.520355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.520363 LLDP, length 82 [|LLDP] 19:38:00.520364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.520375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.520381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 248b 9385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.520383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.520386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.520390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.520395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.520399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.520402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.520404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.520413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.520418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.530326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.530353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.530360 LLDP, length 82 [|LLDP] 19:38:00.530362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.530373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.530378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2493 34a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.530380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.530385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.530390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.530405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.530408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.530412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.530416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.530425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.530431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.540357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.540405 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.540414 LLDP, length 82 [|LLDP] 19:38:00.540416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.540428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.540437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 249a d5c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.540439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.540443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.540447 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.540453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.540459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.540463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.540465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.540479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.540487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.550335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.550365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.550372 LLDP, length 82 [|LLDP] 19:38:00.550374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.550385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.550391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.550396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.550399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.550401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.550406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24a2 76e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.550408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.550412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.550415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.550425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.550431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.560329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.560356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.560363 LLDP, length 82 [|LLDP] 19:38:00.560365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.560376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.560382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24aa 1805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.560383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.560387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.560392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.560397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.560400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.560402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.560406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.560415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.560421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.570329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.570353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.570360 LLDP, length 82 [|LLDP] 19:38:00.570361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.570372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.570378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24b1 b925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.570380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.570383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.570387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.570391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.570396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.570399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.570401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.570410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.570416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.580326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.580355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.580362 LLDP, length 82 [|LLDP] 19:38:00.580363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.580374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.580381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.580385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.580390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.580392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.580395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24b9 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.580397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.580400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.580404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.580413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.580419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.590327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.590349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.590356 LLDP, length 82 [|LLDP] 19:38:00.590357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.590369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.590374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24c0 fb65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.590376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.590379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.590383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.590388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.590393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.590395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.590397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.590406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.590412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.600326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.600350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.600357 LLDP, length 82 [|LLDP] 19:38:00.600358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.600369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.600375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24c8 9c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.600377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.600381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.600384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.600389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.600394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.600397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.600399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.600408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.600414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.610327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.610347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.610354 LLDP, length 82 [|LLDP] 19:38:00.610356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.610367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.610373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24d0 3da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.610375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.610380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.610385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.610387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.610390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.610393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.610396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.610405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.610411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.620326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.620347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.620354 LLDP, length 82 [|LLDP] 19:38:00.620355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.620366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.620371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24d7 dec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.620373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.620377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.620380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.620385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.620389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.620392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.620394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.620403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.620409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.630326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.630348 LLDP, length 82 [|LLDP] 19:38:00.630350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.630362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.630367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.630372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.630375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.630377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.630383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.630388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24df 7fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.630390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.630393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.630396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.630405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.630411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.640328 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.640356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.640363 LLDP, length 82 [|LLDP] 19:38:00.640365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.640376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.640381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24e7 2105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.640383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.640387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.640391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.640396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.640398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.640400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.640404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.640412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.640419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.650330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.650360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.650367 LLDP, length 82 [|LLDP] 19:38:00.650369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.650380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.650385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24ee c225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.650387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.650391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.650395 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.650399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.650404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.650407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.650409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.650418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.650424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.660332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.660358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.660365 LLDP, length 82 [|LLDP] 19:38:00.660366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.660378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.660383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.660388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.660393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.660396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.660398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24f6 6345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.660400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.660404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.660407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.660417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.660422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.670345 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.670381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.670389 LLDP, length 82 [|LLDP] 19:38:00.670391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.670402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.670409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24fe 0465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.670411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.670414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.670418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.670423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.670428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.670432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.670434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.670444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.670450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.680335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.680366 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.680374 LLDP, length 82 [|LLDP] 19:38:00.680375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.680386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.680393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2505 a585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.680394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.680398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.680401 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.680407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.680411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.680414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.680416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.680426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.680432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.690339 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.690378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.690387 LLDP, length 82 [|LLDP] 19:38:00.690388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.690400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.690407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 250d 46a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.690409 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.690414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.690418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.690421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.690424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.690427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.690431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.690441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.690447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.700329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.700352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.700359 LLDP, length 82 [|LLDP] 19:38:00.700361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.700372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.700378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2514 e7c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.700380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.700384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.700387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.700392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.700397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.700400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.700402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.700411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.700417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.710325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.710348 LLDP, length 82 [|LLDP] 19:38:00.710350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.710362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.710367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.710372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.710374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.710377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.710382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.710387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 251c 88e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.710389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.710392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.710396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.710405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.710410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.720329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.720359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.720365 LLDP, length 82 [|LLDP] 19:38:00.720367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.720378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.720384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2524 2a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.720385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.720389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.720394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.720398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.720401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.720403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.720406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.720415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.720421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.730329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.730352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.730359 LLDP, length 82 [|LLDP] 19:38:00.730361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.730371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.730377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 252b cb25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.730379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.730383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.730386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.730391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.730395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.730398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.730400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.730409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.730415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.740330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.740358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.740365 LLDP, length 82 [|LLDP] 19:38:00.740366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.740378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.740383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.740388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.740392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.740395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.740398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2533 6c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.740400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.740403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.740407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.740415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.740421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.750331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.750362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.750369 LLDP, length 82 [|LLDP] 19:38:00.750370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.750382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.750388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 253b 0d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.750390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.750394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.750397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.750402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.750407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.750409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.750412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.750421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.750426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.760333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.760365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.760372 LLDP, length 82 [|LLDP] 19:38:00.760374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.760385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.760391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2542 ae85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.760393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.760396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.760400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.760405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.760409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.760412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.760415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.760424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.760430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.770332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.770356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.770364 LLDP, length 82 [|LLDP] 19:38:00.770365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.770376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.770382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 254a 4fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.770384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.770389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.770394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.770397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.770399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.770403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.770406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.770416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.770421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.780350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.780388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.780396 LLDP, length 82 [|LLDP] 19:38:00.780398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.780410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.780417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2551 f0c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.780419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.780423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.780426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.780431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.780436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.780439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.780441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.780452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.780459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.790332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.790356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.790363 LLDP, length 82 [|LLDP] 19:38:00.790365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.790376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.790382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.790387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.790389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.790391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.790397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2559 91e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.790398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.790402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.790405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.790414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.790420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.800331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.800363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.800370 LLDP, length 82 [|LLDP] 19:38:00.800371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.800383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.800389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2561 3305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.800391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.800394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.800399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.800404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.800407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.800409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.800412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.800421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.800427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.810330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.810359 LLDP, length 82 [|LLDP] 19:38:00.810361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.810373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.810379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2568 d425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.810381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.810384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.810388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.810393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.810397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.810400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.810402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.810408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.810417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.810422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.820330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.820358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.820365 LLDP, length 82 [|LLDP] 19:38:00.820366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.820377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.820383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.820388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.820392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.820395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.820397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2570 7545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.820399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.820403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.820406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.820415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.820420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.830336 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.830357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.830364 LLDP, length 82 [|LLDP] 19:38:00.830366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.830377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.830383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2578 1665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.830384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.830388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.830391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.830396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.830400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.830403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.830405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.830413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.830419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.840330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.840359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.840366 LLDP, length 82 [|LLDP] 19:38:00.840367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.840378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.840384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 257f b785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.840386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.840390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.840393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.840398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.840402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.840405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.840407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.840416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.840422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.850329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.850360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.850368 LLDP, length 82 [|LLDP] 19:38:00.850369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.850380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.850386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2587 58a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.850388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.850393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.850398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.850401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.850402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.850406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.850410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.850418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.850423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.860331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.860361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.860368 LLDP, length 82 [|LLDP] 19:38:00.860370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.860381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.860387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 258e f9c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.860389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.860393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.860396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.860401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.860406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.860409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.860411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.860421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.860426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.870332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.870357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.870365 LLDP, length 82 [|LLDP] 19:38:00.870366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.870378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.870384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.870389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.870391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.870393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.870398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2596 9ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.870400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.870404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.870407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.870417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.870423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.880331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.880354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.880361 LLDP, length 82 [|LLDP] 19:38:00.880362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.880373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.880379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 259e 3c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.880381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.880385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.880389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.880394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.880397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.880399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.880402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.880411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.880416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.890346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.890378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.890386 LLDP, length 82 [|LLDP] 19:38:00.890388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.890399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.890405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25a5 dd25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.890408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.890411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.890415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.890420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.890425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.890428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.890430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.890440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.890446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.900333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.900356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.900364 LLDP, length 82 [|LLDP] 19:38:00.900366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.900377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.900382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.900387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.900392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.900395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.900397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25ad 7e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.900399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.900403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.900406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.900415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.900420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.910331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.910353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.910360 LLDP, length 82 [|LLDP] 19:38:00.910361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.910372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.910378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25b5 1f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.910380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.910384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.910387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.910392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.910396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.910399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.910401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.910411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.910416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.920330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.920358 LLDP, length 82 [|LLDP] 19:38:00.920360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.920372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.920377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25bc c085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.920379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.920383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.920386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.920391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.920396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.920398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.920401 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.920407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.920415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.920421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.930331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.930353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.930360 LLDP, length 82 [|LLDP] 19:38:00.930361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.930372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.930378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25c4 61a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.930380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.930384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.930389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.930392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.930394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.930398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.930401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.930410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.930416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.940333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.940363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.940370 LLDP, length 82 [|LLDP] 19:38:00.940371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.940383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.940388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25cc 02c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.940390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.940393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.940397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.940401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.940406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.940409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.940411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.940420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.940425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.950331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.950354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.950360 LLDP, length 82 [|LLDP] 19:38:00.950362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.950373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.950378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.950383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.950386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.950388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.950392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25d3 a3e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.950394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.950398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.950401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.950410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.950416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.960332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.960363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.960370 LLDP, length 82 [|LLDP] 19:38:00.960372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.960383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.960389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25db 4505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.960391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.960394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.960399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.960404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.960407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.960409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.960412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.960422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.960427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.970334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.970358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.970365 LLDP, length 82 [|LLDP] 19:38:00.970366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.970377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.970383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25e2 e625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.970385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.970389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.970392 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.970397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.970401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.970404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.970406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.970415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.970421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.980334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.980365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.980373 LLDP, length 82 [|LLDP] 19:38:00.980374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.980385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.980390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.980395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.980400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.980403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.980405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25ea 8745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.980407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.980410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.980413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.980423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.980429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.990334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.990357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.990364 LLDP, length 82 [|LLDP] 19:38:00.990366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.990377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.990383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25f2 2865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.990384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.990388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.990391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.990396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.990401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.990403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.990405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.990415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.990421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.000345 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.000367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.000374 LLDP, length 82 [|LLDP] 19:38:01.000376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.000387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.000392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25f9 c985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.000394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.000397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.000401 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.000406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.000410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.000413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.000415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.000425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.000430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.010331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.010353 LLDP, length 82 [|LLDP] 19:38:01.010354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.010367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.010372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2601 6aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.010374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.010379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.010384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.010386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.010389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.010394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.010398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.010402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.010410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.010416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.020333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.020355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.020362 LLDP, length 82 [|LLDP] 19:38:01.020363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.020374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.020380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2609 0bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.020382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.020386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.020389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.020394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.020398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.020401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.020403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.020412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.020418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.030333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.030355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.030361 LLDP, length 82 [|LLDP] 19:38:01.030363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.030374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.030380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.030384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.030387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.030389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.030394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2610 ace5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.030396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.030399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.030403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.030411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.030416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.040333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.040354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.040361 LLDP, length 82 [|LLDP] 19:38:01.040362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.040373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.040379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2618 4e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.040380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.040384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.040389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.040393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.040396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.040398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.040401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.040410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.040416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.050332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.050363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.050370 LLDP, length 82 [|LLDP] 19:38:01.050371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.050382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.050388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 261f ef25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.050390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.050394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.050397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.050402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.050406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.050409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.050411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.050420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.050425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.060335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.060367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.060374 LLDP, length 82 [|LLDP] 19:38:01.060376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.060387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.060393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.060398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.060402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.060405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.060407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2627 9045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.060409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.060413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.060416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.060425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.060431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.070335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.070359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.070367 LLDP, length 82 [|LLDP] 19:38:01.070368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.070379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.070384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 262f 3165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.070386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.070390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.070393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.070398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.070403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.070406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.070408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.070417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.070422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.080334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.080365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.080373 LLDP, length 82 [|LLDP] 19:38:01.080375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.080386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.080392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2636 d285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.080394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.080397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.080401 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.080406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.080410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.080413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.080415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.080424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.080430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.090335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.090358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.090365 LLDP, length 82 [|LLDP] 19:38:01.090366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.090377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.090383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 263e 73a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.090385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.090390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.090394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.090397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.090399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.090403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.090406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.090415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.090420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.100333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.100356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.100362 LLDP, length 82 [|LLDP] 19:38:01.100364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.100375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.100380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2646 14c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.100382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.100386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.100389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.100394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.100398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.100401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.100403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.100411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.100417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.110337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.110358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.110364 LLDP, length 82 [|LLDP] 19:38:01.110366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.110377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.110383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.110388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.110391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.110393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.110397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 264d b5e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.110399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.110402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.110406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.110414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.110419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.120344 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.120373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.120381 LLDP, length 82 [|LLDP] 19:38:01.120383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.120394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.120399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2655 5705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.120401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.120405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.120410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.120414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.120417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.120419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.120423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.120433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.120438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.130359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.130399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.130408 LLDP, length 82 [|LLDP] 19:38:01.130410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.130422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.130429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 265c f825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.130431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.130434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.130438 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.130443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.130448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.130451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.130453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.130464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.130470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.140365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.140416 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.140425 LLDP, length 82 [|LLDP] 19:38:01.140427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.140439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.140446 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.140453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.140458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.140461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.140464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2664 9945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.140466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.140469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.140473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.140486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.140493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.150353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.150395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.150403 LLDP, length 82 [|LLDP] 19:38:01.150405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.150416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.150422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 266c 3a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.150425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.150428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.150432 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.150437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.150442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.150445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.150447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.150459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.150465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.160339 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.160374 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.160382 LLDP, length 82 [|LLDP] 19:38:01.160384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.160395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.160401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2673 db85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.160403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.160406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.160410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.160415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.160419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.160422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.160424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.160434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.160439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.170348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.170380 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.170388 LLDP, length 82 [|LLDP] 19:38:01.170389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.170400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.170406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 267b 7ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.170408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.170413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.170418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.170421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.170423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.170427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.170430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.170440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.170445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.180340 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.180371 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.180379 LLDP, length 82 [|LLDP] 19:38:01.180380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.180391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.180398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2683 1dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.180400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.180404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.180407 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.180412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.180416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.180420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.180422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.180432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.180437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.190338 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.190364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.190371 LLDP, length 82 [|LLDP] 19:38:01.190373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.190384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.190389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.190394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.190397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.190399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.190404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 268a bee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.190406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.190410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.190413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.190423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.190428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.200373 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.200424 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.200433 LLDP, length 82 [|LLDP] 19:38:01.200435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.200447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.200456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2692 6005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.200459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.200462 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.200468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.200474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.200477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.200479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.200483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.200495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.200501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.210395 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.210466 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.210477 LLDP, length 82 [|LLDP] 19:38:01.210479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.210492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.210503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 269a 0125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.210505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.210509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.210513 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.210520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.210526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.210530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.210532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.210548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.210555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.220384 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.220455 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.220465 LLDP, length 82 [|LLDP] 19:38:01.220467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.220479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.220490 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.220496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.220502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.220505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.220508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26a1 a245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.220510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.220514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.220518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.220532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.220540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.230399 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.230474 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.230485 LLDP, length 82 [|LLDP] 19:38:01.230487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.230500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.230511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26a9 4365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.230514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.230518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.230521 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.230528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.230535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.230539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.230541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.230558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.230565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.240388 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.240458 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.240470 LLDP, length 82 [|LLDP] 19:38:01.240472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.240484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.240494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26b0 e485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.240497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.240500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.240504 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.240510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.240516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.240520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.240522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.240537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.240544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.250374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.250434 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.250444 LLDP, length 82 [|LLDP] 19:38:01.250446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.250458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.250468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26b8 85a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.250470 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.250476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.250483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.250486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.250488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.250492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.250496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.250511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.250518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.260394 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.260471 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.260482 LLDP, length 82 [|LLDP] 19:38:01.260484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.260497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.260513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26c0 26c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.260516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.260520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.260523 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.260530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.260536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.260539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.260542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.260558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.260566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.270379 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.270447 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.270457 LLDP, length 82 [|LLDP] 19:38:01.270459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.270471 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.270479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.270487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.270491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.270493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.270500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26c7 c7e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.270502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.270506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.270510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.270526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.270533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.280358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.280400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.280409 LLDP, length 82 [|LLDP] 19:38:01.280410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.280422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.280429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26cf 6905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.280431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.280435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.280440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.280445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.280448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.280451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.280454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.280466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.280472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.290347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.290384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.290391 LLDP, length 82 [|LLDP] 19:38:01.290393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.290404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.290411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26d7 0a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.290413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.290416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.290420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.290425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.290430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.290433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.290435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.290447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.290453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.303446 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.303497 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.303507 LLDP, length 82 [|LLDP] 19:38:01.303508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.303520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.303529 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.303534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.303540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.303543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.303546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26de ab45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.303548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.303551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.303555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.303568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.303574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.310354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.310390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.310398 LLDP, length 82 [|LLDP] 19:38:01.310399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.310411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.310417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26e6 4c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.310419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.310423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.310426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.310431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.310436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.310439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.310442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.310453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.310459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.320355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.320393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.320401 LLDP, length 82 [|LLDP] 19:38:01.320402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.320414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.320420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26ed ed85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.320422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.320426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.320430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.320435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.320439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.320442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.320445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.320456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.320462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.330364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.330412 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.330421 LLDP, length 82 [|LLDP] 19:38:01.330423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.330435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.330442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26f5 8ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.330444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.330450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.330455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.330458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.330461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.330465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.330468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.330481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.330487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.340354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.340391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.340399 LLDP, length 82 [|LLDP] 19:38:01.340400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.340412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.340419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26fd 2fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.340421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.340425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.340428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.340433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.340439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.340442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.340444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.340455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.340461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.350347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.350379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.350386 LLDP, length 82 [|LLDP] 19:38:01.350388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.350399 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.350404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.350410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.350413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.350415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.350420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2704 d0e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.350422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.350426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.350429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.350439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.350445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.364052 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.364114 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.364123 LLDP, length 82 [|LLDP] 19:38:01.364125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.364137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.364146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 270c 7205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.364149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.364152 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.364158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.364164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.364167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.364170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.364174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.364188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.364194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.370349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.370384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.370392 LLDP, length 82 [|LLDP] 19:38:01.370394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.370405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.370412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2714 1325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.370414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.370418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.370421 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.370427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.370432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.370435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.370437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.370448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.370454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.380347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.380385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.380392 LLDP, length 82 [|LLDP] 19:38:01.380394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.380405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.380411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.380416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.380421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.380424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.380426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 271b b445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.380428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.380432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.380436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.380446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.380452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.390346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.390385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.390393 LLDP, length 82 [|LLDP] 19:38:01.390395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.390406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.390412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2723 5565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.390414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.390418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.390421 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.390426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.390431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.390434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.390449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.390461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.390467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.400375 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.400420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.400428 LLDP, length 82 [|LLDP] 19:38:01.400430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.400442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.400451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 272a f685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.400453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.400457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.400461 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.400467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.400473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.400476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.400478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.400506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.400513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.410351 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.410389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.410397 LLDP, length 82 [|LLDP] 19:38:01.410399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.410410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.410417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2732 97a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.410419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.410424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.410429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.410432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.410434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.410438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.410442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.410452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.410458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.424637 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.424669 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.424677 LLDP, length 82 [|LLDP] 19:38:01.424678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.424689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.424695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 273a 38c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.424697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.424701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.424704 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.424709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.424714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.424717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.424719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.424729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.424735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.430344 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.430381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.430389 LLDP, length 82 [|LLDP] 19:38:01.430390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.430402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.430408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.430413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.430416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.430418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.430423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2741 d9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.430425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.430429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.430432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.430442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.430447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.440346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.440383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.440391 LLDP, length 82 [|LLDP] 19:38:01.440392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.440404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.440410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2749 7b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.440412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.440416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.440420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.440425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.440428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.440430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.440433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.440443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.440449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.450346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.450375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.450382 LLDP, length 82 [|LLDP] 19:38:01.450384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.450395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.450401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2751 1c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.450403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.450407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.450410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.450415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.450420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.450423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.450425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.450435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.450441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.460346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.460375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.460383 LLDP, length 82 [|LLDP] 19:38:01.460384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.460396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.460402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.460407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.460412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.460415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.460417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2758 bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.460419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.460422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.460426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.460436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.460441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.470349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.470380 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.470388 LLDP, length 82 [|LLDP] 19:38:01.470389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.470400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.470407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2760 5e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.470409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.470412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.470416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.470421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.470426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.470428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.470431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.470441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.470447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.480346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.480377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.480384 LLDP, length 82 [|LLDP] 19:38:01.480385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.480396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.480403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2767 ff85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.480405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.480408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.480412 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.480417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.480422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.480424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.480427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.480437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.480443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.490346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.490377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.490384 LLDP, length 82 [|LLDP] 19:38:01.490386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.490397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.490403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 276f a0a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.490405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.490410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.490415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.490418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.490420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.490423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.490427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.490437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.490442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.500347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.500378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.500386 LLDP, length 82 [|LLDP] 19:38:01.500387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.500398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.500405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2777 41c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.500407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.500411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.500415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.500420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.500424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.500427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.500429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.500439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.500445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.510346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.510375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.510383 LLDP, length 82 [|LLDP] 19:38:01.510385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.510396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.510403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.510408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.510411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.510413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.510418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 277e e2e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.510420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.510423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.510427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.510437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.510443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.520349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.520379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.520387 LLDP, length 82 [|LLDP] 19:38:01.520388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.520399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.520405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2786 8405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.520408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.520411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.520416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.520421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.520424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.520426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.520430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.520440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.520446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.530352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.530381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.530389 LLDP, length 82 [|LLDP] 19:38:01.530390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.530402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.530407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 278e 2525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.530409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.530413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.530416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.530421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.530426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.530429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.530431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.530441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.530447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.540349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.540386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.540393 LLDP, length 82 [|LLDP] 19:38:01.540395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.540406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.540412 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.540417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.540422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.540425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.540427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2795 c645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.540429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.540433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.540436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.540446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.540452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.550347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.550378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.550386 LLDP, length 82 [|LLDP] 19:38:01.550387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.550398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.550404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 279d 6765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.550406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.550410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.550413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.550418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.550423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.550425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.550428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.550437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.550443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.560347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.560382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.560389 LLDP, length 82 [|LLDP] 19:38:01.560391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.560402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.560408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27a5 0885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.560410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.560414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.560417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.560422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.560427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.560430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.560432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.560442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.560448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.570346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.570375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.570382 LLDP, length 82 [|LLDP] 19:38:01.570383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.570395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.570401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27ac a9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.570403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.570408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.570412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.570415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.570418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.570421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.570425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.570435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.570441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.580347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.580378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.580385 LLDP, length 82 [|LLDP] 19:38:01.580387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.580398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.580405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27b4 4ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.580407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.580410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.580414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.580419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.580423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.580426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.580429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.580439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.580445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.590352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.590381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.590389 LLDP, length 82 [|LLDP] 19:38:01.590390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.590402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.590407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.590412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.590415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.590418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.590422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27bb ebe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.590424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.590428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.590432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.590442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.590447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.600349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.600382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.600390 LLDP, length 82 [|LLDP] 19:38:01.600391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.600402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.600408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27c3 8d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.600411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.600414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.600419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.600424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.600427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.600429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.600433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.600443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.600448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.610348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.610377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.610385 LLDP, length 82 [|LLDP] 19:38:01.610386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.610397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.610404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27cb 2e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.610406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.610410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.610413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.610418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.610423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.610425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.610427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.610437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.610443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.620347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.620377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.620384 LLDP, length 82 [|LLDP] 19:38:01.620386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.620397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.620403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.620408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.620413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.620415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.620418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27d2 cf45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.620419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.620423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.620426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.620436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.620442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.630347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.630384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.630391 LLDP, length 82 [|LLDP] 19:38:01.630393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.630404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.630410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27da 7065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.630411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.630415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.630419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.630424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.630429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.630432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.630434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.630444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.630450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.640348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.640378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.640385 LLDP, length 82 [|LLDP] 19:38:01.640387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.640398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.640404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27e2 1185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.640406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.640410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.640413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.640418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.640423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.640426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.640428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.640438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.640444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.650349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.650377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.650384 LLDP, length 82 [|LLDP] 19:38:01.650386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.650397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.650403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27e9 b2a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.650405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.650410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.650414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.650417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.650419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.650423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.650427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.650436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.650442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.660348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.660384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.660391 LLDP, length 82 [|LLDP] 19:38:01.660393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.660404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.660410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27f1 53c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.660412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.660416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.660419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.660424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.660429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.660432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.660434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.660444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.660450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.670346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.670376 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.670383 LLDP, length 82 [|LLDP] 19:38:01.670385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.670396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.670402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.670407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.670410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.670412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.670417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27f8 f4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.670419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.670423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.670426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.670436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.670442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.680350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.680379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.680387 LLDP, length 82 [|LLDP] 19:38:01.680388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.680401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.680407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2800 9605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.680409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.680413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.680418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.680423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.680425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.680427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.680431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.680441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.680447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.690365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.690405 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.690414 LLDP, length 82 [|LLDP] 19:38:01.690416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.690428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.690435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2808 3725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.690438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.690442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.690445 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.690451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.690455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.690458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.690460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.690471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.690477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.700352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.700392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.700400 LLDP, length 82 [|LLDP] 19:38:01.700401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.700412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.700418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.700424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.700428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.700431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.700433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 280f d845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.700435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.700439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.700443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.700454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.700461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.710353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.710391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.710399 LLDP, length 82 [|LLDP] 19:38:01.710401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.710412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.710419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2817 7965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.710421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.710424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.710428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.710433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.710437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.710440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.710442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.710453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.710458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.720349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.720386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.720394 LLDP, length 82 [|LLDP] 19:38:01.720395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.720406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.720412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 281f 1a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.720414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.720418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.720421 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.720426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.720431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.720434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.720436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.720446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.720452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.730356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.730388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.730396 LLDP, length 82 [|LLDP] 19:38:01.730397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.730409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.730415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2826 bba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.730417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.730421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.730426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.730430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.730432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.730436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.730439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.730450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.730456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.740349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.740379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.740386 LLDP, length 82 [|LLDP] 19:38:01.740388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.740399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.740405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 282e 5cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.740407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.740411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.740414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.740419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.740424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.740427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.740429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.740439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.740445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.750349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.750386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.750393 LLDP, length 82 [|LLDP] 19:38:01.750394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.750406 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.750411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.750417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.750420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.750422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.750427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2835 fde5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.750429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.750432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.750435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.750445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.750451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.760349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.760385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.760392 LLDP, length 82 [|LLDP] 19:38:01.760394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.760405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.760412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 283d 9f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.760414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.760417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.760422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.760427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.760430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.760432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.760436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.760446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.760452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.770352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.770387 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.770394 LLDP, length 82 [|LLDP] 19:38:01.770396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.770407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.770413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2845 4025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.770415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.770418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.770422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.770427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.770432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.770435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.770437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.770446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.770452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.780350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.780377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.780384 LLDP, length 82 [|LLDP] 19:38:01.780386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.780397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.780404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.780408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.780413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.780416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.780418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 284c e145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.780420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.780423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.780427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.780437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.780442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.790359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.790398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.790406 LLDP, length 82 [|LLDP] 19:38:01.790407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.790419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.790425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2854 8265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.790427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.790431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.790434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.790439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.790444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.790447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.790449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.790460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.790465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.800353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.800383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.800391 LLDP, length 82 [|LLDP] 19:38:01.800392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.800404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.800410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 285c 2385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.800412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.800416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.800419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.800424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.800429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.800432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.800434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.800445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.800450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.810350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.810381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.810389 LLDP, length 82 [|LLDP] 19:38:01.810390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.810402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.810408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2863 c4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.810410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.810415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.810420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.810423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.810425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.810429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.810432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.810442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.810448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.820352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.820391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.820399 LLDP, length 82 [|LLDP] 19:38:01.820401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.820412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.820419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 286b 65c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.820421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.820425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.820428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.820434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.820438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.820441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.820443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.820454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.820459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.830356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.830388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.830395 LLDP, length 82 [|LLDP] 19:38:01.830397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.830408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.830413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.830418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.830421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.830423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.830428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2873 06e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.830430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.830434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.830437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.830447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.830453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.840351 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.840386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.840393 LLDP, length 82 [|LLDP] 19:38:01.840395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.840407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.840413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 287a a805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.840414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.840418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.840423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.840427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.840430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.840433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.840436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.840446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.840452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.850355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.850391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.850399 LLDP, length 82 [|LLDP] 19:38:01.850401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.850412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.850418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2882 4925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.850420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.850424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.850427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.850432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.850437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.850440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.850442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.850452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.850458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.860352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.860382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.860389 LLDP, length 82 [|LLDP] 19:38:01.860391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.860402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.860408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.860413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.860418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.860421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.860423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2889 ea45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.860425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.860429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.860432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.860442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.860447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.870352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.870382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.870389 LLDP, length 82 [|LLDP] 19:38:01.870391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.870402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.870408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2891 8b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.870410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.870414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.870417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.870422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.870427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.870429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.870432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.870441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.870447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.880352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.880387 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.880394 LLDP, length 82 [|LLDP] 19:38:01.880396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.880407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.880413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2899 2c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.880415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.880419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.880423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.880428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.880433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.880435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.880437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.880447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.880453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.890353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.890388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.890396 LLDP, length 82 [|LLDP] 19:38:01.890397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.890408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.890415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28a0 cda5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.890417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.890422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.890427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.890430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.890432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.890435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.890439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.890449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.890455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.900366 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.900406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.900415 LLDP, length 82 [|LLDP] 19:38:01.900416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.900428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.900435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28a8 6ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.900437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.900441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.900444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.900450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.900455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.900458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.900460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.900471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.900477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.910355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.910386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.910394 LLDP, length 82 [|LLDP] 19:38:01.910395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.910406 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.910412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.910418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.910420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.910423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.910428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28b0 0fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.910430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.910433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.910437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.910447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.910453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.920355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.920384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.920392 LLDP, length 82 [|LLDP] 19:38:01.920394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.920405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.920411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28b7 b105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.920413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.920417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.920422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.920427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.920430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.920432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.920435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.920446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.920452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.930353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.930389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.930396 LLDP, length 82 [|LLDP] 19:38:01.930398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.930409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.930415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28bf 5225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.930417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.930421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.930424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.930429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.930434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.930437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.930439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.930449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.930455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.940353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.940383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.940391 LLDP, length 82 [|LLDP] 19:38:01.940392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.940403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.940409 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.940414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.940419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.940422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.940424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28c6 f345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.940426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.940429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.940433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.940442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.940448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.950357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.950393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.950400 LLDP, length 82 [|LLDP] 19:38:01.950402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.950413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.950419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28ce 9465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.950421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.950425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.950428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.950433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.950438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.950441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.950443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.950453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.950459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.960358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.960388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.960395 LLDP, length 82 [|LLDP] 19:38:01.960396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.960408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.960414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28d6 3585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.960415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.960419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.960423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.960428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.960433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.960436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.960438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.960448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.960454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.970360 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.970391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.970399 LLDP, length 82 [|LLDP] 19:38:01.970400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.970412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.970417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28dd d6a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.970420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.970424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.970429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.970432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.970434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.970438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.970441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.970451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.970456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.980352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.980381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.980388 LLDP, length 82 [|LLDP] 19:38:01.980390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.980401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.980407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28e5 77c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.980409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.980413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.980416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.980421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.980425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.980428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.980430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.980440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.980446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.990358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.990388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.990395 LLDP, length 82 [|LLDP] 19:38:01.990397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.990408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.990414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.990419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.990422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.990424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.990429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28ed 18e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.990431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.990435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.990438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.990447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.990453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.000353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.000391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.000399 LLDP, length 82 [|LLDP] 19:38:02.000400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.000413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.000419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28f4 ba05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.000421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.000424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.000429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.000434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.000437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.000439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.000442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.000452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.000458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.010361 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.010392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.010399 LLDP, length 82 [|LLDP] 19:38:02.010401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.010412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.010418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28fc 5b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.010420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.010423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.010427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.010432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.010436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.010439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.010441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.010451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.010457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.020357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.020389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.020396 LLDP, length 82 [|LLDP] 19:38:02.020398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.020409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.020415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.020420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.020425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.020428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.020430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2903 fc45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.020432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.020436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.020439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.020450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.020456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.030357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.030388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.030396 LLDP, length 82 [|LLDP] 19:38:02.030398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.030409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.030415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 290b 9d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.030417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.030421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.030424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.030429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.030434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.030436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.030438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.030448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.030454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.040355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.040383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.040391 LLDP, length 82 [|LLDP] 19:38:02.040392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.040404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.040409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2913 3e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.040411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.040415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.040418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.040424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.040428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.040431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.040433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.040443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.040449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.050353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.050389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.050396 LLDP, length 82 [|LLDP] 19:38:02.050397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.050409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.050414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 291a dfa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.050416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.050421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.050426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.050429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.050431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.050434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.050438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.050448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.050454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.060354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.060390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.060397 LLDP, length 82 [|LLDP] 19:38:02.060398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.060409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.060415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2922 80c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.060417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.060421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.060424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.060429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.060434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.060436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.060438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.060449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.060455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.070354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.070390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.070398 LLDP, length 82 [|LLDP] 19:38:02.070399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.070410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.070416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.070422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.070424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.070427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.070431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 292a 21e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.070433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.070437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.070440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.070450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.070456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.080356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.080393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.080401 LLDP, length 82 [|LLDP] 19:38:02.080402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.080414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.080421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2931 c305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.080423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.080427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.080432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.080436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.080439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.080441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.080445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.080455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.080461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.090357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.090394 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.090402 LLDP, length 82 [|LLDP] 19:38:02.090403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.090415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.090420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2939 6425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.090422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.090426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.090429 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.090434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.090439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.090442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.090444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.090454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.090460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.100356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.100388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.100395 LLDP, length 82 [|LLDP] 19:38:02.100397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.100408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.100415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.100420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.100425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.100427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.100430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2941 0545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.100432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.100435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.100439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.100448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.100454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.110355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.110387 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.110394 LLDP, length 82 [|LLDP] 19:38:02.110396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.110407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.110414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2948 a665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.110416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.110419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.110423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.110428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.110433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.110435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.110437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.110448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.110454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.120356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.120397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.120405 LLDP, length 82 [|LLDP] 19:38:02.120406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.120418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.120424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2950 4785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.120426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.120430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.120434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.120439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.120443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.120446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.120449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.120459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.120465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.130358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.130395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.130403 LLDP, length 82 [|LLDP] 19:38:02.130405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.130416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.130422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2957 e8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.130424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.130429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.130434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.130437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.130439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.130443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.130446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.130457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.130463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.140355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.140392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.140399 LLDP, length 82 [|LLDP] 19:38:02.140401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.140413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.140418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 295f 89c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.140421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.140424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.140428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.140432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.140437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.140440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.140442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.140452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.140458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.150359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.150397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.150404 LLDP, length 82 [|LLDP] 19:38:02.150406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.150417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.150423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.150429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.150431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.150433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.150438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2967 2ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.150440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.150444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.150447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.150458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.150464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.160355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.160385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.160393 LLDP, length 82 [|LLDP] 19:38:02.160394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.160406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.160412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 296e cc05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.160414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.160417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.160422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.160427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.160430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.160432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.160436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.160445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.160451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.170356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.170385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.170393 LLDP, length 82 [|LLDP] 19:38:02.170395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.170406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.170413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2976 6d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.170415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.170418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.170422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.170427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.170432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.170435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.170437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.170446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.170452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.180357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.180392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.180399 LLDP, length 82 [|LLDP] 19:38:02.180401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.180412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.180418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.180423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.180428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.180430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.180432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 297e 0e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.180435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.180438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.180442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.180452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.180458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.190357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.190392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.190399 LLDP, length 82 [|LLDP] 19:38:02.190401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.190412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.190418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2985 af65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.190420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.190424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.190427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.190432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.190437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.190439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.190442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.190452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.190458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.200356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.200384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.200392 LLDP, length 82 [|LLDP] 19:38:02.200393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.200405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.200411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 298d 5085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.200413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.200416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.200420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.200425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.200430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.200432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.200435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.200444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.200450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.210359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.210389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.210397 LLDP, length 82 [|LLDP] 19:38:02.210398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.210409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.210415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2994 f1a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.210417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.210422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.210427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.210430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.210432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.210436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.210439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.210449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.210455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.220358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.220390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.220398 LLDP, length 82 [|LLDP] 19:38:02.220399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.220410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.220417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 299c 92c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.220418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.220422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.220425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.220430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.220435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.220438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.220440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.220450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.220456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.230357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.230395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.230403 LLDP, length 82 [|LLDP] 19:38:02.230404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.230416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.230422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.230427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.230430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.230432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.230437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29a4 33e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.230440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.230443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.230447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.230457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.230462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.240357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.240388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.240396 LLDP, length 82 [|LLDP] 19:38:02.240397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.240408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.240414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29ab d505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.240417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.240420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.240425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.240430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.240433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.240435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.240439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.240449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.240455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.250358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.250388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.250395 LLDP, length 82 [|LLDP] 19:38:02.250397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.250408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.250414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29b3 7625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.250416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.250419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.250423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.250428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.250433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.250435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.250438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.250448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.250466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.260389 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.260434 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.260443 LLDP, length 82 [|LLDP] 19:38:02.260444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.260456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.260465 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.260471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.260476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.260480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.260482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29bb 1745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.260484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.260488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.260491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.260505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.260512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.273181 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.273244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.273256 LLDP, length 82 [|LLDP] 19:38:02.273258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.273271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.273280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29c2 b865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.273283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.273287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.273290 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.273296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.273303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.273306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.273309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.273325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.273332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.280403 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.280470 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.280481 LLDP, length 82 [|LLDP] 19:38:02.280483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.280495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.280505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29ca 5985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.280508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.280511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.280515 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.280521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.280527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.280531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.280533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.280548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.280555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.290380 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.290435 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.290444 LLDP, length 82 [|LLDP] 19:38:02.290446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.290458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.290466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29d1 faa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.290468 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.290475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.290480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.290484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.290486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.290490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.290493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.290506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.290513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.300362 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.300402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.300410 LLDP, length 82 [|LLDP] 19:38:02.300412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.300423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.300430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29d9 9bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.300431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.300435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.300439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.300444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.300448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.300451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.300453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.300464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.300470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.310363 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.310395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.310403 LLDP, length 82 [|LLDP] 19:38:02.310405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.310417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.310423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.310429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.310431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.310433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.310438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29e1 3ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.310440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.310444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.310447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.310458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.310464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.320363 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.320397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.320405 LLDP, length 82 [|LLDP] 19:38:02.320406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.320419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.320425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29e8 de05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.320427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.320431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.320436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.320441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.320444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.320446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.320449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.320459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.320465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.333751 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.333785 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.333793 LLDP, length 82 [|LLDP] 19:38:02.333794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.333806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.333812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29f0 7f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.333814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.333818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.333821 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.333826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.333831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.333834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.333836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.333846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.333852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.340359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.340389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.340396 LLDP, length 82 [|LLDP] 19:38:02.340398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.340409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.340415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.340420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.340425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.340428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.340430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29f8 2045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.340432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.340435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.340438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.340449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.340454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.350360 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.350389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.350396 LLDP, length 82 [|LLDP] 19:38:02.350398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.350409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.350415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29ff c165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.350417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.350421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.350425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.350429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.350434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.350436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.350438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.350448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.350454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.360362 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.360391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.360399 LLDP, length 82 [|LLDP] 19:38:02.360400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.360411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.360417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a07 6285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.360419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.360423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.360426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.360431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.360436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.360438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.360440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.360451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.360456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.370389 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.370441 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.370450 LLDP, length 82 [|LLDP] 19:38:02.370452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.370464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.370473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a0f 03a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.370475 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.370481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.370486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.370489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.370492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.370496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.370499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.370512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.370518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.380362 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.380403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.380411 LLDP, length 82 [|LLDP] 19:38:02.380412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.380424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.380430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a16 a4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.380432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.380435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.380439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.380444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.380449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.380452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.380454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.380465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.380470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.394349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.394381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.394388 LLDP, length 82 [|LLDP] 19:38:02.394390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.394402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.394407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.394413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.394416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.394418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.394423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a1e 45e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.394425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.394429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.394432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.394442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.394448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.400376 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.400422 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.400431 LLDP, length 82 [|LLDP] 19:38:02.400433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.400444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.400452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a25 e705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.400454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.400458 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.400463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.400468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.400472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.400474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.400477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.400504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.400511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.410365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.410397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.410405 LLDP, length 82 [|LLDP] 19:38:02.410406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.410417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.410424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a2d 8825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.410426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.410430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.410433 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.410439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.410444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.410446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.410449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.410459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.410465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.420364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.420395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.420403 LLDP, length 82 [|LLDP] 19:38:02.420404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.420416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.420422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.420427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.420432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.420435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.420437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a35 2945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.420439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.420443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.420446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.420456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.420462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.430373 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.430414 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.430422 LLDP, length 82 [|LLDP] 19:38:02.430424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.430436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.430443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a3c ca65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.430445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.430448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.430452 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.430458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.430463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.430466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.430468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.430480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.430486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.440371 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.440420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.440429 LLDP, length 82 [|LLDP] 19:38:02.440430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.440442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.440449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a44 6b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.440451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.440455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.440458 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.440464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.440468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.440472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.440474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.440486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.440492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.450363 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.450402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.450410 LLDP, length 82 [|LLDP] 19:38:02.450412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.450423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.450429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a4c 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.450431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.450436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.450441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.450444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.450446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.450450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.450453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.450464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.450470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.460364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.460400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.460408 LLDP, length 82 [|LLDP] 19:38:02.460410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.460421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.460427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a53 adc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.460429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.460432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.460436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.460441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.460446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.460449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.460451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.460461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.460466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.470378 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.470420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.470429 LLDP, length 82 [|LLDP] 19:38:02.470431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.470442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.470448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.470454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.470457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.470459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.470464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a5b 4ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.470466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.470470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.470473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.470485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.470491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.480366 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.480398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.480406 LLDP, length 82 [|LLDP] 19:38:02.480408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.480419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.480424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a62 f005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.480427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.480431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.480436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.480440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.480443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.480446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.480449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.480460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.480465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.490365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.490402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.490409 LLDP, length 82 [|LLDP] 19:38:02.490411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.490422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.490428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a6a 9125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.490430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.490434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.490437 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.490442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.490447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.490449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.490451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.490462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.490468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.500393 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.500455 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.500464 LLDP, length 82 [|LLDP] 19:38:02.500466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.500478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.500487 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.500494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.500500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.500503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.500505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a72 3245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.500508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.500511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.500515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.500529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.500536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.510372 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.510410 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.510418 LLDP, length 82 [|LLDP] 19:38:02.510420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.510432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.510438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a79 d365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.510441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.510444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.510448 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.510454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.510459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.510462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.510464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.510476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.510482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.520367 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.520399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.520407 LLDP, length 82 [|LLDP] 19:38:02.520409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.520420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.520427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a81 7485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.520429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.520433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.520436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.520442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.520447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.520450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.520452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.520462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.520468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.530365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.530398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.530406 LLDP, length 82 [|LLDP] 19:38:02.530408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.530419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.530425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a89 15a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.530428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.530433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.530438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.530441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.530443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.530447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.530450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.530460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.530466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.540371 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.540404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.540412 LLDP, length 82 [|LLDP] 19:38:02.540414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.540425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.540431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a90 b6c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.540433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.540437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.540441 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.540446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.540451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.540453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.540455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.540466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.540472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.550368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.550407 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.550414 LLDP, length 82 [|LLDP] 19:38:02.550416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.550427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.550433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.550439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.550442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.550444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.550449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a98 57e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.550451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.550455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.550458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.550468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.550474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.560364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.560393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.560401 LLDP, length 82 [|LLDP] 19:38:02.560402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.560413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.560419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a9f f905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.560421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.560425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.560430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.560435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.560437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.560439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.560443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.560453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.560459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.570367 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.570399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.570406 LLDP, length 82 [|LLDP] 19:38:02.570408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.570419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.570425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2aa7 9a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.570427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.570430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.570434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.570439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.570444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.570447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.570449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.570459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.570465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.580366 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.580404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.580411 LLDP, length 82 [|LLDP] 19:38:02.580413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.580424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.580430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.580435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.580440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.580443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.580445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2aaf 3b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.580446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.580450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.580453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.580464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.580470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.590364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.590395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.590403 LLDP, length 82 [|LLDP] 19:38:02.590404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.590415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.590421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ab6 dc65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.590423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.590427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.590430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.590435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.590440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.590443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.590445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.590455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.590460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.600369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.600399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.600407 LLDP, length 82 [|LLDP] 19:38:02.600408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.600419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.600425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2abe 7d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.600427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.600431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.600434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.600439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.600444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.600446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.600449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.600459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.600465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.610365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.610396 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.610403 LLDP, length 82 [|LLDP] 19:38:02.610404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.610415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.610421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ac6 1ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.610423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.610428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.610433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.610436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.610438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.610442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.610445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.610456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.610462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.620364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.620404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.620412 LLDP, length 82 [|LLDP] 19:38:02.620413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.620425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.620431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2acd bfc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.620433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.620436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.620440 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.620445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.620450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.620453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.620455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.620465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.620472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.630364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.630396 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.630404 LLDP, length 82 [|LLDP] 19:38:02.630405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.630417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.630422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.630428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.630431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.630433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.630438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ad5 60e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.630440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.630444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.630447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.630457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.630463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.640367 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.640398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.640406 LLDP, length 82 [|LLDP] 19:38:02.640408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.640419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.640425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2add 0205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.640427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.640431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.640436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.640441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.640443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.640445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.640449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.640460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.640465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.650368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.650406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.650414 LLDP, length 82 [|LLDP] 19:38:02.650415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.650427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.650432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ae4 a325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.650434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.650438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.650442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.650446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.650451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.650453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.650456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.650466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.650472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.660368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.660398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.660405 LLDP, length 82 [|LLDP] 19:38:02.660407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.660419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.660425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.660430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.660435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.660437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.660440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2aec 4445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.660442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.660445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.660449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.660459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.660465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.670365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.670395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.670402 LLDP, length 82 [|LLDP] 19:38:02.670404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.670415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.670421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2af3 e565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.670423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.670426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.670430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.670435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.670440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.670443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.670445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.670454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.670460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.680374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.680415 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.680423 LLDP, length 82 [|LLDP] 19:38:02.680425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.680436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.680443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2afb 8685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.680445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.680449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.680452 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.680457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.680462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.680465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.680467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.680477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.680483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.690376 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.690420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.690428 LLDP, length 82 [|LLDP] 19:38:02.690430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.690441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.690447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b03 27a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.690450 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.690455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.690460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.690463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.690465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.690469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.690473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.690484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.690490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.700378 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.700416 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.700424 LLDP, length 82 [|LLDP] 19:38:02.700426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.700437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.700444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b0a c8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.700446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.700450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.700453 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.700458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.700463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.700466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.700468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.700480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.700486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.710375 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.710408 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.710416 LLDP, length 82 [|LLDP] 19:38:02.710418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.710430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.710436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.710442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.710445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.710447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.710453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b12 69e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.710455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.710458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.710462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.710473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.710479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.720370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.720403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.720410 LLDP, length 82 [|LLDP] 19:38:02.720412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.720423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.720430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b1a 0b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.720432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.720436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.720441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.720446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.720448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.720451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.720454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.720465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.720470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.730369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.730400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.730408 LLDP, length 82 [|LLDP] 19:38:02.730409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.730421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.730427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b21 ac25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.730429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.730432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.730436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.730441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.730446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.730449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.730451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.730461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.730468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.740369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.740403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.740411 LLDP, length 82 [|LLDP] 19:38:02.740412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.740424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.740430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.740435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.740439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.740443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.740444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b29 4d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.740446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.740450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.740453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.740464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.740470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.750368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.750407 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.750415 LLDP, length 82 [|LLDP] 19:38:02.750416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.750428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.750434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b30 ee65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.750436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.750440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.750443 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.750448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.750453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.750456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.750458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.750469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.750474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.760369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.760400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.760407 LLDP, length 82 [|LLDP] 19:38:02.760409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.760420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.760426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b38 8f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.760428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.760432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.760435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.760440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.760445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.760448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.760450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.760461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.760467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.770368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.770399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.770406 LLDP, length 82 [|LLDP] 19:38:02.770408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.770419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.770425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b40 30a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.770427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.770432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.770437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.770440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.770442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.770445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.770449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.770459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.770465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.780368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.780398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.780406 LLDP, length 82 [|LLDP] 19:38:02.780407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.780418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.780424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b47 d1c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.780426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.780430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.780434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.780439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.780443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.780446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.780448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.780458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.780464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.790368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.790404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.790411 LLDP, length 82 [|LLDP] 19:38:02.790413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.790424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.790430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.790435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.790438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.790441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.790446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b4f 72e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.790447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.790451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.790454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.790465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.790470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.800368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.800398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.800406 LLDP, length 82 [|LLDP] 19:38:02.800407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.800418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.800425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b57 1405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.800427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.800430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.800435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.800440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.800443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.800445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.800449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.800459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.800464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.810369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.810399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.810407 LLDP, length 82 [|LLDP] 19:38:02.810409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.810421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.810427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b5e b525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.810429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.810432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.810436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.810441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.810446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.810449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.810451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.810460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.810466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.820370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.820407 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.820414 LLDP, length 82 [|LLDP] 19:38:02.820416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.820428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.820433 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.820438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.820443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.820446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.820448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b66 5645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.820449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.820453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.820457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.820467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.820473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.830369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.830401 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.830409 LLDP, length 82 [|LLDP] 19:38:02.830411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.830422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.830428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b6d f765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.830430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.830433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.830437 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.830442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.830447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.830449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.830452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.830462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.830468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.840370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.840405 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.840413 LLDP, length 82 [|LLDP] 19:38:02.840415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.840426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.840433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b75 9885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.840435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.840439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.840443 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.840448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.840453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.840456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.840458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.840469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.840474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.850370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.850409 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.850418 LLDP, length 82 [|LLDP] 19:38:02.850419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.850431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.850437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b7d 39a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.850439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.850444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.850449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.850452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.850454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.850458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.850462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.850472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.850477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.860369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.860406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.860413 LLDP, length 82 [|LLDP] 19:38:02.860415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.860427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.860433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b84 dac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.860435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.860439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.860442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.860447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.860452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.860455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.860457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.860467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.860473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.870369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.870398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.870405 LLDP, length 82 [|LLDP] 19:38:02.870407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.870418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.870424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.870429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.870432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.870434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.870439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b8c 7be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.870441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.870445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.870449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.870459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.870465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.880371 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.880401 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.880408 LLDP, length 82 [|LLDP] 19:38:02.880410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.880421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.880427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b94 1d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.880429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.880432 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.880438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.880442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.880445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.880447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.880451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.880461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.880467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.890374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.890403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.890410 LLDP, length 82 [|LLDP] 19:38:02.890412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.890423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.890429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b9b be25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.890431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.890435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.890438 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.890443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.890448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.890450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.890453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.890463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.890469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.900381 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.900416 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.900424 LLDP, length 82 [|LLDP] 19:38:02.900426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.900438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.900444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.900449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.900454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.900457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.900460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ba3 5f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.900461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.900465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.900469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.900479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.900485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.910374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.910406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.910415 LLDP, length 82 [|LLDP] 19:38:02.910416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.910428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.910434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2bab 0065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.910437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.910441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.910444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.910449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.910454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.910457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.910459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.910469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.910475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15211 packets captured 15211 packets received by filter 0 packets dropped by kernel 1017 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 19:37:52.780242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.780290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.780299 LLDP, length 82 [|LLDP] 19:37:52.780300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.780312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.780322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d7a 6cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.780325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.780328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.780332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.780338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.780344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.780347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.780350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.780364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.780371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.790219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.790268 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.790275 LLDP, length 82 [|LLDP] 19:37:52.790277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.790288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.790295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.790300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.790304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.790306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.790311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d82 0de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.790313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.790317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.790320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.790332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.790339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.800213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.800246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.800253 LLDP, length 82 [|LLDP] 19:37:52.800254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.800265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.800271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d89 af05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.800273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.800277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.800282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.800287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.800289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.800291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.800295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.800306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.800312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.810222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.810258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.810266 LLDP, length 82 [|LLDP] 19:37:52.810268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.810281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.810287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d91 5025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.810289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.810292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.810296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.810301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.810306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.810308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.810311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.810321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.810328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.820213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.820243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.820250 LLDP, length 82 [|LLDP] 19:37:52.820252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.820263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.820269 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.820274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.820278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.820281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.820283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0d98 f145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.820286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.820289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.820293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.820302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.820308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.830210 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.830247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.830255 LLDP, length 82 [|LLDP] 19:37:52.830256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.830267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.830273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0da0 9265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.830275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.830279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.830282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.830287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.830292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.830294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.830297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.830307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.830313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.840212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.840247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.840254 LLDP, length 82 [|LLDP] 19:37:52.840256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.840267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.840273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0da8 3385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.840275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.840279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.840282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.840287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.840292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.840294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.840297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.840306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.840312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.850215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.850245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.850252 LLDP, length 82 [|LLDP] 19:37:52.850254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.850265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.850271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0daf d4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.850273 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.850278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.850283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.850286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.850288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.850292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.850295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.850306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.850311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.860215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.860252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.860260 LLDP, length 82 [|LLDP] 19:37:52.860261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.860272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.860278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0db7 75c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.860280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.860284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.860287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.860292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.860297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.860300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.860302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.860312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.860318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.870212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.870243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.870251 LLDP, length 82 [|LLDP] 19:37:52.870252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.870263 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.870269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.870274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.870277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.870279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.870284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dbf 16e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.870286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.870289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.870293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.870303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.870309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.880215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.880244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.880251 LLDP, length 82 [|LLDP] 19:37:52.880252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.880263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.880269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dc6 b805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.880271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.880275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.880280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.880285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.880288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.880290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.880293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.880304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.880310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.890227 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.890266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.890274 LLDP, length 82 [|LLDP] 19:37:52.890276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.890287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.890294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dce 5925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.890296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.890300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.890303 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.890309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.890314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.890317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.890319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.890331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.890337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.900216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.900247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.900255 LLDP, length 82 [|LLDP] 19:37:52.900256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.900268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.900274 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.900279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.900283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.900286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.900288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dd5 fa45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.900290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.900294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.900297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.900308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.900314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.910214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.910245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.910253 LLDP, length 82 [|LLDP] 19:37:52.910254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.910265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.910272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ddd 9b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.910274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.910278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.910281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.910286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.910291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.910293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.910296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.910307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.910313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.920213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.920244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.920251 LLDP, length 82 [|LLDP] 19:37:52.920253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.920264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.920270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0de5 3c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.920272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.920276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.920279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.920284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.920289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.920292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.920294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.920304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.920309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.930211 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.930240 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.930247 LLDP, length 82 [|LLDP] 19:37:52.930249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.930260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.930266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dec dda5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.930268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.930273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.930278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.930281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.930283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.930287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.930290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.930300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.930306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.940212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.940241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.940248 LLDP, length 82 [|LLDP] 19:37:52.940249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.940261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.940267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0df4 7ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.940269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.940272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.940275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.940280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.940285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.940288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.940290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.940300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.940306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.950212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.950241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.950248 LLDP, length 82 [|LLDP] 19:37:52.950250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.950260 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.950266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.950271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.950274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.950276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.950280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0dfc 1fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.950282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.950286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.950289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.950299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.950305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.960214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.960244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.960259 LLDP, length 82 [|LLDP] 19:37:52.960260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.960274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.960280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e03 c105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.960282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.960285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.960290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.960295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.960298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.960301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.960304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.960314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.960320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.970213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.970245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.970253 LLDP, length 82 [|LLDP] 19:37:52.970254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.970266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.970272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e0b 6225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.970274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.970277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.970281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.970286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.970291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.970293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.970296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.970306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.970312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.980216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.980246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.980253 LLDP, length 82 [|LLDP] 19:37:52.980254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.980265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.980271 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.980276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.980281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.980284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.980286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e13 0345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.980288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.980291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.980295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.980305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.980311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:52.990213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.990249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:52.990257 LLDP, length 82 [|LLDP] 19:37:52.990258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:52.990270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:52.990275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e1a a465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:52.990277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:52.990281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:52.990284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:52.990289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:52.990294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.990297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:52.990299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:52.990309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:52.990315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.000218 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.000247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.000254 LLDP, length 82 [|LLDP] 19:37:53.000255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.000267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.000273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e22 4585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.000275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.000278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.000282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.000287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.000292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.000295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.000297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.000308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.000313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.010213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.010242 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.010249 LLDP, length 82 [|LLDP] 19:37:53.010251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.010262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.010268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e29 e6a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.010270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.010275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.010279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.010282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.010284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.010288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.010291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.010301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.010307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.020215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.020246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.020253 LLDP, length 82 [|LLDP] 19:37:53.020255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.020266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.020272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e31 87c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.020274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.020277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.020281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.020286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.020291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.020294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.020296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.020306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.020312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.030211 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.030241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.030248 LLDP, length 82 [|LLDP] 19:37:53.030250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.030261 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.030266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.030271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.030274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.030276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.030281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e39 28e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.030283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.030286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.030289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.030299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.030305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.040216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.040246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.040253 LLDP, length 82 [|LLDP] 19:37:53.040255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.040266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.040272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e40 ca05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.040274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.040277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.040283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.040287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.040290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.040292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.040296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.040306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.040312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.044569 LLDP, length 226: localhost 19:37:53.050211 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.050242 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.050250 LLDP, length 82 [|LLDP] 19:37:53.050251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.050262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.050269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e48 6b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.050270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.050274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.050277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.050283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.050287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.050290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.050292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.050302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.050308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.060212 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.060243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.060250 LLDP, length 82 [|LLDP] 19:37:53.060251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.060262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.060268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.060273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.060278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.060281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.060283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e50 0c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.060285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.060288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.060292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.060302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.060308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.070213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.070250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.070258 LLDP, length 82 [|LLDP] 19:37:53.070260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.070271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.070277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e57 ad65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.070279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.070282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.070285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.070290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.070295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.070298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.070300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.070310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.070316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.080217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.080256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.080264 LLDP, length 82 [|LLDP] 19:37:53.080266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.080277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.080284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e5f 4e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.080286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.080289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.080292 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.080298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.080302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.080305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.080308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.080318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.080324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.090215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.090246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.090253 LLDP, length 82 [|LLDP] 19:37:53.090254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.090266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.090272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e66 efa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.090274 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.090279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.090283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.090286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.090288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.090292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.090295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.090305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.090311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.100217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.100247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.100254 LLDP, length 82 [|LLDP] 19:37:53.100255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.100266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.100272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e6e 90c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.100274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.100277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.100281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.100286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.100290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.100293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.100295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.100306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.100311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.110214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.110251 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.110258 LLDP, length 82 [|LLDP] 19:37:53.110260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.110271 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.110276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.110282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.110285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.110287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.110291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e76 31e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.110293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.110297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.110300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.110310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.110316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.120217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.120250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.120258 LLDP, length 82 [|LLDP] 19:37:53.120259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.120271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.120277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e7d d305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.120279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.120282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.120287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.120292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.120295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.120297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.120300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.120311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.120317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.130214 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.130243 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.130251 LLDP, length 82 [|LLDP] 19:37:53.130252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.130265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.130270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e85 7425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.130272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.130276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.130279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.130284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.130289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.130291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.130294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.130304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.130310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.140215 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.140245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.140252 LLDP, length 82 [|LLDP] 19:37:53.140254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.140265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.140270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.140275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.140281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.140283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.140285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e8d 1545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.140287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.140291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.140294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.140305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.140311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.150213 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.150248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.150255 LLDP, length 82 [|LLDP] 19:37:53.150257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.150268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.150273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e94 b665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.150275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.150279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.150282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.150287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.150292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.150295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.150297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.150307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.150312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.160217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.160248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.160262 LLDP, length 82 [|LLDP] 19:37:53.160264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.160276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.160282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0e9c 5785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.160284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.160288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.160291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.160296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.160301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.160304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.160306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.160316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.160322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.170217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.170247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.170255 LLDP, length 82 [|LLDP] 19:37:53.170256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.170268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.170274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ea3 f8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.170276 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.170280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.170285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.170288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.170290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.170294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.170297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.170308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.170313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.180217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.180250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.180257 LLDP, length 82 [|LLDP] 19:37:53.180259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.180270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.180276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eab 99c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.180278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.180282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.180285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.180290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.180295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.180298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.180300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.180311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.180317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.190219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.190248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.190255 LLDP, length 82 [|LLDP] 19:37:53.190256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.190267 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.190273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.190279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.190281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.190283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.190288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eb3 3ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.190290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.190294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.190297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.190308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.190313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.200219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.200255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.200263 LLDP, length 82 [|LLDP] 19:37:53.200265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.200276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.200281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eba dc05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.200283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.200287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.200292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.200297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.200299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.200302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.200305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.200315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.200320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.210235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.210273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.210281 LLDP, length 82 [|LLDP] 19:37:53.210283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.210294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.210300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ec2 7d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.210302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.210306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.210309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.210314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.210319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.210322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.210324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.210335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.210341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.220221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.220252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.220260 LLDP, length 82 [|LLDP] 19:37:53.220262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.220273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.220279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.220284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.220288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.220291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.220294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eca 1e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.220295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.220299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.220303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.220313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.220319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.230222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.230259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.230267 LLDP, length 82 [|LLDP] 19:37:53.230269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.230281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.230287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ed1 bf65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.230289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.230293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.230296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.230301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.230306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.230309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.230311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.230322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.230328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.240217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.240246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.240254 LLDP, length 82 [|LLDP] 19:37:53.240255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.240267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.240273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ed9 6085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.240275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.240278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.240282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.240287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.240292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.240294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.240296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.240306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.240312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.250217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.250249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.250256 LLDP, length 82 [|LLDP] 19:37:53.250257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.250269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.250275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ee1 01a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.250277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.250282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.250287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.250289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.250292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.250295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.250298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.250308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.250314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.260217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.260253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.260261 LLDP, length 82 [|LLDP] 19:37:53.260262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.260274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.260279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ee8 a2c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.260282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.260285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.260288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.260293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.260298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.260300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.260302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.260312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.260318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.270241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.270300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.270309 LLDP, length 82 [|LLDP] 19:37:53.270311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.270323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.270329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.270336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.270340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.270342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.270349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ef0 43e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.270351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.270354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.270358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.270371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.270378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.280239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.280285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.280294 LLDP, length 82 [|LLDP] 19:37:53.280296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.280308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.280316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ef7 e505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.280318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.280322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.280327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.280332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.280335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.280338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.280341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.280354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.280361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.290223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.290255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.290263 LLDP, length 82 [|LLDP] 19:37:53.290264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.290275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.290282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0eff 8625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.290284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.290288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.290291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.290296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.290301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.290304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.290306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.290316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.290322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.300240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.300292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.300307 LLDP, length 82 [|LLDP] 19:37:53.300308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.300321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.300328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.300334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.300340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.300343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.300345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f07 2745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.300347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.300350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.300354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.300367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.300373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.310221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.310263 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.310271 LLDP, length 82 [|LLDP] 19:37:53.310273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.310284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.310291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f0e c865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.310292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.310296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.310299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.310304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.310309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.310312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.310314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.310325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.310331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.320221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.320264 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.320272 LLDP, length 82 [|LLDP] 19:37:53.320273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.320285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.320291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f16 6985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.320293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.320297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.320300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.320305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.320310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.320313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.320315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.320325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.320331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.330216 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.330247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.330255 LLDP, length 82 [|LLDP] 19:37:53.330256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.330268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.330274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f1e 0aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.330276 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.330281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.330286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.330289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.330291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.330294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.330297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.330307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.330314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.340230 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.340280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.340288 LLDP, length 82 [|LLDP] 19:37:53.340290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.340302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.340309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f25 abc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.340311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.340315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.340318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.340324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.340329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.340331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.340334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.340345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.340352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.350220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.350258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.350266 LLDP, length 82 [|LLDP] 19:37:53.350268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.350279 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.350285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.350290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.350293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.350295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.350300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f2d 4ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.350302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.350306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.350309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.350320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.350326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.360221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.360258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.360265 LLDP, length 82 [|LLDP] 19:37:53.360267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.360278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.360284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f34 ee05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.360286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.360290 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.360295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.360300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.360302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.360305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.360308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.360319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.360325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.370231 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.370274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.370282 LLDP, length 82 [|LLDP] 19:37:53.370284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.370296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.370303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f3c 8f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.370305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.370308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.370312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.370317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.370322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.370325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.370327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.370339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.370345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.380221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.380253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.380261 LLDP, length 82 [|LLDP] 19:37:53.380262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.380274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.380280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.380285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.380289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.380292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.380294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f44 3045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.380296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.380300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.380303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.380314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.380319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.390219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.390253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.390260 LLDP, length 82 [|LLDP] 19:37:53.390262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.390273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.390279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f4b d165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.390281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.390285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.390288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.390293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.390298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.390301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.390303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.390313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.390319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.400228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.400277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.400286 LLDP, length 82 [|LLDP] 19:37:53.400287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.400299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.400305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f53 7285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.400307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.400311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.400314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.400320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.400325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.400328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.400330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.400355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.400362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.410241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.410299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.410308 LLDP, length 82 [|LLDP] 19:37:53.410310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.410322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.410331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f5b 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.410334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.410339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.410345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.410349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.410351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.410355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.410358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.410372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.410378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.420223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.420256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.420263 LLDP, length 82 [|LLDP] 19:37:53.420265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.420276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.420282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f62 b4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.420284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.420288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.420291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.420296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.420301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.420304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.420306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.420316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.420322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.430220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.430250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.430257 LLDP, length 82 [|LLDP] 19:37:53.430259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.430270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.430276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.430281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.430284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.430286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.430291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f6a 55e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.430293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.430296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.430300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.430310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.430316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.440220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.440249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.440257 LLDP, length 82 [|LLDP] 19:37:53.440258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.440269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.440275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f71 f705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.440277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.440280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.440285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.440290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.440293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.440295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.440299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.440308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.440315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.450218 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.450248 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.450255 LLDP, length 82 [|LLDP] 19:37:53.450256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.450268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.450274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f79 9825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.450276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.450280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.450284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.450289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.450293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.450296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.450298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.450308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.450314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.460222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.460258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.460266 LLDP, length 82 [|LLDP] 19:37:53.460267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.460279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.460284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.460290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.460294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.460297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.460300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f81 3945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.460301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.460305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.460308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.460318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.460324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.470223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.470253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.470260 LLDP, length 82 [|LLDP] 19:37:53.470262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.470272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.470278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f88 da65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.470280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.470284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.470287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.470292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.470297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.470300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.470302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.470312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.470318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.480222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.480260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.480268 LLDP, length 82 [|LLDP] 19:37:53.480270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.480282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.480288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f90 7b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.480290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.480293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.480296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.480301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.480306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.480309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.480311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.480322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.480328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.490219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.490249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.490257 LLDP, length 82 [|LLDP] 19:37:53.490259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.490270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.490276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f98 1ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.490278 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.490284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.490288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.490291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.490293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.490297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.490300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.490310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.490316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.500221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.500250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.500257 LLDP, length 82 [|LLDP] 19:37:53.500259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.500270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.500276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0f9f bdc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.500278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.500281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.500285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.500290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.500295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.500298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.500300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.500310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.500316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.510220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.510249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.510256 LLDP, length 82 [|LLDP] 19:37:53.510258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.510269 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.510274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.510279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.510282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.510284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.510289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fa7 5ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.510291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.510295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.510298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.510308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.510313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.520222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.520256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.520264 LLDP, length 82 [|LLDP] 19:37:53.520265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.520276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.520282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0faf 0005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.520284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.520288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.520293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.520298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.520300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.520303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.520306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.520316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.520322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.530224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.530253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.530261 LLDP, length 82 [|LLDP] 19:37:53.530262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.530273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.530278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fb6 a125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.530281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.530284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.530288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.530293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.530297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.530300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.530302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.530312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.530318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.540223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.540252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.540260 LLDP, length 82 [|LLDP] 19:37:53.540261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.540272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.540278 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.540283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.540288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.540291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.540293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fbe 4245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.540295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.540299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.540302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.540312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.540318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.550220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.550249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.550256 LLDP, length 82 [|LLDP] 19:37:53.550258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.550269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.550274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fc5 e365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.550276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.550280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.550284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.550288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.550293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.550296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.550298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.550309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.550314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.560221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.560256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.560264 LLDP, length 82 [|LLDP] 19:37:53.560265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.560276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.560282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fcd 8485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.560284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.560288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.560291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.560296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.560301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.560303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.560305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.560315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.560321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.570219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.570249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.570256 LLDP, length 82 [|LLDP] 19:37:53.570257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.570269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.570275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fd5 25a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.570277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.570282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.570286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.570289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.570291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.570295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.570298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.570308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.570313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.580221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.580259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.580267 LLDP, length 82 [|LLDP] 19:37:53.580268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.580280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.580285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fdc c6c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.580287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.580291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.580295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.580300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.580304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.580307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.580310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.580319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.580326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.590224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.590255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.590262 LLDP, length 82 [|LLDP] 19:37:53.590264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.590275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.590280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.590286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.590289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.590291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.590295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fe4 67e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.590297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.590301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.590304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.590314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.590320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.600223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.600262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.600270 LLDP, length 82 [|LLDP] 19:37:53.600271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.600283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.600289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0fec 0905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.600291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.600294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.600299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.600304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.600307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.600309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.600313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.600323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.600329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.610220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.610256 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.610264 LLDP, length 82 [|LLDP] 19:37:53.610266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.610277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.610283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ff3 aa25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.610285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.610289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.610292 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.610297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.610302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.610304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.610307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.610317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.610323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.620222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.620259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.620266 LLDP, length 82 [|LLDP] 19:37:53.620267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.620278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.620285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.620290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.620295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.620297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.620299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 0ffb 4b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.620301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.620305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.620308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.620318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.620324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.630222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.630258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.630265 LLDP, length 82 [|LLDP] 19:37:53.630267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.630278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.630284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1002 ec65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.630286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.630290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.630293 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.630298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.630302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.630305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.630307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.630317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.630323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.640222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.640271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.640280 LLDP, length 82 [|LLDP] 19:37:53.640282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.640294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.640300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 100a 8d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.640302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.640306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.640310 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.640316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.640322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.640324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.640326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.640337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.640344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.650247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.650288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.650295 LLDP, length 82 [|LLDP] 19:37:53.650297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.650309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.650317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1012 2ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.650320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.650326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.650332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.650336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.650338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.650342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.650345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.650360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.650367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.660228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.660262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.660270 LLDP, length 82 [|LLDP] 19:37:53.660271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.660282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.660289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1019 cfc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.660291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.660295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.660298 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.660303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.660308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.660311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.660313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.660325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.660331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.670225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.670255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.670263 LLDP, length 82 [|LLDP] 19:37:53.670264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.670276 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.670281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.670287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.670290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.670292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.670296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1021 70e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.670298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.670302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.670306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.670317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.670323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.680224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.680268 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.680276 LLDP, length 82 [|LLDP] 19:37:53.680277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.680288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.680294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1029 1205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.680296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.680300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.680305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.680310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.680313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.680315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.680318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.680328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.680334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.690223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.690262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.690270 LLDP, length 82 [|LLDP] 19:37:53.690271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.690283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.690289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1030 b325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.690291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.690295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.690298 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.690303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.690307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.690310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.690312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.690323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.690329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.700224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.700267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.700274 LLDP, length 82 [|LLDP] 19:37:53.700276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.700287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.700294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.700299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.700303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.700306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.700308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1038 5445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.700310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.700314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.700317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.700328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.700334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.710226 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.710255 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.710263 LLDP, length 82 [|LLDP] 19:37:53.710264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.710275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.710282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 103f f565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.710284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.710287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.710291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.710296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.710301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.710304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.710306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.710316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.710322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.720223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.720258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.720266 LLDP, length 82 [|LLDP] 19:37:53.720267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.720279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.720285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1047 9685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.720287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.720291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.720294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.720299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.720304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.720307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.720309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.720319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.720324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.730222 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.730252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.730259 LLDP, length 82 [|LLDP] 19:37:53.730260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.730271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.730278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 104f 37a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.730280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.730284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.730289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.730292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.730294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.730298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.730301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.730311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.730318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.740226 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.740264 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.740271 LLDP, length 82 [|LLDP] 19:37:53.740273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.740284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.740290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1056 d8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.740292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.740296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.740299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.740304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.740309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.740312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.740314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.740324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.740330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.750225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.750262 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.750269 LLDP, length 82 [|LLDP] 19:37:53.750270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.750281 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.750287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.750293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.750296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.750298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.750302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 105e 79e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.750304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.750307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.750311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.750321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.750327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.760223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.760260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.760267 LLDP, length 82 [|LLDP] 19:37:53.760268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.760280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.760285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1066 1b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.760288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.760291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.760296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.760301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.760304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.760306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.760309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.760319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.760325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.770228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.770259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.770266 LLDP, length 82 [|LLDP] 19:37:53.770268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.770279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.770285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 106d bc25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.770287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.770291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.770294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.770299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.770304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.770307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.770309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.770319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.770325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.780228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.780269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.780277 LLDP, length 82 [|LLDP] 19:37:53.780278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.780289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.780296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.780301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.780305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.780308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.780310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1075 5d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.780312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.780316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.780319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.780330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.780336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.790225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.790249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.790255 LLDP, length 82 [|LLDP] 19:37:53.790257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.790268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.790274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 107c fe65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.790276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.790279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.790282 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.790287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.790292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.790295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.790297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.790306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.790311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.800220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.800250 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.800257 LLDP, length 82 [|LLDP] 19:37:53.800258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.800270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.800276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1084 9f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.800278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.800282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.800285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.800290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.800295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.800297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.800299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.800308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.800314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.810220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.810241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.810248 LLDP, length 82 [|LLDP] 19:37:53.810250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.810260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.810266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 108c 40a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.810268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.810272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.810277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.810280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.810282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.810285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.810289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.810298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.810303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.820219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.820239 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.820245 LLDP, length 82 [|LLDP] 19:37:53.820247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.820258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.820263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1093 e1c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.820265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.820268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.820272 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.820277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.820281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.820284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.820286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.820294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.820300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.830218 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.830237 LLDP, length 82 [|LLDP] 19:37:53.830239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.830251 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.830256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.830261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.830264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.830266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.830272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.830276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 109b 82e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.830278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.830282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.830285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.830294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.830300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.840220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.840239 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.840245 LLDP, length 82 [|LLDP] 19:37:53.840246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.840257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.840262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10a3 2405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.840264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.840268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.840273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.840277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.840280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.840282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.840286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.840294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.840299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.850217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.850242 LLDP, length 82 [|LLDP] 19:37:53.850244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.850256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.850261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10aa c525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.850263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.850267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.850270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.850275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.850279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.850281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.850283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.850289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.850297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.850303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.860219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.860239 LLDP, length 82 [|LLDP] 19:37:53.860241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.860253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.860258 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.860263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.860267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.860270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.860272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.860277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10b2 6645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.860279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.860283 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.860286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.860295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.860300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.870217 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.870243 LLDP, length 82 [|LLDP] 19:37:53.870244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.870256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.870262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10ba 0765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.870264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.870267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.870271 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.870275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.870280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.870282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.870284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.870290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.870298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.870304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.880221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.880244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.880250 LLDP, length 82 [|LLDP] 19:37:53.880252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.880263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.880268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10c1 a885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.880270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.880274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.880277 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.880282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.880286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.880289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.880291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.880300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.880306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.890236 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.890266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.890274 LLDP, length 82 [|LLDP] 19:37:53.890275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.890288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.890294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10c9 49a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.890296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.890300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.890305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.890308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.890310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.890314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.890317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.890327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.890332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.900223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.900247 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.900254 LLDP, length 82 [|LLDP] 19:37:53.900255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.900275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.900281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10d0 eac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.900284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.900287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.900291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.900296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.900300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.900303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.900306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.900315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.900321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.910220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.910241 LLDP, length 82 [|LLDP] 19:37:53.910243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.910254 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.910260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.910265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.910267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.910270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.910275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.910280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10d8 8be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.910281 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.910285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.910289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.910298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.910303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.920223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.920242 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.920249 LLDP, length 82 [|LLDP] 19:37:53.920250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.920262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.920267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10e0 2d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.920269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.920272 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.920277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.920281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.920284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.920286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.920290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.920298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.920304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.930223 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.930241 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.930247 LLDP, length 82 [|LLDP] 19:37:53.930249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.930260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.930266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10e7 ce25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.930268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.930271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.930275 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.930279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.930284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.930286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.930289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.930297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.930302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.940221 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.940246 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.940253 LLDP, length 82 [|LLDP] 19:37:53.940254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.940265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.940270 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.940274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.940279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.940281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.940283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10ef 6f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.940285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.940289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.940292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.940300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.940305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.950219 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.950244 LLDP, length 82 [|LLDP] 19:37:53.950245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.950257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.950262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10f7 1065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.950264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.950268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.950272 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.950276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.950281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.950283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.950285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.950291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.950299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.950305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.960220 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.960245 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.960252 LLDP, length 82 [|LLDP] 19:37:53.960253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.960264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.960269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 10fe b185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.960271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.960275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.960278 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.960283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.960287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.960290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.960292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.960300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.960306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.970226 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.970257 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.970265 LLDP, length 82 [|LLDP] 19:37:53.970266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.970277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.970283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1106 52a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.970285 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.970289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.970294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.970297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.970299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.970302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.970306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.970315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.970321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.980229 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.980252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.980259 LLDP, length 82 [|LLDP] 19:37:53.980261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.980271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.980277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 110d f3c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.980279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.980283 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.980286 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.980291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.980295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.980298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.980300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.980309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.980315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:53.990225 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.990249 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:53.990256 LLDP, length 82 [|LLDP] 19:37:53.990257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:53.990268 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:53.990274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:53.990278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.990281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:53.990283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:53.990287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1115 94e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:53.990289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:53.990293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:53.990296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:53.990306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:53.990311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.000224 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.000253 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.000260 LLDP, length 82 [|LLDP] 19:37:54.000261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.000272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.000278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 111d 3605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.000280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.000283 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.000288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.000293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.000295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.000297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.000301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.000310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.000316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.010269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.010331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.010341 LLDP, length 82 [|LLDP] 19:37:54.010343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.010356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.010365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1124 d725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.010368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.010372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.010375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.010382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.010388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.010392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.010394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.010408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.010416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.020249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.020303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.020312 LLDP, length 82 [|LLDP] 19:37:54.020314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.020326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.020334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.020340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.020346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.020349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.020351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 112c 7845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.020353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.020357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.020360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.020373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.020381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.030246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.030291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.030299 LLDP, length 82 [|LLDP] 19:37:54.030301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.030313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.030320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1134 1965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.030322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.030326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.030329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.030335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.030340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.030343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.030345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.030357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.030364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.040243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.040285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.040294 LLDP, length 82 [|LLDP] 19:37:54.040295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.040307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.040315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 113b ba85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.040317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.040321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.040324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.040329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.040335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.040338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.040340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.040353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.040359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.050238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.050284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.050292 LLDP, length 82 [|LLDP] 19:37:54.050293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.050305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.050311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1143 5ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.050313 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.050318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.050323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.050326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.050329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.050332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.050336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.050347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.050354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.060238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.060277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.060285 LLDP, length 82 [|LLDP] 19:37:54.060286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.060298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.060305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 114a fcc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.060307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.060311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.060315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.060320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.060325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.060328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.060330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.060342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.060348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.070241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.070279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.070287 LLDP, length 82 [|LLDP] 19:37:54.070289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.070300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.070306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.070312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.070315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.070317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.070322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1152 9de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.070324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.070328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.070331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.070343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.070349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.080239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.080276 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.080284 LLDP, length 82 [|LLDP] 19:37:54.080285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.080297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.080303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 115a 3f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.080306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.080309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.080315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.080320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.080323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.080325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.080329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.080340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.080347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.090240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.090279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.090287 LLDP, length 82 [|LLDP] 19:37:54.090289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.090300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.090307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1161 e025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.090309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.090313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.090316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.090322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.090327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.090330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.090332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.090343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.090349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.100239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.100278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.100287 LLDP, length 82 [|LLDP] 19:37:54.100289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.100301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.100308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.100313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.100318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.100321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.100323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1169 8145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.100325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.100329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.100332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.100344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.100350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.110243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.110291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.110301 LLDP, length 82 [|LLDP] 19:37:54.110302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.110315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.110323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1171 2265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.110326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.110330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.110333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.110339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.110345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.110348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.110351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.110365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.110371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.120242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.120297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.120306 LLDP, length 82 [|LLDP] 19:37:54.120307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.120319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.120326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1178 c385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.120329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.120332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.120336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.120341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.120346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.120349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.120351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.120364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.120370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.130241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.130286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.130294 LLDP, length 82 [|LLDP] 19:37:54.130295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.130307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.130314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1180 64a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.130316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.130321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.130326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.130329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.130331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.130335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.130338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.130351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.130357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.140244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.140282 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.140291 LLDP, length 82 [|LLDP] 19:37:54.140292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.140304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.140310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1188 05c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.140313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.140316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.140319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.140324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.140329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.140332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.140335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.140346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.140352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.150246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.150283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.150291 LLDP, length 82 [|LLDP] 19:37:54.150293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.150304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.150311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.150317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.150320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.150322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.150327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 118f a6e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.150329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.150333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.150336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.150348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.150354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.160238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.160286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.160294 LLDP, length 82 [|LLDP] 19:37:54.160296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.160308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.160314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1197 4805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.160317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.160320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.160326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.160331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.160334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.160336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.160340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.160351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.160357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.170239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.170277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.170285 LLDP, length 82 [|LLDP] 19:37:54.170287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.170298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.170305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 119e e925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.170307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.170311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.170314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.170320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.170325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.170328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.170330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.170341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.170347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.180240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.180277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.180286 LLDP, length 82 [|LLDP] 19:37:54.180288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.180299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.180306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.180311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.180316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.180320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.180322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11a6 8a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.180325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.180328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.180332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.180343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.180350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.190242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.190281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.190289 LLDP, length 82 [|LLDP] 19:37:54.190291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.190303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.190310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11ae 2b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.190312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.190316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.190319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.190324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.190329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.190332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.190334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.190345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.190351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.200249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.200291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.200300 LLDP, length 82 [|LLDP] 19:37:54.200301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.200313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.200321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11b5 cc85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.200323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.200327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.200330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.200336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.200342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.200345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.200347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.200359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.200365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.210244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.210284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.210292 LLDP, length 82 [|LLDP] 19:37:54.210293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.210305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.210312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11bd 6da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.210314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.210320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.210325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.210328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.210330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.210334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.210337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.210349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.210356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.220244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.220286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.220294 LLDP, length 82 [|LLDP] 19:37:54.220296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.220308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.220315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11c5 0ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.220317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.220321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.220324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.220329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.220334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.220337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.220339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.220351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.220357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.230252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.230300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.230308 LLDP, length 82 [|LLDP] 19:37:54.230310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.230322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.230329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.230335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.230338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.230340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.230347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11cc afe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.230349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.230352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.230356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.230369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.230386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.240240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.240289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.240298 LLDP, length 82 [|LLDP] 19:37:54.240299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.240311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.240317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11d4 5105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.240319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.240323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.240329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.240334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.240337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.240339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.240343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.240354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.240360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.250247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.250293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.250301 LLDP, length 82 [|LLDP] 19:37:54.250303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.250315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.250322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11db f225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.250324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.250327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.250331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.250336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.250341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.250344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.250346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.250358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.250364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.260235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.260264 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.260271 LLDP, length 82 [|LLDP] 19:37:54.260273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.260284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.260290 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.260295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.260300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.260303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.260305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11e3 9345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.260307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.260310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.260314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.260324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.260330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.270235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.270265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.270273 LLDP, length 82 [|LLDP] 19:37:54.270275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.270286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.270292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11eb 3465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.270294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.270298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.270302 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.270307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.270311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.270315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.270317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.270327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.270333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.280233 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.280260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.280267 LLDP, length 82 [|LLDP] 19:37:54.280269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.280280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.280286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11f2 d585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.280288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.280291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.280295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.280300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.280305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.280308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.280310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.280319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.280325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.290241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.290283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.290291 LLDP, length 82 [|LLDP] 19:37:54.290293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.290304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.290310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 11fa 76a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.290312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.290317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.290322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.290325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.290327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.290330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.290334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.290344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.290350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.300234 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.300261 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.300269 LLDP, length 82 [|LLDP] 19:37:54.300271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.300282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.300288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1202 17c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.300290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.300293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.300297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.300302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.300306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.300309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.300311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.300321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.300327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.310229 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.310254 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.310260 LLDP, length 82 [|LLDP] 19:37:54.310262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.310273 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.310279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.310284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.310287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.310289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.310294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1209 b8e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.310295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.310299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.310302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.310312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.310318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.320237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.320272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.320280 LLDP, length 82 [|LLDP] 19:37:54.320282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.320293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.320299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1211 5a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.320301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.320305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.320310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.320314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.320317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.320319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.320323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.320333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.320338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.330231 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.330257 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.330264 LLDP, length 82 [|LLDP] 19:37:54.330266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.330277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.330283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1218 fb25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.330285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.330288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.330292 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.330296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.330301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.330304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.330306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.330315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.330321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.340230 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.340254 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.340262 LLDP, length 82 [|LLDP] 19:37:54.340264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.340275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.340280 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.340285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.340290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.340293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.340295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1220 9c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.340297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.340301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.340304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.340313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.340319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.350228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.350252 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.350259 LLDP, length 82 [|LLDP] 19:37:54.350260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.350271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.350277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1228 3d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.350279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.350282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.350286 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.350290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.350295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.350298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.350300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.350309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.350314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.360227 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.360260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.360266 LLDP, length 82 [|LLDP] 19:37:54.360268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.360279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.360285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 122f de85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.360287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.360291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.360294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.360299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.360303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.360306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.360308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.360318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.360323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.370228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.370258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.370265 LLDP, length 82 [|LLDP] 19:37:54.370266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.370277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.370282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1237 7fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.370284 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.370289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.370294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.370296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.370298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.370302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.370305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.370314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.370319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.380228 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.380257 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.380264 LLDP, length 82 [|LLDP] 19:37:54.380266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.380277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.380282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 123f 20c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.380284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.380288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.380291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.380296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.380300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.380303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.380305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.380314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.380319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.390237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.390267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.390274 LLDP, length 82 [|LLDP] 19:37:54.390276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.390287 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.390292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.390297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.390300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.390303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.390308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1246 c1e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.390309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.390313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.390317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.390326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.390332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.400232 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.400258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.400265 LLDP, length 82 [|LLDP] 19:37:54.400267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.400278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.400284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 124e 6305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.400286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.400289 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.400294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.400299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.400302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.400304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.400308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.400332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.400338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.410258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.410305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.410315 LLDP, length 82 [|LLDP] 19:37:54.410316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.410328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.410337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1256 0425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.410339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.410343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.410347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.410352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.410357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.410360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.410362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.410374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.410380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.420233 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.420267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.420275 LLDP, length 82 [|LLDP] 19:37:54.420276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.420287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.420293 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.420298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.420303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.420305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.420308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 125d a545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.420310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.420313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.420317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.420327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.420333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.430234 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.430260 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.430267 LLDP, length 82 [|LLDP] 19:37:54.430269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.430280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.430286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1265 4665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.430287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.430291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.430295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.430300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.430304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.430307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.430310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.430319 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.430325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.440248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.440296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.440305 LLDP, length 82 [|LLDP] 19:37:54.440307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.440319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.440327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 126c e785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.440329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.440332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.440336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.440341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.440346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.440349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.440351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.440363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.440368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.450232 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.450259 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.450267 LLDP, length 82 [|LLDP] 19:37:54.450268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.450280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.450286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1274 88a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.450288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.450293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.450298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.450300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.450303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.450307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.450310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.450320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.450325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.460232 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.460263 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.460270 LLDP, length 82 [|LLDP] 19:37:54.460272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.460283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.460289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 127c 29c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.460291 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.460294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.460298 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.460303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.460307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.460310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.460312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.460321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.460327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.470253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.470290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.470298 LLDP, length 82 [|LLDP] 19:37:54.470299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.470311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.470317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.470322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.470325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.470328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.470332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1283 cae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.470334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.470338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.470342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.470353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.470359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.480246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.480283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.480291 LLDP, length 82 [|LLDP] 19:37:54.480293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.480305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.480311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 128b 6c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.480313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.480317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.480322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.480326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.480329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.480331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.480335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.480345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.480351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.490235 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.490258 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.490266 LLDP, length 82 [|LLDP] 19:37:54.490268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.490279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.490285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1293 0d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.490287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.490291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.490294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.490299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.490304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.490306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.490308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.490317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.490323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.500233 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.500263 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.500271 LLDP, length 82 [|LLDP] 19:37:54.500272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.500295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.500302 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.500307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.500312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.500315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.500317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 129a ae45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.500320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.500323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.500327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.500336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.500342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.510269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.510319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.510328 LLDP, length 82 [|LLDP] 19:37:54.510330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.510342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.510351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12a2 4f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.510354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.510357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.510361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.510367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.510373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.510377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.510379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.510394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.510401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.520255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.520299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.520307 LLDP, length 82 [|LLDP] 19:37:54.520309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.520321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.520329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12a9 f085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.520331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.520335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.520338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.520344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.520349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.520352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.520354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.520366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.520373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.530237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.530270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.530278 LLDP, length 82 [|LLDP] 19:37:54.530280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.530291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.530297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12b1 91a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.530299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.530304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.530309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.530312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.530314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.530318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.530321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.530333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.530339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.540278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.540342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.540351 LLDP, length 82 [|LLDP] 19:37:54.540353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.540365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.540375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12b9 32c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.540377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.540381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.540385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.540391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.540397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.540400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.540402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.540417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.540424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.550241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.550275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.550283 LLDP, length 82 [|LLDP] 19:37:54.550285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.550296 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.550302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.550308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.550310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.550313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.550318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12c0 d3e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.550320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.550323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.550327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.550337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.550343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.560240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.560278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.560286 LLDP, length 82 [|LLDP] 19:37:54.560288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.560299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.560305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12c8 7505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.560307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.560311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.560316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.560321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.560323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.560325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.560329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.560340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.560345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.570237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.570274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.570281 LLDP, length 82 [|LLDP] 19:37:54.570283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.570294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.570300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12d0 1625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.570302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.570306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.570310 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.570315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.570320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.570322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.570325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.570335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.570341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.580237 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.580265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.580272 LLDP, length 82 [|LLDP] 19:37:54.580274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.580285 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.580291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.580296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.580301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.580304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.580306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12d7 b745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.580308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.580311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.580315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.580325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.580331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.590239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.590273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.590281 LLDP, length 82 [|LLDP] 19:37:54.590282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.590294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.590300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12df 5865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.590301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.590305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.590308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.590313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.590318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.590321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.590323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.590333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.590339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.600236 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.600265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.600272 LLDP, length 82 [|LLDP] 19:37:54.600274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.600286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.600292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12e6 f985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.600294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.600298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.600301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.600307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.600311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.600314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.600316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.600326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.600332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.610236 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.610266 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.610273 LLDP, length 82 [|LLDP] 19:37:54.610275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.610286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.610292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12ee 9aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.610294 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.610299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.610304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.610306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.610309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.610312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.610316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.610326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.610331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.620239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.620269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.620277 LLDP, length 82 [|LLDP] 19:37:54.620278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.620289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.620296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12f6 3bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.620298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.620301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.620305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.620310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.620315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.620318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.620320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.620330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.620336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.630239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.630271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.630278 LLDP, length 82 [|LLDP] 19:37:54.630280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.630291 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.630297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.630302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.630305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.630307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.630312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 12fd dce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.630315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.630318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.630322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.630331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.630337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.640240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.640271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.640279 LLDP, length 82 [|LLDP] 19:37:54.640281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.640293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.640299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1305 7e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.640301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.640304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.640310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.640315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.640318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.640320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.640324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.640334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.640340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.650239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.650272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.650280 LLDP, length 82 [|LLDP] 19:37:54.650281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.650293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.650299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 130d 1f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.650301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.650304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.650308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.650313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.650317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.650320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.650322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.650333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.650339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.660244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.660281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.660289 LLDP, length 82 [|LLDP] 19:37:54.660291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.660302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.660308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.660313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.660318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.660321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.660323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1314 c045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.660325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.660329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.660332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.660343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.660349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.670239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.670274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.670282 LLDP, length 82 [|LLDP] 19:37:54.670283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.670295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.670301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 131c 6165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.670303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.670306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.670310 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.670315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.670319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.670322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.670324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.670334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.670340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.680241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.680270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.680277 LLDP, length 82 [|LLDP] 19:37:54.680278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.680290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.680296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1324 0285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.680298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.680301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.680305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.680310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.680314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.680317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.680319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.680329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.680335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.690240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.690276 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.690284 LLDP, length 82 [|LLDP] 19:37:54.690285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.690297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.690302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 132b a3a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.690304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.690309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.690314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.690316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.690319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.690322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.690326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.690336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.690342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.700239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.700267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.700274 LLDP, length 82 [|LLDP] 19:37:54.700276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.700287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.700293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1333 44c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.700295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.700299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.700302 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.700307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.700312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.700314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.700316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.700326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.700332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.710239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.710267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.710275 LLDP, length 82 [|LLDP] 19:37:54.710276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.710288 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.710293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.710298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.710301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.710304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.710308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 133a e5e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.710310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.710314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.710317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.710327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.710333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.720238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.720265 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.720272 LLDP, length 82 [|LLDP] 19:37:54.720274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.720287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.720293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1342 8705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.720295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.720299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.720304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.720308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.720311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.720313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.720317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.720327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.720332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.730240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.730269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.730276 LLDP, length 82 [|LLDP] 19:37:54.730278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.730289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.730295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 134a 2825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.730297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.730300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.730304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.730309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.730313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.730316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.730318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.730328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.730334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.740243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.740282 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.740289 LLDP, length 82 [|LLDP] 19:37:54.740291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.740302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.740308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.740313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.740318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.740321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.740324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1351 c945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.740326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.740329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.740333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.740343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.740350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.750241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.750278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.750286 LLDP, length 82 [|LLDP] 19:37:54.750287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.750298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.750304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1359 6a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.750306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.750310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.750313 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.750318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.750323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.750326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.750328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.750338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.750344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.760242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.760274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.760282 LLDP, length 82 [|LLDP] 19:37:54.760284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.760295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.760301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1361 0b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.760303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.760307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.760311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.760316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.760320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.760323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.760325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.760335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.760341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.770241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.770269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.770276 LLDP, length 82 [|LLDP] 19:37:54.770278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.770289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.770295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1368 aca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.770297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.770302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.770307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.770310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.770312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.770316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.770320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.770330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.770335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.780240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.780275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.780283 LLDP, length 82 [|LLDP] 19:37:54.780284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.780296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.780302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1370 4dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.780304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.780308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.780311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.780316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.780321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.780324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.780326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.780336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.780342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.790244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.790274 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.790282 LLDP, length 82 [|LLDP] 19:37:54.790283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.790295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.790301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.790306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.790309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.790311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.790316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1377 eee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.790318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.790321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.790325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.790335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.790341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.800238 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.800273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.800281 LLDP, length 82 [|LLDP] 19:37:54.800282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.800294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.800299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 137f 9005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.800301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.800305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.800310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.800314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.800317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.800319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.800323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.800333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.800338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.810240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.810270 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.810278 LLDP, length 82 [|LLDP] 19:37:54.810279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.810291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.810297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1387 3125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.810299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.810302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.810306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.810311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.810316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.810319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.810321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.810331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.810337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.820241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.820269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.820276 LLDP, length 82 [|LLDP] 19:37:54.820278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.820289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.820295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.820300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.820305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.820308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.820310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 138e d245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.820312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.820316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.820319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.820329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.820335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.830239 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.830267 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.830274 LLDP, length 82 [|LLDP] 19:37:54.830275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.830286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.830292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1396 7365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.830294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.830298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.830301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.830306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.830310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.830313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.830316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.830325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.830332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.840241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.840278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.840285 LLDP, length 82 [|LLDP] 19:37:54.840287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.840298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.840305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 139e 1485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.840307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.840311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.840314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.840319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.840324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.840327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.840329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.840339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.840345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.850242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.850278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.850286 LLDP, length 82 [|LLDP] 19:37:54.850287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.850298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.850304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13a5 b5a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.850306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.850311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.850316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.850319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.850321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.850325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.850328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.850339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.850344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.860242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.860281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.860288 LLDP, length 82 [|LLDP] 19:37:54.860290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.860301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.860307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13ad 56c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.860309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.860313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.860317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.860322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.860327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.860330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.860332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.860343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.860348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.870244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.870280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.870288 LLDP, length 82 [|LLDP] 19:37:54.870289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.870301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.870306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.870311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.870314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.870316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.870321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13b4 f7e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.870323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.870326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.870330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.870340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.870346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.880240 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.880271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.880278 LLDP, length 82 [|LLDP] 19:37:54.880280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.880291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.880297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13bc 9905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.880299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.880303 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.880307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.880312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.880315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.880317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.880321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.880330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.880336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.890255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.890292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.890300 LLDP, length 82 [|LLDP] 19:37:54.890302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.890314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.890321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13c4 3a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.890322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.890326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.890330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.890335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.890340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.890343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.890345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.890356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.890362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.900247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.900279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.900287 LLDP, length 82 [|LLDP] 19:37:54.900289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.900300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.900306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.900312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.900316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.900319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.900321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13cb db45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.900323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.900327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.900331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.900341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.900346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.910243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.910271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.910278 LLDP, length 82 [|LLDP] 19:37:54.910279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.910291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.910297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13d3 7c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.910299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.910302 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.910306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.910310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.910315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.910318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.910320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.910330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.910336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.920241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.920269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.920276 LLDP, length 82 [|LLDP] 19:37:54.920278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.920289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.920295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13db 1d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.920297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.920301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.920304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.920309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.920313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.920316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.920319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.920329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.920335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.930241 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.930269 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.930276 LLDP, length 82 [|LLDP] 19:37:54.930278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.930289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.930295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13e2 bea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.930297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.930302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.930307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.930310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.930313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.930316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.930320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.930330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.930336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.940243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.940278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.940286 LLDP, length 82 [|LLDP] 19:37:54.940287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.940299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.940305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13ea 5fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.940307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.940311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.940315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.940320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.940325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.940328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.940330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.940341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.940347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.950244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.950276 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.950284 LLDP, length 82 [|LLDP] 19:37:54.950285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.950297 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.950303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.950308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.950311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.950313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.950318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13f2 00e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.950320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.950323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.950327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.950337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.950344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.960248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.960287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.960294 LLDP, length 82 [|LLDP] 19:37:54.960296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.960307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.960313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 13f9 a205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.960315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.960319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.960324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.960328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.960331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.960333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.960337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.960347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.960353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.970245 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.970281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.970290 LLDP, length 82 [|LLDP] 19:37:54.970291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.970303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.970309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1401 4325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.970311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.970314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.970318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.970323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.970327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.970330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.970333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.970342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.970348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.980259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.980306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.980314 LLDP, length 82 [|LLDP] 19:37:54.980316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.980328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.980335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.980341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.980346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.980349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.980351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1408 e445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.980353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.980357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.980360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.980371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.980376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:54.990251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.990288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:54.990296 LLDP, length 82 [|LLDP] 19:37:54.990297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:54.990309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:54.990315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1410 8565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:54.990317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:54.990321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:54.990325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:54.990330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:54.990335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.990338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:54.990340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:54.990350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:54.990356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.000244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.000273 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.000281 LLDP, length 82 [|LLDP] 19:37:55.000282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.000293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.000299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1418 2685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.000301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.000305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.000308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.000314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.000318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.000321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.000323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.000333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.000339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.010242 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.010271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.010278 LLDP, length 82 [|LLDP] 19:37:55.010280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.010291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.010297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 141f c7a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.010299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.010304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.010309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.010312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.010314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.010317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.010321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.010331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.010336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.020245 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.020280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.020288 LLDP, length 82 [|LLDP] 19:37:55.020289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.020300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.020307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1427 68c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.020309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.020312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.020316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.020321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.020325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.020328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.020331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.020340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.020346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.030244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.030281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.030288 LLDP, length 82 [|LLDP] 19:37:55.030290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.030301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.030307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.030312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.030315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.030317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.030321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 142f 09e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.030324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.030327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.030330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.030340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.030346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.040244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.040280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.040288 LLDP, length 82 [|LLDP] 19:37:55.040290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.040302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.040309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1436 ab05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.040311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.040314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.040320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.040324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.040327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.040329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.040333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.040343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.040348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.050246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.050286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.050293 LLDP, length 82 [|LLDP] 19:37:55.050295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.050306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.050312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 143e 4c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.050315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.050318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.050322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.050327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.050331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.050334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.050337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.050347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.050353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.060253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.060284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.060292 LLDP, length 82 [|LLDP] 19:37:55.060293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.060305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.060311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.060315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.060320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.060323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.060325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1445 ed45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.060327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.060331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.060334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.060345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.060351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.070244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.070275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.070282 LLDP, length 82 [|LLDP] 19:37:55.070283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.070295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.070300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 144d 8e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.070302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.070306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.070309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.070314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.070319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.070321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.070324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.070334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.070340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.080244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.080279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.080286 LLDP, length 82 [|LLDP] 19:37:55.080288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.080299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.080306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1455 2f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.080307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.080311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.080314 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.080319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.080323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.080326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.080328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.080338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.080344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.090243 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.090271 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.090279 LLDP, length 82 [|LLDP] 19:37:55.090280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.090292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.090297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 145c d0a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.090299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.090305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.090309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.090312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.090314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.090318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.090321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.090332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.090338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.100244 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.100272 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.100280 LLDP, length 82 [|LLDP] 19:37:55.100281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.100292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.100299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1464 71c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.100301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.100304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.100308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.100312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.100317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.100320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.100322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.100332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.100337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.110245 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.110280 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.110287 LLDP, length 82 [|LLDP] 19:37:55.110288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.110299 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.110305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.110310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.110313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.110315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.110319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 146c 12e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.110321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.110325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.110328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.110338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.110344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.120248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.120285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.120293 LLDP, length 82 [|LLDP] 19:37:55.120294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.120306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.120312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1473 b405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.120314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.120318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.120323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.120327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.120330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.120333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.120336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.120347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.120353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.130253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.130291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.130299 LLDP, length 82 [|LLDP] 19:37:55.130300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.130312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.130318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 147b 5525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.130320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.130323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.130327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.130332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.130337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.130340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.130342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.130353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.130359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.140248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.140279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.140286 LLDP, length 82 [|LLDP] 19:37:55.140288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.140299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.140305 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.140310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.140315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.140318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.140320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1482 f645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.140322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.140326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.140329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.140340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.140345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.150247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.150285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.150293 LLDP, length 82 [|LLDP] 19:37:55.150294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.150306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.150311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 148a 9765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.150313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.150317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.150320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.150326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.150330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.150333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.150335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.150345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.150351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.160247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.160286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.160293 LLDP, length 82 [|LLDP] 19:37:55.160295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.160306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.160312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1492 3885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.160314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.160318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.160321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.160326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.160331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.160334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.160335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.160346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.160352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.170250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.170284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.170291 LLDP, length 82 [|LLDP] 19:37:55.170293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.170304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.170310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1499 d9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.170312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.170317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.170322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.170325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.170327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.170330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.170334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.170345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.170350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.180249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.180279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.180287 LLDP, length 82 [|LLDP] 19:37:55.180289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.180300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.180306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14a1 7ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.180308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.180312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.180315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.180320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.180324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.180327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.180329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.180339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.180345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.190246 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.190275 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.190282 LLDP, length 82 [|LLDP] 19:37:55.190283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.190295 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.190300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.190306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.190308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.190310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.190316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14a9 1be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.190317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.190321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.190324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.190334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.190340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.200247 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.200281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.200288 LLDP, length 82 [|LLDP] 19:37:55.200289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.200301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.200307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14b0 bd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.200308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.200312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.200317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.200321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.200324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.200326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.200329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.200339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.200344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.210266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.210310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.210318 LLDP, length 82 [|LLDP] 19:37:55.210320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.210332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.210338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14b8 5e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.210340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.210344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.210347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.210352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.210357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.210359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.210362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.210372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.210378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.220254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.220288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.220296 LLDP, length 82 [|LLDP] 19:37:55.220298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.220309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.220316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.220321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.220325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.220328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.220331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14bf ff45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.220333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.220336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.220340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.220350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.220355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.230257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.230296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.230304 LLDP, length 82 [|LLDP] 19:37:55.230305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.230318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.230324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14c7 a065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.230326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.230330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.230333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.230339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.230343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.230347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.230349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.230360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.230366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.240257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.240302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.240311 LLDP, length 82 [|LLDP] 19:37:55.240313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.240324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.240331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14cf 4185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.240333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.240337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.240340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.240345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.240350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.240354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.240356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.240367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.240373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.250254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.250294 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.250302 LLDP, length 82 [|LLDP] 19:37:55.250304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.250315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.250322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14d6 e2a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.250324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.250329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.250334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.250337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.250339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.250343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.250346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.250357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.250363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.260252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.260292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.260300 LLDP, length 82 [|LLDP] 19:37:55.260301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.260313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.260319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14de 83c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.260321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.260325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.260328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.260333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.260338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.260341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.260343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.260353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.260359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.270252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.270292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.270300 LLDP, length 82 [|LLDP] 19:37:55.270301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.270313 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.270318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.270323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.270326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.270329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.270334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14e6 24e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.270336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.270340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.270343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.270354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.270360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.280250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.280283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.280291 LLDP, length 82 [|LLDP] 19:37:55.280293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.280304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.280310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14ed c605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.280312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.280316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.280321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.280326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.280329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.280331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.280334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.280345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.280351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.290250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.290287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.290295 LLDP, length 82 [|LLDP] 19:37:55.290297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.290308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.290314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14f5 6725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.290316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.290319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.290323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.290328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.290332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.290335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.290337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.290347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.290353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.300249 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.300278 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.300286 LLDP, length 82 [|LLDP] 19:37:55.300287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.300298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.300304 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.300309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.300314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.300317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.300319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 14fd 0845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.300321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.300324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.300328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.300338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.300344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.310248 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.310277 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.310284 LLDP, length 82 [|LLDP] 19:37:55.310285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.310297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.310302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1504 a965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.310304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.310308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.310311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.310316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.310320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.310323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.310325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.310335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.310341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.320251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.320281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.320289 LLDP, length 82 [|LLDP] 19:37:55.320291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.320302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.320308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 150c 4a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.320310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.320314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.320317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.320322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.320327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.320330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.320332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.320342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.320348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.330251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.330282 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.330290 LLDP, length 82 [|LLDP] 19:37:55.330291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.330302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.330308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1513 eba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.330311 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.330315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.330320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.330323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.330325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.330329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.330332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.330342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.330348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.340251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.340281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.340288 LLDP, length 82 [|LLDP] 19:37:55.340289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.340301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.340307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 151b 8cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.340308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.340312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.340316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.340320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.340325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.340328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.340330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.340340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.340345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.350250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.350279 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.350286 LLDP, length 82 [|LLDP] 19:37:55.350288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.350300 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.350305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.350310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.350313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.350315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.350320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1523 2de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.350322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.350325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.350329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.350339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.350344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.360250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.360288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.360296 LLDP, length 82 [|LLDP] 19:37:55.360298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.360310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.360316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 152a cf05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.360318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.360334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.360341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.360346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.360349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.360352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.360356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.360367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.360373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.370280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.370324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.370332 LLDP, length 82 [|LLDP] 19:37:55.370334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.370347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.370356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1532 7025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.370358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.370362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.370365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.370373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.370379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.370382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.370385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.370399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.370406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.380256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.380289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.380296 LLDP, length 82 [|LLDP] 19:37:55.380298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.380309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.380316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.380322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.380326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.380330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.380332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 153a 1145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.380334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.380338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.380342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.380353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.380359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.390253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.390285 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.390292 LLDP, length 82 [|LLDP] 19:37:55.390294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.390305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.390311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1541 b265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.390313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.390316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.390320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.390325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.390329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.390332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.390334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.390344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.390350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.400251 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.400281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.400288 LLDP, length 82 [|LLDP] 19:37:55.400290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.400302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.400308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1549 5385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.400310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.400313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.400317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.400322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.400327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.400330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.400332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.400356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.400362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.410252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.410287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.410294 LLDP, length 82 [|LLDP] 19:37:55.410296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.410307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.410313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1550 f4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.410315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.410320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.410325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.410327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.410330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.410333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.410337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.410347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.410352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.420254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.420283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.420291 LLDP, length 82 [|LLDP] 19:37:55.420292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.420304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.420310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1558 95c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.420312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.420315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.420318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.420323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.420328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.420330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.420332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.420342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.420348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.430252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.430281 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.430288 LLDP, length 82 [|LLDP] 19:37:55.430290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.430301 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.430307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.430312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.430314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.430317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.430322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1560 36e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.430324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.430327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.430331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.430341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.430347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.440250 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.440286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.440293 LLDP, length 82 [|LLDP] 19:37:55.440295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.440306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.440312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1567 d805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.440314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.440318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.440323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.440328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.440330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.440332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.440336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.440345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.440351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.450257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.450286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.450293 LLDP, length 82 [|LLDP] 19:37:55.450295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.450305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.450311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 156f 7925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.450313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.450317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.450321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.450325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.450330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.450333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.450335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.450345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.450351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.460263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.460309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.460318 LLDP, length 82 [|LLDP] 19:37:55.460319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.460331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.460338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.460344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.460349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.460352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.460354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1577 1a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.460356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.460360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.460364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.460376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.460382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.470255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.470295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.470302 LLDP, length 82 [|LLDP] 19:37:55.470304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.470315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.470322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 157e bb65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.470323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.470327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.470330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.470336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.470340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.470343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.470346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.470356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.470362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.480252 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.480294 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.480302 LLDP, length 82 [|LLDP] 19:37:55.480303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.480314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.480320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1586 5c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.480322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.480326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.480329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.480334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.480339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.480341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.480344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.480362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.480368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.490254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.490284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.490291 LLDP, length 82 [|LLDP] 19:37:55.490293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.490304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.490310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 158d fda5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.490312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.490318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.490322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.490325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.490327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.490331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.490335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.490345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.490351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.500255 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.500283 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.500291 LLDP, length 82 [|LLDP] 19:37:55.500292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.500304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.500310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1595 9ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.500312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.500315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.500319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.500324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.500328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.500331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.500333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.500343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.500348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.510257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.510286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.510294 LLDP, length 82 [|LLDP] 19:37:55.510295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.510306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.510312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.510317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.510320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.510322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.510327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 159d 3fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.510329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.510332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.510336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.510345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.510351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.520253 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.520288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.520296 LLDP, length 82 [|LLDP] 19:37:55.520297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.520308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.520314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15a4 e105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.520316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.520320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.520325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.520329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.520332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.520334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.520338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.520347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.520353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.530256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.530287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.530294 LLDP, length 82 [|LLDP] 19:37:55.530296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.530306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.530312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15ac 8225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.530314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.530318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.530321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.530327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.530331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.530334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.530337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.530347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.530352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.540287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.540345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.540355 LLDP, length 82 [|LLDP] 19:37:55.540358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.540370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.540378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.540384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.540390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.540393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.540396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15b4 2345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.540398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.540402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.540405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.540418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.540430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.550260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.550300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.550309 LLDP, length 82 [|LLDP] 19:37:55.550310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.550322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.550328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15bb c465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.550330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.550334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.550338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.550343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.550348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.550351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.550353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.550364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.550371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.560258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.560288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.560295 LLDP, length 82 [|LLDP] 19:37:55.560297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.560308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.560314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15c3 6585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.560316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.560320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.560323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.560328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.560333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.560336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.560338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.560348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.560354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.570256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.570287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.570295 LLDP, length 82 [|LLDP] 19:37:55.570296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.570308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.570314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15cb 06a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.570316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.570322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.570327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.570330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.570333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.570336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.570340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.570350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.570356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.580273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.580319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.580328 LLDP, length 82 [|LLDP] 19:37:55.580330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.580342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.580349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15d2 a7c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.580351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.580355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.580358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.580363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.580368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.580372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.580374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.580386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.580391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.590257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.590296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.590304 LLDP, length 82 [|LLDP] 19:37:55.590306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.590317 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.590323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.590329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.590332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.590334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.590339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15da 48e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.590341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.590345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.590348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.590359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.590365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.600256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.600286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.600294 LLDP, length 82 [|LLDP] 19:37:55.600296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.600307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.600313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15e1 ea05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.600315 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.600319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.600324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.600329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.600331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.600333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.600337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.600348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.600354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.610268 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.610312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.610320 LLDP, length 82 [|LLDP] 19:37:55.610322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.610334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.610341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15e9 8b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.610343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.610347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.610350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.610356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.610361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.610364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.610367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.610379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.610385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.620258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.620289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.620297 LLDP, length 82 [|LLDP] 19:37:55.620299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.620310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.620316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.620321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.620326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.620329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.620332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15f1 2c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.620334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.620338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.620341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.620352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.620358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.630256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.630286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.630294 LLDP, length 82 [|LLDP] 19:37:55.630295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.630306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.630312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 15f8 cd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.630314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.630318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.630322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.630327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.630332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.630334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.630337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.630347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.630353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.640266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.640317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.640325 LLDP, length 82 [|LLDP] 19:37:55.640327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.640339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.640345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1600 6e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.640347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.640351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.640355 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.640360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.640365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.640368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.640370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.640381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.640387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.650275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.650317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.650325 LLDP, length 82 [|LLDP] 19:37:55.650327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.650338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.650346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1608 0fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.650347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.650353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.650358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.650361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.650363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.650367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.650371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.650383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.650389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.660258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.660292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.660300 LLDP, length 82 [|LLDP] 19:37:55.660302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.660313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.660319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 160f b0c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.660321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.660325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.660328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.660333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.660338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.660341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.660343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.660353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.660359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.670254 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.670286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.670294 LLDP, length 82 [|LLDP] 19:37:55.670295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.670306 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.670312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.670318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.670321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.670323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.670328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1617 51e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.670330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.670334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.670337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.670347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.670353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.680287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.680347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.680356 LLDP, length 82 [|LLDP] 19:37:55.680359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.680371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.680380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 161e f305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.680382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.680386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.680393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.680399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.680402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.680405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.680409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.680423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.680430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.690268 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.690306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.690314 LLDP, length 82 [|LLDP] 19:37:55.690316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.690327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.690335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1626 9425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.690337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.690340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.690344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.690349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.690354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.690357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.690359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.690370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.690377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.700257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.700296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.700305 LLDP, length 82 [|LLDP] 19:37:55.700306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.700317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.700324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.700329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.700334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.700337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.700339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 162e 3545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.700341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.700345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.700348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.700359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.700365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.710259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.710290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.710298 LLDP, length 82 [|LLDP] 19:37:55.710300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.710311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.710317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1635 d665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.710319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.710323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.710326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.710332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.710336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.710339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.710342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.710352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.710358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.720260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.720297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.720304 LLDP, length 82 [|LLDP] 19:37:55.720305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.720316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.720322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 163d 7785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.720324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.720328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.720331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.720336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.720341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.720344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.720346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.720355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.720361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.730257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.730293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.730301 LLDP, length 82 [|LLDP] 19:37:55.730302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.730313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.730320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1645 18a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.730322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.730327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.730331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.730334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.730336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.730340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.730344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.730354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.730360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.740257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.740287 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.740295 LLDP, length 82 [|LLDP] 19:37:55.740297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.740308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.740314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 164c b9c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.740316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.740320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.740323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.740328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.740333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.740335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.740337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.740348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.740353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.750261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.750299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.750307 LLDP, length 82 [|LLDP] 19:37:55.750308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.750319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.750325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.750331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.750334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.750336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.750341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1654 5ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.750343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.750347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.750350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.750360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.750367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.760257 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.760294 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.760301 LLDP, length 82 [|LLDP] 19:37:55.760303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.760314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.760320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 165b fc05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.760322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.760326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.760331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.760335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.760338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.760341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.760344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.760354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.760359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.770256 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.770286 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.770294 LLDP, length 82 [|LLDP] 19:37:55.770295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.770306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.770312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1663 9d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.770314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.770317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.770321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.770326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.770330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.770333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.770335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.770345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.770351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.780271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.780314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.780322 LLDP, length 82 [|LLDP] 19:37:55.780325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.780336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.780344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.780349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.780354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.780357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.780360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 166b 3e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.780362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.780366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.780369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.780381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.780388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.790265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.790300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.790308 LLDP, length 82 [|LLDP] 19:37:55.790310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.790321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.790328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1672 df65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.790330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.790333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.790337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.790342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.790347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.790350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.790352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.790363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.790370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.800260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.800293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.800301 LLDP, length 82 [|LLDP] 19:37:55.800303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.800315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.800321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 167a 8085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.800323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.800327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.800330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.800335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.800340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.800343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.800345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.800356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.800362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.810260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.810297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.810305 LLDP, length 82 [|LLDP] 19:37:55.810306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.810317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.810323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1682 21a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.810325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.810330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.810335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.810338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.810340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.810344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.810347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.810357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.810363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.820258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.820289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.820297 LLDP, length 82 [|LLDP] 19:37:55.820299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.820310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.820316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1689 c2c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.820318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.820322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.820325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.820330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.820335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.820338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.820340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.820350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.820356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.830258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.830288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.830295 LLDP, length 82 [|LLDP] 19:37:55.830297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.830308 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.830314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.830319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.830322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.830324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.830329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1691 63e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.830331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.830334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.830338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.830348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.830354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.840260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.840289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.840297 LLDP, length 82 [|LLDP] 19:37:55.840299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.840310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.840317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1699 0505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.840319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.840322 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.840327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.840332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.840334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.840337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.840340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.840350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.840356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.850261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.850290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.850297 LLDP, length 82 [|LLDP] 19:37:55.850298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.850309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.850316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16a0 a625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.850318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.850321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.850325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.850330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.850335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.850338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.850340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.850350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.850356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.860260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.860290 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.860297 LLDP, length 82 [|LLDP] 19:37:55.860299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.860310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.860316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.860321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.860325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.860328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.860330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16a8 4745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.860332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.860336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.860340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.860350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.860355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.870259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.870296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.870304 LLDP, length 82 [|LLDP] 19:37:55.870305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.870317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.870323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16af e865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.870325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.870328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.870332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.870337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.870342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.870344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.870346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.870356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.870362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.880265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.880304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.880312 LLDP, length 82 [|LLDP] 19:37:55.880313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.880325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.880331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16b7 8985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.880333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.880336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.880340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.880345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.880350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.880353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.880355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.880366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.880372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.890269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.890306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.890314 LLDP, length 82 [|LLDP] 19:37:55.890316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.890328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.890334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16bf 2aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.890336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.890341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.890346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.890349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.890351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.890355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.890358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.890369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.890376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.900264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.900306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.900314 LLDP, length 82 [|LLDP] 19:37:55.900315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.900327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.900333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16c6 cbc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.900335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.900339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.900342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.900347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.900352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.900355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.900357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.900368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.900374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.910264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.910295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.910302 LLDP, length 82 [|LLDP] 19:37:55.910304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.910315 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.910321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.910326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.910329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.910331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.910337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16ce 6ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.910339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.910343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.910346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.910356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.910362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.920259 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.920296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.920303 LLDP, length 82 [|LLDP] 19:37:55.920305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.920316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.920322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16d6 0e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.920324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.920327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.920332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.920337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.920339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.920341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.920345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.920355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.920360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.930260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.930297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.930305 LLDP, length 82 [|LLDP] 19:37:55.930306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.930318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.930324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16dd af25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.930326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.930330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.930333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.930338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.930343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.930346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.930348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.930358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.930364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.940258 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.940289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.940296 LLDP, length 82 [|LLDP] 19:37:55.940298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.940310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.940316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.940320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.940325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.940328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.940330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16e5 5045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.940332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.940336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.940340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.940350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.940356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.950261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.950289 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.950297 LLDP, length 82 [|LLDP] 19:37:55.950298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.950309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.950315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16ec f165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.950317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.950320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.950324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.950329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.950334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.950336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.950338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.950348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.950354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.960261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.960291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.960298 LLDP, length 82 [|LLDP] 19:37:55.960300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.960312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.960318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16f4 9285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.960319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.960323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.960326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.960332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.960336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.960339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.960341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.960351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.960357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.970261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.970291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.970298 LLDP, length 82 [|LLDP] 19:37:55.970300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.970311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.970317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 16fc 33a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.970319 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.970324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.970329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.970332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.970334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.970337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.970341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.970351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.970357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.980265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.980296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.980304 LLDP, length 82 [|LLDP] 19:37:55.980306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.980317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.980324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1703 d4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.980326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.980329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.980333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.980338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.980343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.980345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.980347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.980357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.980363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:55.990262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.990300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:55.990309 LLDP, length 82 [|LLDP] 19:37:55.990310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:55.990321 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:55.990327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:55.990333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.990335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:55.990338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:55.990343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 170b 75e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:55.990345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:55.990348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:55.990352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:55.990362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:55.990368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.000266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.000305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.000312 LLDP, length 82 [|LLDP] 19:37:56.000314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.000325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.000332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1713 1705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.000333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.000337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.000342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.000347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.000350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.000352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.000356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.000367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.000372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.010264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.010296 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.010304 LLDP, length 82 [|LLDP] 19:37:56.010305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.010317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.010323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 171a b825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.010325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.010328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.010331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.010336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.010341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.010344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.010346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.010357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.010363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.020263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.020299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.020306 LLDP, length 82 [|LLDP] 19:37:56.020308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.020319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.020326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.020331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.020335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.020338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.020340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1722 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.020342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.020346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.020349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.020359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.020365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.030262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.030291 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.030298 LLDP, length 82 [|LLDP] 19:37:56.030300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.030311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.030316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1729 fa65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.030318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.030322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.030325 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.030330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.030335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.030338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.030340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.030350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.030355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.040266 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.040302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.040309 LLDP, length 82 [|LLDP] 19:37:56.040311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.040321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.040327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1731 9b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.040329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.040333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.040336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.040341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.040346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.040348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.040350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.040360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.040366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.050262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.050299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.050307 LLDP, length 82 [|LLDP] 19:37:56.050308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.050320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.050326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1739 3ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.050328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.050333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.050337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.050340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.050342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.050346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.050349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.050359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.050365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.060262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.060297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.060305 LLDP, length 82 [|LLDP] 19:37:56.060307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.060318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.060324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1740 ddc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.060326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.060329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.060333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.060338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.060342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.060345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.060347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.060358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.060363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.070263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.070292 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.070299 LLDP, length 82 [|LLDP] 19:37:56.070301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.070312 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.070318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.070323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.070326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.070328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.070333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1748 7ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.070335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.070339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.070342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.070352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.070359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.080263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.080293 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.080300 LLDP, length 82 [|LLDP] 19:37:56.080302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.080313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.080319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1750 2005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.080321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.080324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.080329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.080334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.080337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.080339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.080343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.080352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.080358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.090265 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.090309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.090316 LLDP, length 82 [|LLDP] 19:37:56.090318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.090329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.090336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1757 c125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.090338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.090341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.090345 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.090350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.090355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.090358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.090360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.090372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.090378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.100271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.100303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.100310 LLDP, length 82 [|LLDP] 19:37:56.100312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.100323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.100329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.100334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.100339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.100342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.100344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 175f 6245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.100346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.100350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.100353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.100365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.100371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.110264 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.110301 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.110309 LLDP, length 82 [|LLDP] 19:37:56.110310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.110322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.110328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1767 0365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.110330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.110333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.110337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.110342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.110346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.110349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.110351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.110361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.110367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.120263 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.120295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.120303 LLDP, length 82 [|LLDP] 19:37:56.120305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.120316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.120322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 176e a485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.120324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.120327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.120330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.120336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.120341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.120343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.120345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.120356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.120362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.130269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.130304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.130312 LLDP, length 82 [|LLDP] 19:37:56.130314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.130325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.130331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1776 45a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.130334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.130339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.130344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.130347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.130349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.130352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.130355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.130367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.130372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.140278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.140318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.140327 LLDP, length 82 [|LLDP] 19:37:56.140328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.140340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.140347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 177d e6c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.140349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.140353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.140356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.140361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.140366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.140369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.140371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.140383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.140390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.150275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.150318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.150327 LLDP, length 82 [|LLDP] 19:37:56.150328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.150340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.150345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.150352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.150355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.150358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.150364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1785 87e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.150366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.150369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.150373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.150385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.150391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.160267 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.160297 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.160304 LLDP, length 82 [|LLDP] 19:37:56.160306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.160317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.160324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 178d 2905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.160326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.160329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.160334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.160338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.160341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.160343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.160347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.160357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.160363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.170261 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.170288 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.170295 LLDP, length 82 [|LLDP] 19:37:56.170297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.170308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.170314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1794 ca25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.170316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.170320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.170324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.170328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.170333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.170336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.170338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.170348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.170353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.180260 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.180284 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.180291 LLDP, length 82 [|LLDP] 19:37:56.180292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.180304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.180309 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.180314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.180318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.180321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.180323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 179c 6b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.180325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.180329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.180333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.180341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.180347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.190262 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.190295 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.190302 LLDP, length 82 [|LLDP] 19:37:56.190304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.190315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.190321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17a4 0c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.190323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.190327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.190331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.190336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.190341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.190343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.190346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.190355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.190361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.200305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.200365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.200375 LLDP, length 82 [|LLDP] 19:37:56.200377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.200388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.200398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ab ad85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.200401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.200404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.200408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.200414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.200420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.200423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.200425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.200440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.200447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.210309 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.210382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.210393 LLDP, length 82 [|LLDP] 19:37:56.210395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.210408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.210418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17b3 4ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.210420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.210427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.210433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.210436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.210439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.210443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.210446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.210463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.210470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.220311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.220384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.220395 LLDP, length 82 [|LLDP] 19:37:56.220397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.220409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.220421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ba efc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.220424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.220428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.220431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.220437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.220463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.220467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.220470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.220488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.220496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.230311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.230364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.230373 LLDP, length 82 [|LLDP] 19:37:56.230375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.230388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.230395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.230405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.230409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.230411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.230419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17c2 90e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.230421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.230425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.230429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.230445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.230452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.240313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.240385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.240395 LLDP, length 82 [|LLDP] 19:37:56.240397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.240409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.240420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ca 3205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.240422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.240426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.240432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.240439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.240443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.240445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.240449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.240466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.240473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.250311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.250383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.250394 LLDP, length 82 [|LLDP] 19:37:56.250396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.250408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.250419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17d1 d325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.250422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.250426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.250430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.250436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.250442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.250446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.250448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.250464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.250471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.260307 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.260379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.260390 LLDP, length 82 [|LLDP] 19:37:56.260392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.260405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.260415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.260421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.260427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.260431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.260434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17d9 7445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.260437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.260441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.260444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.260460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.260468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.270302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.270369 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.270379 LLDP, length 82 [|LLDP] 19:37:56.270381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.270392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.270402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17e1 1565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.270404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.270408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.270411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.270417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.270423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.270426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.270428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.270443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.270450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.280277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.280324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.280332 LLDP, length 82 [|LLDP] 19:37:56.280334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.280345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.280353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17e8 b685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.280355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.280359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.280362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.280369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.280374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.280377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.280379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.280392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.280398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.290274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.290311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.290320 LLDP, length 82 [|LLDP] 19:37:56.290322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.290333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.290340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17f0 57a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.290342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.290348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.290353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.290356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.290358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.290362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.290366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.290377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.290384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.300280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.300320 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.300329 LLDP, length 82 [|LLDP] 19:37:56.300330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.300342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.300349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17f7 f8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.300351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.300355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.300358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.300364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.300369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.300372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.300374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.300385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.300392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.310274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.310320 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.310329 LLDP, length 82 [|LLDP] 19:37:56.310331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.310342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.310348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.310354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.310357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.310359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.310365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 17ff 99e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.310367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.310370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.310374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.310386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.310392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.320277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.320318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.320326 LLDP, length 82 [|LLDP] 19:37:56.320328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.320339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.320346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1807 3b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.320348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.320352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.320357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.320363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.320366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.320368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.320372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.320383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.320390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.330274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.330313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.330321 LLDP, length 82 [|LLDP] 19:37:56.330323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.330334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.330341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 180e dc25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.330343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.330347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.330350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.330356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.330361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.330364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.330366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.330378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.330384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.340273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.340314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.340322 LLDP, length 82 [|LLDP] 19:37:56.340324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.340336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.340342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.340348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.340352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.340356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.340358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1816 7d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.340360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.340364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.340367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.340379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.340385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.350272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.350315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.350323 LLDP, length 82 [|LLDP] 19:37:56.350324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.350337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.350343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 181e 1e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.350346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.350349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.350353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.350358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.350363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.350366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.350368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.350380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.350386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.360275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.360310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.360319 LLDP, length 82 [|LLDP] 19:37:56.360320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.360332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.360339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1825 bf85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.360341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.360345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.360348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.360354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.360359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.360362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.360365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.360376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.360382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.370272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.370309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.370318 LLDP, length 82 [|LLDP] 19:37:56.370319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.370331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.370338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 182d 60a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.370340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.370345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.370350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.370353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.370356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.370359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.370363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.370375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.370380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.380275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.380311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.380319 LLDP, length 82 [|LLDP] 19:37:56.380321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.380332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.380339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1835 01c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.380341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.380344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.380348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.380353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.380358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.380361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.380363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.380375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.380381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.390289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.390339 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.390348 LLDP, length 82 [|LLDP] 19:37:56.390350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.390362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.390368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.390374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.390378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.390380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.390386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 183c a2e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.390389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.390392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.390396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.390409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.390415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.400279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.400320 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.400328 LLDP, length 82 [|LLDP] 19:37:56.400330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.400342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.400349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1844 4405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.400351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.400355 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.400361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.400366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.400369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.400371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.400375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.400400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.400407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.410277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.410315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.410325 LLDP, length 82 [|LLDP] 19:37:56.410326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.410338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.410345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 184b e525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.410347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.410350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.410354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.410359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.410364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.410367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.410369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.410381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.410388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.420277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.420318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.420326 LLDP, length 82 [|LLDP] 19:37:56.420328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.420340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.420346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.420351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.420357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.420360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.420362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1853 8645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.420364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.420368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.420371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.420383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.420390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.430277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.430321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.430329 LLDP, length 82 [|LLDP] 19:37:56.430331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.430342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.430349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 185b 2765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.430351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.430355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.430358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.430363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.430368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.430371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.430373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.430384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.430391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.440277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.440314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.440322 LLDP, length 82 [|LLDP] 19:37:56.440323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.440335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.440342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1862 c885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.440344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.440348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.440351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.440356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.440361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.440364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.440366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.440377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.440384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.450274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.450311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.450319 LLDP, length 82 [|LLDP] 19:37:56.450320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.450332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.450338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 186a 69a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.450341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.450346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.450351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.450354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.450356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.450360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.450363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.450375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.450381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.460274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.460312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.460320 LLDP, length 82 [|LLDP] 19:37:56.460321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.460333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.460340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1872 0ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.460343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.460346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.460350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.460355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.460360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.460363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.460365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.460377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.460383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.470275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.470312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.470321 LLDP, length 82 [|LLDP] 19:37:56.470322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.470334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.470340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.470346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.470348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.470351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.470356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1879 abe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.470358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.470362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.470365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.470376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.470383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.480276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.480318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.480326 LLDP, length 82 [|LLDP] 19:37:56.480328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.480339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.480346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1881 4d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.480348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.480352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.480356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.480361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.480364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.480366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.480370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.480381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.480387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.490276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.490319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.490327 LLDP, length 82 [|LLDP] 19:37:56.490329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.490340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.490347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1888 ee25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.490349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.490353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.490356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.490361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.490367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.490369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.490371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.490382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.490388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.500281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.500318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.500326 LLDP, length 82 [|LLDP] 19:37:56.500328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.500339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.500346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.500351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.500356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.500359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.500361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1890 8f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.500363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.500367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.500370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.500382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.500388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.510276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.510311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.510319 LLDP, length 82 [|LLDP] 19:37:56.510321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.510332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.510339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1898 3065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.510341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.510345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.510348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.510353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.510358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.510361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.510363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.510374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.510380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.520279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.520313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.520320 LLDP, length 82 [|LLDP] 19:37:56.520322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.520333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.520340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 189f d185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.520342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.520346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.520349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.520355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.520359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.520362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.520364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.520376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.520381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.530273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.530305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.530313 LLDP, length 82 [|LLDP] 19:37:56.530315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.530326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.530332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18a7 72a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.530334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.530339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.530344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.530347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.530349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.530352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.530356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.530366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.530372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.540272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.540307 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.540315 LLDP, length 82 [|LLDP] 19:37:56.540317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.540328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.540334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18af 13c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.540336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.540340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.540343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.540348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.540353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.540356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.540358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.540368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.540374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.550270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.550306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.550313 LLDP, length 82 [|LLDP] 19:37:56.550315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.550326 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.550332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.550337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.550340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.550342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.550347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18b6 b4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.550349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.550353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.550356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.550367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.550372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.560270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.560305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.560313 LLDP, length 82 [|LLDP] 19:37:56.560314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.560326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.560332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18be 5605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.560334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.560338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.560342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.560347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.560350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.560352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.560355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.560365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.560372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.570270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.570300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.570308 LLDP, length 82 [|LLDP] 19:37:56.570309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.570320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.570326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18c5 f725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.570328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.570332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.570335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.570340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.570345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.570348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.570350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.570360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.570366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.580269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.580298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.580305 LLDP, length 82 [|LLDP] 19:37:56.580307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.580319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.580324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.580329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.580334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.580337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.580339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18cd 9845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.580341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.580345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.580348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.580358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.580364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.590269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.590298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.590306 LLDP, length 82 [|LLDP] 19:37:56.590307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.590320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.590325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18d5 3965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.590327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.590331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.590334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.590339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.590344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.590347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.590349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.590359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.590365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.600269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.600304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.600312 LLDP, length 82 [|LLDP] 19:37:56.600313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.600324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.600331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18dc da85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.600333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.600336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.600340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.600345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.600350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.600353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.600355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.600365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.600370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.610270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.610300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.610307 LLDP, length 82 [|LLDP] 19:37:56.610309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.610320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.610326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18e4 7ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.610328 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.610333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.610338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.610340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.610343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.610347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.610350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.610360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.610366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.620270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.620300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.620308 LLDP, length 82 [|LLDP] 19:37:56.620309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.620321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.620327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18ec 1cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.620330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.620333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.620337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.620342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.620347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.620350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.620352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.620362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.620368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.630273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.630303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.630310 LLDP, length 82 [|LLDP] 19:37:56.630312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.630323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.630329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.630334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.630337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.630339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.630345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18f3 bde5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.630346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.630350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.630354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.630364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.630370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.640273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.640305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.640313 LLDP, length 82 [|LLDP] 19:37:56.640314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.640326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.640332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 18fb 5f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.640334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.640337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.640342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.640347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.640350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.640352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.640356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.640365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.640371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.650270 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.650305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.650312 LLDP, length 82 [|LLDP] 19:37:56.650314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.650325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.650332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1903 0025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.650334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.650337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.650341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.650345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.650351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.650353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.650356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.650365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.650371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.660269 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.660298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.660305 LLDP, length 82 [|LLDP] 19:37:56.660307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.660318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.660324 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.660330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.660334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.660337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.660339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 190a a145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.660341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.660345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.660348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.660359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.660364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.670271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.670300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.670308 LLDP, length 82 [|LLDP] 19:37:56.670309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.670321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.670326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1912 4265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.670329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.670332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.670336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.670341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.670345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.670348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.670350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.670361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.670368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.680296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.680349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.680358 LLDP, length 82 [|LLDP] 19:37:56.680360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.680372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.680381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1919 e385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.680383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.680387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.680390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.680396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.680401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.680405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.680407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.680420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.680427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.690279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.690313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.690322 LLDP, length 82 [|LLDP] 19:37:56.690323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.690335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.690343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1921 84a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.690345 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.690350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.690354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.690357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.690360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.690363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.690367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.690377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.690383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.700271 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.700301 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.700309 LLDP, length 82 [|LLDP] 19:37:56.700310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.700322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.700328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1929 25c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.700330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.700334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.700338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.700343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.700348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.700350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.700353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.700362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.700368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.710285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.710331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.710340 LLDP, length 82 [|LLDP] 19:37:56.710342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.710354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.710360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.710366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.710369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.710372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.710377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1930 c6e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.710380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.710383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.710387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.710398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.710404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.720296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.720346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.720354 LLDP, length 82 [|LLDP] 19:37:56.720356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.720368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.720376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1938 6805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.720378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.720382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.720388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.720393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.720396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.720398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.720402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.720414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.720421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.730281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.730323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.730332 LLDP, length 82 [|LLDP] 19:37:56.730334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.730345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.730352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1940 0925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.730354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.730358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.730361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.730367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.730372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.730375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.730377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.730388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.730394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.740274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.740312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.740320 LLDP, length 82 [|LLDP] 19:37:56.740322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.740333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.740339 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.740344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.740349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.740352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.740354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1947 aa45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.740356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.740360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.740363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.740374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.740380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.750288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.750331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.750340 LLDP, length 82 [|LLDP] 19:37:56.750341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.750353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.750361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 194f 4b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.750363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.750367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.750370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.750375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.750381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.750384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.750386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.750398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.750405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.760280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.760313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.760322 LLDP, length 82 [|LLDP] 19:37:56.760323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.760335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.760342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1956 ec85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.760344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.760347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.760351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.760356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.760361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.760364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.760366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.760378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.760384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.770272 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.770302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.770310 LLDP, length 82 [|LLDP] 19:37:56.770311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.770323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.770328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 195e 8da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.770331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.770336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.770341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.770343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.770346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.770350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.770353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.770363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.770369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.780287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.780332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.780341 LLDP, length 82 [|LLDP] 19:37:56.780343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.780354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.780361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1966 2ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.780363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.780367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.780370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.780375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.780381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.780384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.780386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.780397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.780403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.790280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.790319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.790327 LLDP, length 82 [|LLDP] 19:37:56.790329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.790341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.790348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.790354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.790357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.790359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.790364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 196d cfe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.790366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.790370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.790373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.790384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.790390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.800274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.800303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.800311 LLDP, length 82 [|LLDP] 19:37:56.800312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.800324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.800330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1975 7105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.800332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.800335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.800340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.800345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.800347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.800350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.800354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.800364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.800370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.810286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.810322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.810330 LLDP, length 82 [|LLDP] 19:37:56.810331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.810343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.810349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 197d 1225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.810351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.810354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.810358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.810363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.810368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.810371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.810373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.810384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.810390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.820310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.820370 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.820380 LLDP, length 82 [|LLDP] 19:37:56.820382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.820394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.820403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.820409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.820415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.820418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.820420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1984 b345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.820423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.820426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.820430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.820444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.820451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.830277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.830316 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.830323 LLDP, length 82 [|LLDP] 19:37:56.830325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.830337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.830343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 198c 5465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.830345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.830349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.830353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.830358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.830363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.830365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.830367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.830378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.830384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.840274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.840313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.840320 LLDP, length 82 [|LLDP] 19:37:56.840322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.840333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.840340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1993 f585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.840342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.840345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.840349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.840354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.840359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.840361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.840363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.840374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.840379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.850274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.850309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.850317 LLDP, length 82 [|LLDP] 19:37:56.850318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.850330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.850336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 199b 96a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.850338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.850343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.850348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.850351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.850353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.850357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.850360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.850371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.850376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.860276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.860304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.860311 LLDP, length 82 [|LLDP] 19:37:56.860313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.860324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.860330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19a3 37c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.860332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.860336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.860339 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.860344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.860349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.860351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.860353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.860364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.860370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.870273 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.870300 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.870307 LLDP, length 82 [|LLDP] 19:37:56.870309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.870320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.870326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.870331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.870334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.870336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.870341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19aa d8e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.870343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.870347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.870350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.870360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.870367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.880274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.880303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.880310 LLDP, length 82 [|LLDP] 19:37:56.880312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.880323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.880329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19b2 7a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.880331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.880334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.880340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.880344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.880347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.880350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.880354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.880364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.880369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.890290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.890327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.890335 LLDP, length 82 [|LLDP] 19:37:56.890336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.890348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.890355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19ba 1b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.890357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.890361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.890365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.890369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.890374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.890377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.890379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.890390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.890396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.900279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.900312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.900320 LLDP, length 82 [|LLDP] 19:37:56.900322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.900333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.900340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.900345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.900350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.900353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.900355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19c1 bc45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.900357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.900361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.900364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.900375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.900381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.910275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.910309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.910317 LLDP, length 82 [|LLDP] 19:37:56.910318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.910331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.910337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19c9 5d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.910339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.910343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.910346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.910351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.910357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.910359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.910362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.910372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.910378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.920276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.920307 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.920315 LLDP, length 82 [|LLDP] 19:37:56.920316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.920328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.920334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19d0 fe85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.920336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.920339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.920343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.920348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.920353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.920356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.920358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.920369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.920375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.930276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.930305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.930313 LLDP, length 82 [|LLDP] 19:37:56.930314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.930326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.930332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19d8 9fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.930334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.930340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.930345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.930347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.930350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.930353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.930357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.930367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.930373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.940277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.940307 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.940315 LLDP, length 82 [|LLDP] 19:37:56.940316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.940328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.940334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19e0 40c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.940336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.940339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.940342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.940348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.940352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.940355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.940357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.940367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.940373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.950274 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.950302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.950310 LLDP, length 82 [|LLDP] 19:37:56.950312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.950323 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.950329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.950334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.950337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.950339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.950343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19e7 e1e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.950345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.950349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.950352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.950363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.950369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.960276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.960312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.960320 LLDP, length 82 [|LLDP] 19:37:56.960321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.960332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.960339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19ef 8305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.960341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.960344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.960349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.960355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.960357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.960359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.960363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.960372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.960378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.970348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.970395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.970405 LLDP, length 82 [|LLDP] 19:37:56.970406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.970419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.970427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19f7 2425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.970429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.970433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.970436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.970442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.970447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.970450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.970452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.970466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.970473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.980284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.980327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.980336 LLDP, length 82 [|LLDP] 19:37:56.980338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.980349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.980355 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.980360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.980365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.980368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.980370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 19fe c545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.980372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.980376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.980379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.980390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.980396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:56.990284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.990318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:56.990326 LLDP, length 82 [|LLDP] 19:37:56.990328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:56.990339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:56.990345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a06 6665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:56.990347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:56.990351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:56.990354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:56.990359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:56.990364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.990367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:56.990369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:56.990380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:56.990386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.000292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.000331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.000340 LLDP, length 82 [|LLDP] 19:37:57.000342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.000353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.000359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a0e 0785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.000361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.000365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.000368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.000373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.000378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.000381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.000384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.000395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.000402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.010281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.010321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.010329 LLDP, length 82 [|LLDP] 19:37:57.010330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.010342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.010349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a15 a8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.010351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.010356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.010361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.010364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.010366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.010369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.010373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.010383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.010389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.020286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.020322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.020330 LLDP, length 82 [|LLDP] 19:37:57.020331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.020343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.020350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a1d 49c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.020352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.020355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.020358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.020364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.020369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.020372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.020374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.020386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.020392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.030283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.030321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.030329 LLDP, length 82 [|LLDP] 19:37:57.030331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.030342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.030347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.030353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.030356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.030358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.030363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a24 eae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.030365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.030368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.030372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.030381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.030387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.040289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.040326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.040334 LLDP, length 82 [|LLDP] 19:37:57.040336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.040347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.040354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a2c 8c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.040356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.040360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.040365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.040369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.040373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.040375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.040379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.040390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.040396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.050280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.050324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.050333 LLDP, length 82 [|LLDP] 19:37:57.050334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.050346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.050352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a34 2d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.050354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.050358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.050362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.050367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.050371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.050374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.050376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.050387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.050394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.060286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.060324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.060332 LLDP, length 82 [|LLDP] 19:37:57.060333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.060345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.060351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.060356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.060361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.060364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.060367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a3b ce45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.060369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.060372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.060376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.060387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.060393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.070282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.070315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.070323 LLDP, length 82 [|LLDP] 19:37:57.070324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.070336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.070342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a43 6f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.070344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.070347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.070351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.070356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.070361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.070363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.070366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.070376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.070382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.080283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.080316 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.080323 LLDP, length 82 [|LLDP] 19:37:57.080325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.080336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.080342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a4b 1085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.080344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.080348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.080351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.080357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.080361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.080364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.080366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.080391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.080399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.090322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.090374 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.090383 LLDP, length 82 [|LLDP] 19:37:57.090385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.090397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.090406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a52 b1a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.090408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.090413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.090420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.090423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.090425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.090429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.090433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.090447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.090454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.100294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.100343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.100352 LLDP, length 82 [|LLDP] 19:37:57.100354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.100366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.100374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a5a 52c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.100376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.100380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.100383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.100389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.100393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.100397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.100399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.100411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.100419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.110286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.110322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.110330 LLDP, length 82 [|LLDP] 19:37:57.110331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.110343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.110349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.110354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.110357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.110359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.110365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a61 f3e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.110367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.110370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.110374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.110385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.110391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.120293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.120343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.120352 LLDP, length 82 [|LLDP] 19:37:57.120354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.120366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.120373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a69 9505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.120376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.120379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.120385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.120390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.120393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.120395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.120399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.120412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.120418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.130288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.130336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.130345 LLDP, length 82 [|LLDP] 19:37:57.130347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.130359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.130366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a71 3625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.130368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.130372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.130376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.130381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.130386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.130389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.130391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.130404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.130410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.140292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.140334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.140343 LLDP, length 82 [|LLDP] 19:37:57.140345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.140358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.140365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.140370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.140375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.140379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.140381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a78 d745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.140383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.140387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.140391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.140404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.140410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.150293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.150341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.150350 LLDP, length 82 [|LLDP] 19:37:57.150351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.150363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.150370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a80 7865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.150373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.150376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.150380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.150385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.150391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.150394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.150396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.150409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.150415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.160290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.160336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.160344 LLDP, length 82 [|LLDP] 19:37:57.160345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.160358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.160365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a88 1985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.160367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.160371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.160375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.160380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.160385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.160389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.160391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.160403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.160410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.170289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.170327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.170334 LLDP, length 82 [|LLDP] 19:37:57.170336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.170348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.170355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a8f baa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.170357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.170362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.170367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.170370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.170372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.170376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.170380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.170391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.170397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.180291 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.180336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.180345 LLDP, length 82 [|LLDP] 19:37:57.180346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.180358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.180366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a97 5bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.180368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.180372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.180375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.180380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.180385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.180388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.180390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.180402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.180409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.190286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.190322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.190330 LLDP, length 82 [|LLDP] 19:37:57.190331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.190343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.190348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.190354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.190357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.190359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.190364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1a9e fce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.190366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.190370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.190373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.190384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.190390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.200284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.200324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.200332 LLDP, length 82 [|LLDP] 19:37:57.200333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.200345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.200351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1aa6 9e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.200353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.200357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.200362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.200367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.200370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.200372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.200376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.200386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.200392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.210312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.210383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.210393 LLDP, length 82 [|LLDP] 19:37:57.210395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.210407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.210416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1aae 3f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.210418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.210423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.210426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.210433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.210438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.210442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.210444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.210458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.210465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.220291 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.220332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.220340 LLDP, length 82 [|LLDP] 19:37:57.220342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.220353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.220360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.220365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.220370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.220373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.220375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ab5 e045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.220378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.220381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.220385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.220397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.220403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.230286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.230317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.230325 LLDP, length 82 [|LLDP] 19:37:57.230326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.230339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.230345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1abd 8165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.230347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.230351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.230354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.230359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.230364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.230367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.230369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.230380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.230386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.240282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.240313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.240320 LLDP, length 82 [|LLDP] 19:37:57.240322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.240333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.240339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ac5 2285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.240341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.240345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.240348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.240353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.240358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.240360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.240363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.240373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.240379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.250281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.250312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.250320 LLDP, length 82 [|LLDP] 19:37:57.250322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.250333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.250339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1acc c3a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.250341 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.250346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.250351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.250353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.250355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.250359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.250363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.250373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.250379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.260281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.260311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.260319 LLDP, length 82 [|LLDP] 19:37:57.260321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.260332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.260338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ad4 64c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.260340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.260344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.260347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.260352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.260357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.260360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.260362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.260371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.260377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.270312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.270379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.270389 LLDP, length 82 [|LLDP] 19:37:57.270391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.270404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.270411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.270418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.270422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.270424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.270431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1adc 05e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.270434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.270437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.270441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.270456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.270463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.280326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.280403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.280414 LLDP, length 82 [|LLDP] 19:37:57.280416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.280429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.280439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ae3 a705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.280442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.280446 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.280452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.280459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.280463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.280466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.280470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.280487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.280496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.290301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.290348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.290357 LLDP, length 82 [|LLDP] 19:37:57.290359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.290371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.290378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1aeb 4825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.290381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.290385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.290389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.290394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.290400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.290403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.290405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.290418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.290425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.300288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.300324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.300332 LLDP, length 82 [|LLDP] 19:37:57.300334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.300345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.300352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.300357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.300362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.300365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.300367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1af2 e945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.300369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.300373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.300377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.300388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.300394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.310290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.310322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.310330 LLDP, length 82 [|LLDP] 19:37:57.310332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.310344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.310350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1afa 8a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.310352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.310356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.310360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.310365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.310369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.310373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.310375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.310385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.310391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.320287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.320331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.320339 LLDP, length 82 [|LLDP] 19:37:57.320341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.320352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.320359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b02 2b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.320361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.320365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.320368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.320373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.320378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.320381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.320384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.320394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.320400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.330289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.330323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.330330 LLDP, length 82 [|LLDP] 19:37:57.330332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.330343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.330350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b09 cca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.330352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.330357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.330362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.330365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.330368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.330371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.330375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.330386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.330392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.340286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.340328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.340335 LLDP, length 82 [|LLDP] 19:37:57.340337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.340349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.340355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b11 6dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.340357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.340361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.340365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.340370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.340374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.340378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.340380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.340391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.340397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.350288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.350324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.350331 LLDP, length 82 [|LLDP] 19:37:57.350333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.350345 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.350350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.350356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.350359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.350361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.350366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b19 0ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.350368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.350372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.350375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.350386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.350392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.360284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.360319 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.360327 LLDP, length 82 [|LLDP] 19:37:57.360329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.360340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.360347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b20 b005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.360349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.360352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.360357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.360363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.360366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.360368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.360371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.360382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.360389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.370292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.370329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.370337 LLDP, length 82 [|LLDP] 19:37:57.370338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.370350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.370356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b28 5125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.370358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.370362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.370366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.370370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.370375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.370378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.370380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.370391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.370398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.380294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.380334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.380343 LLDP, length 82 [|LLDP] 19:37:57.380344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.380356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.380363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.380369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.380374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.380377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.380379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b2f f245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.380381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.380385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.380389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.380400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.380406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.390281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.390314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.390322 LLDP, length 82 [|LLDP] 19:37:57.390323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.390334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.390340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b37 9365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.390342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.390346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.390349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.390354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.390358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.390361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.390363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.390373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.390378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.400277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.400309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.400316 LLDP, length 82 [|LLDP] 19:37:57.400318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.400329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.400335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b3f 3485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.400337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.400341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.400344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.400349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.400353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.400356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.400358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.400380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.400386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.410280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.410304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.410311 LLDP, length 82 [|LLDP] 19:37:57.410313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.410324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.410330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b46 d5a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.410332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.410337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.410341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.410344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.410347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.410350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.410354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.410363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.410368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.420279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.420308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.420315 LLDP, length 82 [|LLDP] 19:37:57.420317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.420328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.420333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b4e 76c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.420336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.420339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.420343 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.420347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.420352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.420354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.420357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.420365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.420371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.430275 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.430298 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.430305 LLDP, length 82 [|LLDP] 19:37:57.430307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.430318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.430323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.430328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.430331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.430333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.430338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b56 17e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.430339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.430343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.430346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.430355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.430361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.440278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.440299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.440306 LLDP, length 82 [|LLDP] 19:37:57.440308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.440319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.440325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b5d b905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.440327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.440330 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.440335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.440340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.440343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.440345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.440348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.440357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.440362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.450278 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.450298 LLDP, length 82 [|LLDP] 19:37:57.450300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.450312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.450317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b65 5a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.450319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.450323 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.450327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.450331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.450336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.450339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.450341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.450347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.450356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.450361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.460279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.460306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.460313 LLDP, length 82 [|LLDP] 19:37:57.460314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.460326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.460331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.460336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.460341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.460343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.460346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b6c fb45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.460348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.460351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.460355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.460364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.460370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.470277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.470306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.470313 LLDP, length 82 [|LLDP] 19:37:57.470315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.470326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.470331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b74 9c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.470333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.470337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.470340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.470345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.470350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.470352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.470354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.470363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.470369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.480280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.480302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.480309 LLDP, length 82 [|LLDP] 19:37:57.480310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.480321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.480327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b7c 3d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.480328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.480332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.480335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.480340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.480345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.480347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.480349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.480358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.480364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.490276 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.490297 LLDP, length 82 [|LLDP] 19:37:57.490299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.490311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.490316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b83 dea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.490318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.490323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.490327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.490330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.490332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.490338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.490342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.490345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.490354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.490359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.500289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.500311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.500317 LLDP, length 82 [|LLDP] 19:37:57.500319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.500330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.500336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b8b 7fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.500338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.500341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.500344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.500349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.500354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.500356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.500358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.500367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.500373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.510279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.510299 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.510306 LLDP, length 82 [|LLDP] 19:37:57.510308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.510318 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.510324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.510329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.510331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.510334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.510338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b93 20e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.510340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.510344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.510347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.510356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.510361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.520281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.520306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.520313 LLDP, length 82 [|LLDP] 19:37:57.520314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.520325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.520331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1b9a c205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.520333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.520336 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.520341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.520345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.520348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.520350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.520353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.520363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.520368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.530282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.530305 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.530313 LLDP, length 82 [|LLDP] 19:37:57.530314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.530325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.530331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ba2 6325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.530333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.530337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.530340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.530345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.530350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.530352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.530354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.530364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.530369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.540280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.540308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.540316 LLDP, length 82 [|LLDP] 19:37:57.540317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.540329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.540334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.540339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.540343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.540346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.540348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1baa 0445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.540350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.540354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.540358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.540367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.540372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.550277 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.550300 LLDP, length 82 [|LLDP] 19:37:57.550302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.550314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.550320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bb1 a565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.550322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.550325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.550329 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.550334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.550338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.550341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.550343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.550349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.550358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.550364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.560283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.560315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.560322 LLDP, length 82 [|LLDP] 19:37:57.560324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.560335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.560341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bb9 4685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.560343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.560347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.560350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.560355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.560359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.560362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.560365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.560374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.560380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.570280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.570314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.570321 LLDP, length 82 [|LLDP] 19:37:57.570323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.570334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.570340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bc0 e7a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.570342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.570347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.570352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.570354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.570356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.570360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.570363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.570372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.570378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.580279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.580303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.580310 LLDP, length 82 [|LLDP] 19:37:57.580311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.580323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.580328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bc8 88c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.580330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.580334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.580337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.580341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.580346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.580348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.580350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.580359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.580365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.590280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.590302 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.590308 LLDP, length 82 [|LLDP] 19:37:57.590310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.590320 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.590326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.590331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.590333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.590335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.590340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bd0 29e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.590342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.590345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.590349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.590357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.590363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.600280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.600309 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.600316 LLDP, length 82 [|LLDP] 19:37:57.600317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.600329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.600335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bd7 cb05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.600337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.600340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.600345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.600349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.600352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.600354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.600358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.600366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.600372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.610280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.610308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.610315 LLDP, length 82 [|LLDP] 19:37:57.610317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.610327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.610333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bdf 6c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.610335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.610339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.610342 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.610347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.610351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.610354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.610356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.610364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.610370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.620279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.620308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.620315 LLDP, length 82 [|LLDP] 19:37:57.620316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.620328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.620334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.620339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.620343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.620346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.620348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1be7 0d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.620350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.620353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.620356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.620366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.620371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.630280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.630309 LLDP, length 82 [|LLDP] 19:37:57.630310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.630322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.630328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bee ae65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.630330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.630333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.630337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.630341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.630346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.630348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.630351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.630356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.630365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.630371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.640281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.640303 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.640310 LLDP, length 82 [|LLDP] 19:37:57.640311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.640322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.640328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bf6 4f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.640330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.640333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.640337 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.640342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.640346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.640349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.640351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.640360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.640366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.650279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.650301 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.650308 LLDP, length 82 [|LLDP] 19:37:57.650309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.650320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.650326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1bfd f0a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.650327 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.650332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.650337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.650339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.650341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.650345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.650349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.650358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.650363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.660279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.660304 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.660311 LLDP, length 82 [|LLDP] 19:37:57.660312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.660324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.660329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c05 91c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.660331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.660335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.660338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.660343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.660347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.660350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.660352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.660361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.660366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.670279 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.670302 LLDP, length 82 [|LLDP] 19:37:57.670304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.670316 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.670321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.670326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.670329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.670331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.670337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.670341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c0d 32e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.670343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.670347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.670350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.670359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.670365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.680280 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.680308 LLDP, length 82 [|LLDP] 19:37:57.680310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.680322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.680327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c14 d405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.680329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.680333 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.680338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.680342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.680345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.680347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.680353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.680357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.680366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.680372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.690281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.690312 LLDP, length 82 [|LLDP] 19:37:57.690313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.690325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.690331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c1c 7525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.690333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.690336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.690340 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.690345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.690350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.690352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.690355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.690361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.690370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.690375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.700283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.700323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.700331 LLDP, length 82 [|LLDP] 19:37:57.700332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.700343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.700349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.700354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.700359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.700362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.700364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c24 1645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.700366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.700369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.700373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.700383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.700388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.710285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.710312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.710320 LLDP, length 82 [|LLDP] 19:37:57.710321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.710333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.710339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c2b b765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.710341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.710344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.710348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.710353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.710358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.710360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.710362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.710372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.710379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.720288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.720321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.720329 LLDP, length 82 [|LLDP] 19:37:57.720331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.720342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.720348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c33 5885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.720350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.720354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.720357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.720362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.720367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.720370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.720372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.720382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.720387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.730282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.730306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.730313 LLDP, length 82 [|LLDP] 19:37:57.730314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.730325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.730332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c3a f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.730334 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.730338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.730343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.730346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.730348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.730351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.730355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.730364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.730369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.740281 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.740310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.740317 LLDP, length 82 [|LLDP] 19:37:57.740318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.740329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.740335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c42 9ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.740337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.740340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.740344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.740348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.740353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.740356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.740358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.740367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.740372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.750282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.750311 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.750318 LLDP, length 82 [|LLDP] 19:37:57.750319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.750331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.750336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.750341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.750344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.750346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.750351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c4a 3be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.750352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.750356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.750360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.750368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.750374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.760284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.760308 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.760315 LLDP, length 82 [|LLDP] 19:37:57.760316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.760327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.760333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c51 dd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.760335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.760339 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.760343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.760348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.760351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.760353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.760356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.760366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.760372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.770283 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.770314 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.770322 LLDP, length 82 [|LLDP] 19:37:57.770323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.770334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.770340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c59 7e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.770342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.770345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.770349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.770354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.770358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.770361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.770363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.770372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.770378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.780282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.780306 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.780313 LLDP, length 82 [|LLDP] 19:37:57.780315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.780326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.780331 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.780336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.780340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.780343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.780345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c61 1f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.780347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.780351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.780354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.780363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.780369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.790282 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.790304 LLDP, length 82 [|LLDP] 19:37:57.790306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.790318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.790323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c68 c065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.790325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.790329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.790332 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.790337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.790341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.790344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.790346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.790353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.790362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.790367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.800287 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.800318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.800325 LLDP, length 82 [|LLDP] 19:37:57.800327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.800339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.800345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c70 6185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.800347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.800351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.800354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.800359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.800364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.800366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.800368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.800377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.800383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.810291 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.810317 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.810324 LLDP, length 82 [|LLDP] 19:37:57.810325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.810337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.810342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c78 02a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.810344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.810349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.810354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.810356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.810359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.810363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.810366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.810376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.810382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.820313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.820364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.820373 LLDP, length 82 [|LLDP] 19:37:57.820375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.820387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.820395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c7f a3c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.820397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.820401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.820405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.820410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.820415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.820418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.820420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.820432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.820438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.830288 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.830315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.830322 LLDP, length 82 [|LLDP] 19:37:57.830324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.830335 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.830340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.830345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.830348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.830351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.830356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c87 44e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.830358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.830362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.830365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.830375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.830380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.840284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.840313 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.840321 LLDP, length 82 [|LLDP] 19:37:57.840323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.840335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.840340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c8e e605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.840342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.840346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.840351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.840355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.840358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.840360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.840364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.840373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.840378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.850302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.850341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.850350 LLDP, length 82 [|LLDP] 19:37:57.850351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.850363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.850370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c96 8725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.850372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.850376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.850379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.850384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.850389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.850392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.850394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.850405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.850411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.860285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.860312 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.860319 LLDP, length 82 [|LLDP] 19:37:57.860320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.860333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.860338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.860343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.860348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.860351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.860353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1c9e 2845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.860355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.860359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.860362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.860371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.860377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.870285 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.870315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.870322 LLDP, length 82 [|LLDP] 19:37:57.870324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.870335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.870341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ca5 c965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.870343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.870347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.870350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.870355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.870359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.870362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.870364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.870373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.870379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.880293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.880332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.880341 LLDP, length 82 [|LLDP] 19:37:57.880342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.880354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.880361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cad 6a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.880363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.880366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.880370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.880375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.880380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.880382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.880385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.880395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.880401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.890312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.890357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.890365 LLDP, length 82 [|LLDP] 19:37:57.890367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.890379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.890386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cb5 0ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.890388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.890393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.890398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.890401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.890403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.890407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.890411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.890422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.890429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.900289 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.900315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.900322 LLDP, length 82 [|LLDP] 19:37:57.900324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.900335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.900341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cbc acc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.900343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.900346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.900350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.900354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.900359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.900362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.900364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.900374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.900380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.910286 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.910318 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.910325 LLDP, length 82 [|LLDP] 19:37:57.910326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.910338 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.910344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.910349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.910352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.910354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.910359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cc4 4de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.910361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.910364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.910368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.910377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.910383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.920306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.920355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.920364 LLDP, length 82 [|LLDP] 19:37:57.920366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.920378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.920384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ccb ef05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.920387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.920390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.920396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.920401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.920405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.920407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.920410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.920421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.920427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.930290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.930315 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.930322 LLDP, length 82 [|LLDP] 19:37:57.930324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.930335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.930341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cd3 9025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.930343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.930347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.930351 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.930355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.930360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.930362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.930364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.930374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.930379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.940294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.940324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.940331 LLDP, length 82 [|LLDP] 19:37:57.940333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.940344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.940350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.940356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.940360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.940363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.940365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cdb 3145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.940367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.940371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.940374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.940384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.940389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.950335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.950396 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.950405 LLDP, length 82 [|LLDP] 19:37:57.950407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.950419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.950429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ce2 d265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.950432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.950435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.950439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.950445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.950451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.950454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.950457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.950471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.950477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.960324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.960371 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.960380 LLDP, length 82 [|LLDP] 19:37:57.960382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.960394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.960403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cea 7385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.960406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.960410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.960413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.960420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.960426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.960430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.960432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.960447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.960454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.970301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.970341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.970349 LLDP, length 82 [|LLDP] 19:37:57.970351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.970363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.970369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cf2 14a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.970371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.970377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.970382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.970385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.970387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.970391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.970394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.970405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.970411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.980292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.980324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.980332 LLDP, length 82 [|LLDP] 19:37:57.980333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.980345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.980351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1cf9 b5c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.980353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.980357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.980361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.980366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.980370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.980373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.980375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.980386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.980392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:57.990295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.990326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:57.990333 LLDP, length 82 [|LLDP] 19:37:57.990334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:57.990346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:57.990352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:57.990357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.990360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:57.990362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:57.990366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d01 56e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:57.990369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:57.990372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:57.990376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:57.990386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:57.990392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.000306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.000343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.000351 LLDP, length 82 [|LLDP] 19:37:58.000353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.000365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.000371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d08 f805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.000374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.000377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.000383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.000388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.000391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.000393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.000397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.000407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.000413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.010297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.010331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.010339 LLDP, length 82 [|LLDP] 19:37:58.010341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.010352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.010359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d10 9925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.010361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.010364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.010368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.010373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.010377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.010380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.010383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.010394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.010400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.020297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.020327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.020335 LLDP, length 82 [|LLDP] 19:37:58.020336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.020347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.020354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.020359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.020364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.020367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.020369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d18 3a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.020371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.020374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.020378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.020388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.020393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.030290 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.030321 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.030329 LLDP, length 82 [|LLDP] 19:37:58.030330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.030341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.030347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d1f db65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.030349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.030353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.030356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.030361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.030366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.030368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.030370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.030380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.030386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.040293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.040328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.040336 LLDP, length 82 [|LLDP] 19:37:58.040337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.040348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.040354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d27 7c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.040356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.040360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.040363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.040368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.040373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.040375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.040377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.040387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.040393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.050293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.050323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.050330 LLDP, length 82 [|LLDP] 19:37:58.050332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.050343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.050348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d2f 1da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.050350 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.050355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.050360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.050363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.050365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.050369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.050372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.050382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.050388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.060293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.060324 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.060331 LLDP, length 82 [|LLDP] 19:37:58.060333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.060344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.060350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d36 bec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.060352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.060356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.060359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.060364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.060368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.060371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.060373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.060384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.060390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.070292 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.070328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.070335 LLDP, length 82 [|LLDP] 19:37:58.070337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.070348 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.070354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.070360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.070362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.070365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.070370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d3e 5fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.070372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.070375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.070379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.070389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.070394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.080295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.080331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.080338 LLDP, length 82 [|LLDP] 19:37:58.080340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.080351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.080358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d46 0105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.080360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.080363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.080368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.080373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.080376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.080378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.080382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.080392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.080397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.090293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.090323 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.090331 LLDP, length 82 [|LLDP] 19:37:58.090332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.090344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.090350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d4d a225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.090352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.090356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.090359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.090364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.090369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.090372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.090374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.090384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.090390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.100297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.100327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.100335 LLDP, length 82 [|LLDP] 19:37:58.100336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.100347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.100353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.100358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.100363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.100366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.100368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d55 4345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.100370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.100373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.100377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.100387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.100392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.110297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.110331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.110338 LLDP, length 82 [|LLDP] 19:37:58.110340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.110351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.110357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d5c e465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.110359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.110363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.110366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.110371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.110376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.110379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.110381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.110391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.110398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.120296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.120327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.120335 LLDP, length 82 [|LLDP] 19:37:58.120336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.120348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.120355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d64 8585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.120357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.120361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.120364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.120370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.120375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.120377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.120380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.120391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.120397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.130295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.130333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.130340 LLDP, length 82 [|LLDP] 19:37:58.130342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.130353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.130359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d6c 26a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.130362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.130367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.130371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.130374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.130377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.130380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.130384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.130394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.130399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.140294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.140330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.140337 LLDP, length 82 [|LLDP] 19:37:58.140338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.140350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.140355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d73 c7c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.140358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.140361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.140365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.140370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.140374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.140377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.140379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.140389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.140395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.150297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.150326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.150333 LLDP, length 82 [|LLDP] 19:37:58.150334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.150346 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.150351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.150356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.150359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.150361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.150366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d7b 68e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.150368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.150372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.150375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.150384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.150390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.160293 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.160322 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.160330 LLDP, length 82 [|LLDP] 19:37:58.160331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.160343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.160349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d83 0a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.160351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.160354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.160360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.160364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.160367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.160369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.160372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.160382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.160388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.170296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.170326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.170333 LLDP, length 82 [|LLDP] 19:37:58.170335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.170346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.170352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d8a ab25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.170354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.170358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.170361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.170366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.170371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.170374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.170376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.170387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.170392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.180294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.180331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.180339 LLDP, length 82 [|LLDP] 19:37:58.180341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.180353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.180360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.180365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.180369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.180372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.180374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d92 4c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.180376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.180380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.180383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.180394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.180400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.190299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.190341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.190349 LLDP, length 82 [|LLDP] 19:37:58.190350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.190362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.190369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1d99 ed65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.190371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.190375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.190378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.190383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.190388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.190391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.190393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.190404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.190410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.200296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.200332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.200340 LLDP, length 82 [|LLDP] 19:37:58.200341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.200353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.200359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1da1 8e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.200361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.200364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.200368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.200373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.200378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.200381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.200383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.200393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.200398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.210298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.210328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.210335 LLDP, length 82 [|LLDP] 19:37:58.210337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.210348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.210354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1da9 2fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.210356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.210361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.210366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.210369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.210371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.210375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.210378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.210388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.210394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.220294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.220325 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.220332 LLDP, length 82 [|LLDP] 19:37:58.220334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.220345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.220352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1db0 d0c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.220354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.220357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.220361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.220366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.220371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.220374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.220376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.220385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.220392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.230300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.230336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.230343 LLDP, length 82 [|LLDP] 19:37:58.230345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.230356 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.230362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.230367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.230370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.230372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.230377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1db8 71e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.230379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.230383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.230386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.230396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.230402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.240294 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.240325 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.240333 LLDP, length 82 [|LLDP] 19:37:58.240334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.240346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.240352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dc0 1305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.240354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.240358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.240363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.240368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.240371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.240373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.240376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.240387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.240393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.250296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.250330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.250338 LLDP, length 82 [|LLDP] 19:37:58.250339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.250351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.250357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dc7 b425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.250359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.250363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.250366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.250371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.250376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.250378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.250381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.250392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.250398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.260296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.260326 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.260334 LLDP, length 82 [|LLDP] 19:37:58.260335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.260347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.260352 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.260358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.260362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.260366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.260368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dcf 5545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.260370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.260373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.260377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.260387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.260393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.270301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.270331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.270339 LLDP, length 82 [|LLDP] 19:37:58.270340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.270352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.270358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dd6 f665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.270360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.270364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.270367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.270372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.270377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.270380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.270382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.270393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.270398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.280315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.280363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.280372 LLDP, length 82 [|LLDP] 19:37:58.280373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.280385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.280393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dde 9785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.280395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.280399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.280403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.280408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.280413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.280417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.280419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.280431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.280437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.290300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.290341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.290349 LLDP, length 82 [|LLDP] 19:37:58.290351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.290363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.290369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1de6 38a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.290372 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.290376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.290381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.290384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.290387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.290390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.290394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.290404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.290410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.300297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.300328 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.300336 LLDP, length 82 [|LLDP] 19:37:58.300337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.300349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.300355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ded d9c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.300357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.300361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.300364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.300369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.300374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.300376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.300379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.300389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.300395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.310304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.310340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.310348 LLDP, length 82 [|LLDP] 19:37:58.310350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.310361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.310367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.310373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.310375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.310377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.310383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1df5 7ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.310385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.310388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.310391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.310402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.310408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.320298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.320335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.320343 LLDP, length 82 [|LLDP] 19:37:58.320344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.320356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.320362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1dfd 1c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.320364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.320367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.320372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.320377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.320380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.320382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.320386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.320397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.320403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.330297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.330327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.330334 LLDP, length 82 [|LLDP] 19:37:58.330336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.330347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.330354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e04 bd25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.330356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.330359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.330363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.330368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.330372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.330375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.330377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.330387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.330393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.340298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.340327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.340334 LLDP, length 82 [|LLDP] 19:37:58.340336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.340347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.340353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.340358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.340362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.340365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.340368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e0c 5e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.340370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.340373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.340377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.340387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.340393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.350297 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.350334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.350341 LLDP, length 82 [|LLDP] 19:37:58.350343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.350355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.350361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e13 ff65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.350363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.350366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.350370 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.350375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.350380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.350382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.350385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.350394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.350400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.360295 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.360331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.360338 LLDP, length 82 [|LLDP] 19:37:58.360340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.360351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.360357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e1b a085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.360359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.360362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.360365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.360370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.360375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.360377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.360379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.360389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.360395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.370296 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.370335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.370343 LLDP, length 82 [|LLDP] 19:37:58.370344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.370356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.370362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e23 41a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.370364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.370369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.370373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.370376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.370379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.370382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.370386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.370396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.370401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.380300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.380335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.380343 LLDP, length 82 [|LLDP] 19:37:58.380344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.380356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.380362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e2a e2c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.380364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.380368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.380371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.380376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.380381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.380384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.380386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.380396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.380403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.390298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.390329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.390336 LLDP, length 82 [|LLDP] 19:37:58.390337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.390349 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.390354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.390360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.390363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.390365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.390370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e32 83e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.390372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.390375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.390379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.390389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.390395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.400304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.400334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.400342 LLDP, length 82 [|LLDP] 19:37:58.400344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.400355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.400362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e3a 2505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.400364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.400368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.400373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.400377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.400380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.400382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.400386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.400409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.400415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.410300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.410329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.410337 LLDP, length 82 [|LLDP] 19:37:58.410338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.410349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.410355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e41 c625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.410357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.410361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.410364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.410369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.410374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.410377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.410379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.410389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.410394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.420298 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.420327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.420335 LLDP, length 82 [|LLDP] 19:37:58.420337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.420348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.420354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.420359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.420364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.420367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.420369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e49 6745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.420371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.420375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.420378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.420388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.420394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.430301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.430336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.430344 LLDP, length 82 [|LLDP] 19:37:58.430345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.430357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.430363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e51 0865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.430365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.430369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.430372 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.430377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.430382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.430385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.430387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.430398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.430404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.440301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.440332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.440340 LLDP, length 82 [|LLDP] 19:37:58.440342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.440353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.440359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e58 a985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.440361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.440365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.440368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.440373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.440378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.440381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.440383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.440393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.440399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.450299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.450329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.450336 LLDP, length 82 [|LLDP] 19:37:58.450338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.450350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.450356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e60 4aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.450358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.450362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.450367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.450370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.450372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.450376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.450379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.450389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.450394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.460301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.460330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.460338 LLDP, length 82 [|LLDP] 19:37:58.460339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.460350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.460356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e67 ebc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.460358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.460362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.460366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.460371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.460375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.460378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.460380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.460390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.460396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.470299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.470327 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.470335 LLDP, length 82 [|LLDP] 19:37:58.470336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.470347 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.470353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.470358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.470361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.470363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.470368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e6f 8ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.470370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.470373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.470377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.470387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.470392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.480299 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.480334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.480342 LLDP, length 82 [|LLDP] 19:37:58.480343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.480355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.480360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e77 2e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.480362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.480366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.480371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.480375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.480378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.480380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.480384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.480394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.480399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.490300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.490338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.490345 LLDP, length 82 [|LLDP] 19:37:58.490346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.490358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.490364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e7e cf25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.490366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.490369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.490373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.490378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.490382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.490385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.490387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.490398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.490403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.500305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.500337 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.500344 LLDP, length 82 [|LLDP] 19:37:58.500346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.500357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.500363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.500367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.500372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.500375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.500377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e86 7045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.500379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.500383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.500387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.500397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.500403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.510301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.510329 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.510337 LLDP, length 82 [|LLDP] 19:37:58.510339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.510350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.510356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e8e 1165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.510358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.510362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.510365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.510371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.510375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.510378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.510380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.510391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.510396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.520301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.520331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.520338 LLDP, length 82 [|LLDP] 19:37:58.520340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.520351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.520357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e95 b285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.520359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.520362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.520366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.520371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.520375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.520378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.520380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.520389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.520395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.530300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.530330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.530338 LLDP, length 82 [|LLDP] 19:37:58.530339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.530350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.530356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1e9d 53a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.530358 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.530363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.530368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.530371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.530373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.530377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.530380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.530390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.530396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.540301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.540332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.540340 LLDP, length 82 [|LLDP] 19:37:58.540342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.540353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.540359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ea4 f4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.540361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.540365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.540369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.540374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.540378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.540381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.540383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.540393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.540399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.550300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.550333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.550340 LLDP, length 82 [|LLDP] 19:37:58.550341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.550353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.550359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.550364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.550367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.550369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.550374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1eac 95e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.550376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.550380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.550383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.550394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.550400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.560301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.560330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.560337 LLDP, length 82 [|LLDP] 19:37:58.560339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.560350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.560356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1eb4 3705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.560359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.560362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.560367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.560372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.560374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.560377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.560380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.560390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.560396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.573476 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.573506 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.573513 LLDP, length 82 [|LLDP] 19:37:58.573514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.573525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.573531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ebb d825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.573533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.573537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.573540 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.573545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.573550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.573553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.573555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.573564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.573570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.580302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.580338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.580345 LLDP, length 82 [|LLDP] 19:37:58.580347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.580358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.580364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.580369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.580373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.580376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.580378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ec3 7945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.580380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.580384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.580387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.580398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.580403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.590301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.590330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.590337 LLDP, length 82 [|LLDP] 19:37:58.590339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.590350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.590355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ecb 1a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.590357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.590361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.590364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.590369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.590374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.590377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.590379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.590389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.590394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.600301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.600331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.600338 LLDP, length 82 [|LLDP] 19:37:58.600340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.600351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.600356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ed2 bb85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.600359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.600362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.600366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.600370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.600375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.600378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.600380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.600390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.600395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.610302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.610331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.610338 LLDP, length 82 [|LLDP] 19:37:58.610340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.610351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.610357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1eda 5ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.610359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.610364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.610369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.610372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.610374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.610378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.610381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.610392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.610397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.620301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.620336 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.620343 LLDP, length 82 [|LLDP] 19:37:58.620344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.620356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.620362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ee1 fdc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.620364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.620367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.620371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.620376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.620381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.620384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.620386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.620395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.620402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.630306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.630335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.630342 LLDP, length 82 [|LLDP] 19:37:58.630343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.630354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.630360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.630366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.630369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.630371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.630376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ee9 9ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.630378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.630381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.630385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.630394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.630401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.640300 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.640330 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.640337 LLDP, length 82 [|LLDP] 19:37:58.640339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.640350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.640356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ef1 4005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.640358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.640361 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.640367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.640372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.640375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.640377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.640380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.640391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.640396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.650303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.650333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.650341 LLDP, length 82 [|LLDP] 19:37:58.650342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.650353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.650359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ef8 e125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.650361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.650365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.650368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.650373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.650378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.650381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.650383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.650393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.650399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.660302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.660331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.660338 LLDP, length 82 [|LLDP] 19:37:58.660340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.660351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.660357 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.660362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.660367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.660370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.660372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f00 8245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.660374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.660377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.660381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.660391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.660397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.670313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.670356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.670364 LLDP, length 82 [|LLDP] 19:37:58.670366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.670377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.670383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f08 2365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.670385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.670389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.670393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.670398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.670403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.670406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.670408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.670419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.670425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.680310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.680355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.680364 LLDP, length 82 [|LLDP] 19:37:58.680365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.680377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.680383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f0f c485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.680386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.680389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.680393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.680398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.680403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.680405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.680408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.680419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.680426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.690301 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.690337 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.690345 LLDP, length 82 [|LLDP] 19:37:58.690347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.690358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.690364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f17 65a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.690366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.690371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.690376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.690379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.690381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.690385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.690388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.690398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.690404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.700302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.700332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.700340 LLDP, length 82 [|LLDP] 19:37:58.700341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.700352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.700358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f1f 06c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.700360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.700364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.700368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.700373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.700378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.700381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.700383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.700393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.700399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.710303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.710333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.710341 LLDP, length 82 [|LLDP] 19:37:58.710342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.710353 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.710358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.710364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.710367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.710369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.710373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f26 a7e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.710375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.710379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.710382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.710392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.710397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.720303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.720335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.720343 LLDP, length 82 [|LLDP] 19:37:58.720344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.720356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.720362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f2e 4905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.720363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.720367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.720372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.720377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.720380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.720382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.720386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.720396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.720402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.730304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.730340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.730348 LLDP, length 82 [|LLDP] 19:37:58.730350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.730361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.730367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f35 ea25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.730369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.730373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.730377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.730382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.730386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.730389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.730391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.730401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.730407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.740302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.740333 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.740340 LLDP, length 82 [|LLDP] 19:37:58.740342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.740353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.740359 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.740364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.740369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.740371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.740373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f3d 8b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.740375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.740379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.740382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.740393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.740398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.750302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.750331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.750339 LLDP, length 82 [|LLDP] 19:37:58.750341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.750352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.750358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f45 2c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.750360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.750364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.750367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.750372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.750377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.750380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.750382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.750392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.750398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.760303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.760332 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.760340 LLDP, length 82 [|LLDP] 19:37:58.760341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.760353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.760359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f4c cd85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.760361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.760364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.760368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.760373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.760378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.760380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.760382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.760393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.760398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.770303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.770331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.770339 LLDP, length 82 [|LLDP] 19:37:58.770340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.770352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.770358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f54 6ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.770360 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.770365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.770370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.770373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.770375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.770379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.770382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.770392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.770397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.780307 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.780338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.780346 LLDP, length 82 [|LLDP] 19:37:58.780348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.780359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.780365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f5c 0fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.780367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.780371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.780374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.780380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.780385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.780388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.780390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.780401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.780407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.790306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.790343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.790350 LLDP, length 82 [|LLDP] 19:37:58.790351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.790362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.790368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.790373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.790376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.790378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.790383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f63 b0e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.790385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.790388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.790392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.790402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.790407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.800303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.800338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.800346 LLDP, length 82 [|LLDP] 19:37:58.800347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.800359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.800365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f6b 5205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.800367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.800371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.800376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.800380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.800383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.800385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.800388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.800398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.800404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.810302 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.810331 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.810339 LLDP, length 82 [|LLDP] 19:37:58.810353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.810367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.810373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f72 f325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.810375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.810378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.810382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.810387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.810392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.810394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.810396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.810406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.810412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.820335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.820382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.820390 LLDP, length 82 [|LLDP] 19:37:58.820392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.820404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.820413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.820419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.820424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.820428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.820430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f7a 9445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.820432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.820436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.820440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.820454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.820461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.830311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.830348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.830355 LLDP, length 82 [|LLDP] 19:37:58.830356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.830368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.830375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f82 3565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.830377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.830381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.830384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.830389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.830394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.830397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.830399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.830409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.830416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.840308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.840341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.840348 LLDP, length 82 [|LLDP] 19:37:58.840350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.840361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.840367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f89 d685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.840369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.840373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.840376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.840381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.840386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.840389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.840391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.840401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.840407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.850304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.850335 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.850342 LLDP, length 82 [|LLDP] 19:37:58.850344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.850355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.850361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f91 77a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.850363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.850368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.850373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.850375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.850378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.850381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.850385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.850395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.850401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.860303 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.860339 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.860346 LLDP, length 82 [|LLDP] 19:37:58.860348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.860359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.860365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1f99 18c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.860367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.860371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.860374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.860379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.860384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.860386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.860388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.860398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.860404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.870305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.870344 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.870351 LLDP, length 82 [|LLDP] 19:37:58.870352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.870363 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.870369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.870374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.870377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.870379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.870384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fa0 b9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.870386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.870390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.870393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.870403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.870409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.880315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.880347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.880355 LLDP, length 82 [|LLDP] 19:37:58.880357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.880367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.880374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fa8 5b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.880375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.880379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.880384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.880389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.880392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.880394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.880398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.880408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.880414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.890327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.890373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.890381 LLDP, length 82 [|LLDP] 19:37:58.890383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.890395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.890402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1faf fc25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.890404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.890407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.890411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.890417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.890421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.890424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.890427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.890438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.890444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.900308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.900338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.900345 LLDP, length 82 [|LLDP] 19:37:58.900347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.900358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.900364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.900370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.900375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.900378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.900380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fb7 9d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.900382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.900386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.900390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.900400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.900405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.910304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.910334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.910341 LLDP, length 82 [|LLDP] 19:37:58.910342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.910354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.910360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fbf 3e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.910362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.910366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.910369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.910374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.910379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.910382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.910384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.910394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.910399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.920306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.920342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.920349 LLDP, length 82 [|LLDP] 19:37:58.920351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.920362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.920368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fc6 df85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.920370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.920374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.920377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.920382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.920387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.920390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.920392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.920402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.920408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.930304 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.930341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.930348 LLDP, length 82 [|LLDP] 19:37:58.930350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.930361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.930367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fce 80a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.930369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.930374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.930378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.930381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.930383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.930387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.930390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.930400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.930405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.940308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.940343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.940351 LLDP, length 82 [|LLDP] 19:37:58.940353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.940364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.940370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fd6 21c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.940372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.940375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.940378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.940383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.940388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.940391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.940393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.940403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.940409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.950305 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.950334 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.950342 LLDP, length 82 [|LLDP] 19:37:58.950343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.950354 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.950360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.950365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.950368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.950370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.950375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fdd c2e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.950377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.950381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.950385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.950395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.950400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.960333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.960392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.960402 LLDP, length 82 [|LLDP] 19:37:58.960404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.960417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.960424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fe5 6405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.960427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.960431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.960436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.960441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.960444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.960447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.960450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.960464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.960470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.970310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.970342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.970350 LLDP, length 82 [|LLDP] 19:37:58.970352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.970364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.970370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1fed 0525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.970372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.970376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.970380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.970385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.970389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.970392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.970394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.970405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.970411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.980306 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.980338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.980346 LLDP, length 82 [|LLDP] 19:37:58.980348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.980359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.980365 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.980371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.980376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.980378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.980380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ff4 a645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.980383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.980386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.980390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.980400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.980407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:58.990322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.990374 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:58.990382 LLDP, length 82 [|LLDP] 19:37:58.990384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:58.990396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:58.990403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 1ffc 4765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:58.990405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:58.990409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:58.990413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:58.990418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:58.990423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.990426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:58.990429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:58.990440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:58.990446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.000313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.000353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.000361 LLDP, length 82 [|LLDP] 19:37:59.000362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.000374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.000380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2003 e885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.000382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.000386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.000389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.000394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.000399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.000402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.000404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.000415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.000421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.010309 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.010340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.010347 LLDP, length 82 [|LLDP] 19:37:59.010348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.010359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.010365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 200b 89a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.010368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.010372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.010377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.010380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.010382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.010386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.010389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.010399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.010405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.020322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.020362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.020371 LLDP, length 82 [|LLDP] 19:37:59.020373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.020384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.020397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2013 2ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.020399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.020403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.020407 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.020412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.020417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.020420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.020422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.020434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.020440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.030313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.030352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.030360 LLDP, length 82 [|LLDP] 19:37:59.030362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.030373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.030379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.030385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.030387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.030389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.030394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 201a cbe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.030396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.030400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.030404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.030414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.030420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.040310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.040340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.040348 LLDP, length 82 [|LLDP] 19:37:59.040349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.040360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.040366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2022 6d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.040368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.040372 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.040377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.040382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.040385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.040387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.040390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.040400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.040406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.050307 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.050338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.050345 LLDP, length 82 [|LLDP] 19:37:59.050347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.050358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.050364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 202a 0e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.050366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.050369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.050373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.050378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.050383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.050385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.050388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.050398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.050403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.060324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.060366 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.060374 LLDP, length 82 [|LLDP] 19:37:59.060376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.060388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.060395 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.060400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.060405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.060408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.060411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2031 af45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.060413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.060416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.060420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.060433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.060439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.070314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.070345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.070353 LLDP, length 82 [|LLDP] 19:37:59.070354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.070365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.070372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2039 5065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.070373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.070377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.070381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.070386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.070390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.070393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.070395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.070406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.070412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.080308 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.080346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.080353 LLDP, length 82 [|LLDP] 19:37:59.080355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.080366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.080372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2040 f185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.080374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.080378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.080381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.080387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.080391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.080394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.080397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.080407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.080413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.090334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.090400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.090410 LLDP, length 82 [|LLDP] 19:37:59.090411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.090423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.090433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2048 92a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.090435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.090441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.090447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.090451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.090453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.090457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.090460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.090474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.090482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.100322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.100361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.100370 LLDP, length 82 [|LLDP] 19:37:59.100371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.100383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.100390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2050 33c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.100393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.100396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.100400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.100405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.100410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.100413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.100415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.100426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.100432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.110314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.110348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.110356 LLDP, length 82 [|LLDP] 19:37:59.110357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.110369 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.110374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.110380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.110382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.110385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.110390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2057 d4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.110392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.110395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.110399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.110410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.110416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.120315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.120346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.120353 LLDP, length 82 [|LLDP] 19:37:59.120355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.120367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.120373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 205f 7605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.120375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.120378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.120383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.120388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.120391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.120393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.120396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.120406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.120412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.130316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.130350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.130357 LLDP, length 82 [|LLDP] 19:37:59.130359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.130370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.130376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2067 1725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.130378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.130382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.130385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.130391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.130396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.130399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.130401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.130411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.130417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.140310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.140350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.140358 LLDP, length 82 [|LLDP] 19:37:59.140359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.140370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.140376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.140381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.140386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.140389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.140392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 206e b845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.140393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.140397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.140400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.140411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.140417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.150311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.150349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.150356 LLDP, length 82 [|LLDP] 19:37:59.150358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.150369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.150375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2076 5965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.150377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.150381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.150384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.150389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.150394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.150397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.150399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.150409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.150415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.160310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.160341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.160348 LLDP, length 82 [|LLDP] 19:37:59.160350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.160361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.160367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 207d fa85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.160369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.160373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.160376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.160381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.160386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.160389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.160391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.160401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.160407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.170310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.170340 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.170347 LLDP, length 82 [|LLDP] 19:37:59.170348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.170360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.170366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2085 9ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.170368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.170373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.170377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.170380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.170382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.170386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.170390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.170400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.170405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.180312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.180348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.180356 LLDP, length 82 [|LLDP] 19:37:59.180357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.180369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.180375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 208d 3cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.180377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.180380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.180384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.180389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.180394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.180397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.180399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.180409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.180414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.190320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.190352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.190361 LLDP, length 82 [|LLDP] 19:37:59.190362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.190374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.190380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.190385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.190388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.190390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.190395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2094 dde5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.190397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.190401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.190404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.190415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.190421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.200314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.200347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.200354 LLDP, length 82 [|LLDP] 19:37:59.200356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.200367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.200374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 209c 7f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.200376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.200380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.200385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.200389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.200392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.200394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.200398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.200408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.200414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.210312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.210342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.210350 LLDP, length 82 [|LLDP] 19:37:59.210351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.210362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.210368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20a4 2025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.210370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.210374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.210377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.210382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.210387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.210390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.210392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.210402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.210408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.220310 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.220338 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.220345 LLDP, length 82 [|LLDP] 19:37:59.220346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.220358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.220364 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.220369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.220374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.220377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.220379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20ab c145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.220381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.220385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.220388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.220398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.220404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.230311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.230341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.230348 LLDP, length 82 [|LLDP] 19:37:59.230350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.230361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.230367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20b3 6265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.230369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.230373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.230376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.230381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.230386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.230388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.230391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.230401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.230407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.240317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.240348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.240355 LLDP, length 82 [|LLDP] 19:37:59.240357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.240368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.240374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20bb 0385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.240376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.240380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.240384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.240389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.240393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.240396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.240399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.240409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.240415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.250313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.250348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.250355 LLDP, length 82 [|LLDP] 19:37:59.250357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.250368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.250374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20c2 a4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.250376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.250382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.250387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.250390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.250392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.250396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.250399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.250409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.250414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.260311 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.260341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.260349 LLDP, length 82 [|LLDP] 19:37:59.260351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.260362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.260368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20ca 45c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.260370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.260374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.260377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.260382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.260387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.260390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.260392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.260402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.260407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.270316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.270346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.270354 LLDP, length 82 [|LLDP] 19:37:59.270355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.270366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.270372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.270378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.270381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.270383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.270388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20d1 e6e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.270389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.270393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.270397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.270407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.270413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.280313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.280351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.280359 LLDP, length 82 [|LLDP] 19:37:59.280360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.280371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.280377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20d9 8805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.280379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.280383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.280387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.280392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.280395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.280397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.280401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.280411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.280417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.290316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.290347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.290355 LLDP, length 82 [|LLDP] 19:37:59.290356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.290368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.290374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20e1 2925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.290376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.290380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.290383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.290388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.290393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.290396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.290398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.290408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.290414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.300316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.300350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.300357 LLDP, length 82 [|LLDP] 19:37:59.300359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.300370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.300377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.300382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.300387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.300390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.300392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20e8 ca45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.300394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.300398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.300401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.300412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.300417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.310315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.310345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.310353 LLDP, length 82 [|LLDP] 19:37:59.310354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.310365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.310371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20f0 6b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.310373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.310377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.310380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.310386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.310390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.310393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.310395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.310405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.310411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.320316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.320349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.320357 LLDP, length 82 [|LLDP] 19:37:59.320358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.320369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.320376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20f8 0c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.320378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.320382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.320385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.320390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.320395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.320397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.320399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.320410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.320416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.330313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.330343 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.330350 LLDP, length 82 [|LLDP] 19:37:59.330352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.330362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.330368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 20ff ada5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.330371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.330376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.330381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.330384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.330386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.330390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.330393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.330402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.330408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.340312 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.340342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.340350 LLDP, length 82 [|LLDP] 19:37:59.340351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.340362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.340369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2107 4ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.340370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.340374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.340378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.340383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.340387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.340390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.340392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.340402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.340408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.350314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.350342 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.350350 LLDP, length 82 [|LLDP] 19:37:59.350351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.350362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.350368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.350373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.350376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.350378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.350383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 210e efe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.350385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.350388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.350392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.350402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.350407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.360318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.360348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.360355 LLDP, length 82 [|LLDP] 19:37:59.360357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.360368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.360374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2116 9105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.360376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.360379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.360384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.360389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.360392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.360394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.360397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.360407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.360413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.370313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.370349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.370356 LLDP, length 82 [|LLDP] 19:37:59.370358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.370370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.370376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 211e 3225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.370378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.370381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.370385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.370389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.370394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.370397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.370399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.370409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.370415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.380313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.380341 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.380349 LLDP, length 82 [|LLDP] 19:37:59.380350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.380361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.380367 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.380372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.380377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.380380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.380382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2125 d345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.380384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.380388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.380391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.380401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.380407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.390317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.390357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.390365 LLDP, length 82 [|LLDP] 19:37:59.390366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.390378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.390384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 212d 7465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.390386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.390390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.390394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.390398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.390403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.390406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.390408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.390419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.390425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.400316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.400351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.400358 LLDP, length 82 [|LLDP] 19:37:59.400360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.400371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.400377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2135 1585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.400379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.400383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.400386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.400392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.400397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.400399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.400402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.400425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.400432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.410316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.410348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.410355 LLDP, length 82 [|LLDP] 19:37:59.410357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.410368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.410375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 213c b6a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.410377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.410382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.410386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.410389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.410392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.410395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.410399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.410410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.410415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.420315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.420352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.420360 LLDP, length 82 [|LLDP] 19:37:59.420361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.420372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.420378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2144 57c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.420380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.420384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.420387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.420392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.420397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.420400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.420402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.420412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.420418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.430320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.430358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.430366 LLDP, length 82 [|LLDP] 19:37:59.430367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.430379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.430385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.430390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.430392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.430395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.430400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 214b f8e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.430401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.430405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.430408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.430419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.430425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.440315 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.440347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.440355 LLDP, length 82 [|LLDP] 19:37:59.440357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.440368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.440374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2153 9a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.440375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.440380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.440385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.440390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.440392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.440394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.440398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.440408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.440414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.450316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.450345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.450352 LLDP, length 82 [|LLDP] 19:37:59.450354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.450366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.450372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 215b 3b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.450374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.450378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.450382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.450387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.450392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.450395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.450397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.450407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.450412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.460314 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.460351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.460358 LLDP, length 82 [|LLDP] 19:37:59.460360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.460371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.460377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.460382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.460387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.460389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.460391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2162 dc45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.460393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.460397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.460400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.460411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.460416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.470316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.470346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.470353 LLDP, length 82 [|LLDP] 19:37:59.470354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.470366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.470372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 216a 7d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.470374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.470378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.470382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.470387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.470391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.470394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.470396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.470406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.470411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.480318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.480347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.480355 LLDP, length 82 [|LLDP] 19:37:59.480356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.480367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.480373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2172 1e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.480375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.480378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.480382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.480387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.480392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.480394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.480397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.480407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.480413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.490317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.490352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.490360 LLDP, length 82 [|LLDP] 19:37:59.490361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.490373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.490378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2179 bfa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.490380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.490385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.490390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.490393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.490395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.490399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.490402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.490412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.490417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.500313 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.500345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.500352 LLDP, length 82 [|LLDP] 19:37:59.500354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.500365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.500371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2181 60c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.500373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.500377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.500380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.500385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.500390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.500393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.500395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.500406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.500412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.510316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.510347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.510355 LLDP, length 82 [|LLDP] 19:37:59.510356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.510368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.510374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.510379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.510382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.510384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.510388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2189 01e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.510390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.510394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.510397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.510408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.510414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.520321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.520350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.520358 LLDP, length 82 [|LLDP] 19:37:59.520359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.520370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.520376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2190 a305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.520378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.520382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.520387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.520391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.520394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.520396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.520400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.520409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.520416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.530317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.530353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.530361 LLDP, length 82 [|LLDP] 19:37:59.530362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.530374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.530380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2198 4425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.530382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.530386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.530389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.530395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.530399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.530402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.530404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.530414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.530420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.540316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.540352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.540359 LLDP, length 82 [|LLDP] 19:37:59.540361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.540372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.540378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.540383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.540388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.540391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.540393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 219f e545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.540395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.540400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.540403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.540413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.540419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.550316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.550356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.550363 LLDP, length 82 [|LLDP] 19:37:59.550365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.550376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.550382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21a7 8665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.550384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.550388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.550391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.550396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.550401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.550403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.550406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.550416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.550421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.560316 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.560352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.560359 LLDP, length 82 [|LLDP] 19:37:59.560360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.560372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.560378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21af 2785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.560380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.560384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.560387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.560392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.560397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.560400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.560402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.560412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.560418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.570317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.570347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.570355 LLDP, length 82 [|LLDP] 19:37:59.570356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.570368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.570374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21b6 c8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.570376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.570382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.570387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.570389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.570391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.570395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.570398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.570408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.570414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.580320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.580351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.580358 LLDP, length 82 [|LLDP] 19:37:59.580360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.580371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.580377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21be 69c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.580379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.580383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.580386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.580391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.580396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.580399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.580401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.580411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.580417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.590317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.590348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.590355 LLDP, length 82 [|LLDP] 19:37:59.590357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.590368 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.590374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.590379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.590382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.590385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.590389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21c6 0ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.590391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.590395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.590398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.590408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.590414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.600318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.600347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.600354 LLDP, length 82 [|LLDP] 19:37:59.600355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.600367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.600373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21cd ac05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.600375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.600379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.600383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.600388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.600391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.600393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.600397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.600406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.600413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.610319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.610351 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.610358 LLDP, length 82 [|LLDP] 19:37:59.610360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.610372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.610378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21d5 4d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.610380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.610383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.610387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.610392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.610397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.610400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.610402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.610412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.610418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.620317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.620347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.620354 LLDP, length 82 [|LLDP] 19:37:59.620356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.620367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.620373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.620378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.620383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.620386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.620388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21dc ee45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.620390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.620393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.620397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.620407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.620413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.630320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.630349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.630357 LLDP, length 82 [|LLDP] 19:37:59.630358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.630370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.630376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21e4 8f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.630378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.630381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.630385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.630389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.630394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.630397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.630399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.630409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.630415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.640319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.640347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.640354 LLDP, length 82 [|LLDP] 19:37:59.640356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.640367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.640373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21ec 3085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.640375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.640379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.640382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.640387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.640392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.640394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.640396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.640406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.640412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.650317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.650345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.650353 LLDP, length 82 [|LLDP] 19:37:59.650354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.650365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.650371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21f3 d1a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.650373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.650378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.650383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.650385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.650388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.650391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.650395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.650404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.650410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.660318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.660346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.660353 LLDP, length 82 [|LLDP] 19:37:59.660354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.660366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.660372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 21fb 72c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.660374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.660377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.660381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.660386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.660391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.660394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.660396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.660406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.660413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.670319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.670356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.670363 LLDP, length 82 [|LLDP] 19:37:59.670365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.670376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.670382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.670399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.670403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.670405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.670411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2203 13e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.670413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.670416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.670420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.670430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.670435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.680351 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.680404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.680413 LLDP, length 82 [|LLDP] 19:37:59.680415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.680428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.680436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 220a b505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.680439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.680442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.680449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.680455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.680459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.680461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.680465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.680479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.680486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.690324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.690363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.690370 LLDP, length 82 [|LLDP] 19:37:59.690372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.690383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.690390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2212 5625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.690392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.690396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.690400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.690405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.690409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.690412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.690415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.690426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.690431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.700318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.700356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.700363 LLDP, length 82 [|LLDP] 19:37:59.700365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.700376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.700382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.700387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.700391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.700394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.700396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2219 f745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.700399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.700402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.700406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.700416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.700422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.710317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.710356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.710364 LLDP, length 82 [|LLDP] 19:37:59.710365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.710377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.710383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2221 9865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.710385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.710388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.710392 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.710398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.710402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.710405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.710407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.710418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.710424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.720319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.720352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.720360 LLDP, length 82 [|LLDP] 19:37:59.720361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.720373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.720379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2229 3985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.720381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.720385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.720388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.720394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.720398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.720401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.720404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.720414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.720419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.730319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.730349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.730357 LLDP, length 82 [|LLDP] 19:37:59.730358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.730370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.730376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2230 daa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.730378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.730383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.730388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.730391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.730393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.730397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.730401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.730411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.730417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.740321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.740361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.740368 LLDP, length 82 [|LLDP] 19:37:59.740370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.740381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.740387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2238 7bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.740389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.740393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.740396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.740401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.740406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.740408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.740410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.740421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.740426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.750319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.750356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.750363 LLDP, length 82 [|LLDP] 19:37:59.750365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.750376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.750381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.750386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.750389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.750391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.750396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2240 1ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.750399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.750402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.750406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.750416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.750422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.760319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.760349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.760357 LLDP, length 82 [|LLDP] 19:37:59.760358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.760369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.760376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2247 be05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.760377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.760381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.760386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.760391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.760393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.760396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.760399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.760409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.760415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.770318 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.770354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.770362 LLDP, length 82 [|LLDP] 19:37:59.770363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.770376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.770382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 224f 5f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.770384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.770387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.770391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.770396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.770401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.770403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.770406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.770416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.770422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.780317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.780354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.780361 LLDP, length 82 [|LLDP] 19:37:59.780363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.780374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.780380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.780385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.780390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.780392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.780395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2257 0045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.780396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.780400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.780403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.780413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.780418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.790322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.790352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.790360 LLDP, length 82 [|LLDP] 19:37:59.790361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.790372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.790378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 225e a165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.790380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.790383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.790387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.790392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.790397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.790399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.790402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.790411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.790417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.800319 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.800348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.800356 LLDP, length 82 [|LLDP] 19:37:59.800357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.800368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.800375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2266 4285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.800377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.800381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.800384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.800389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.800394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.800396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.800398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.800408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.800414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.810317 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.810345 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.810352 LLDP, length 82 [|LLDP] 19:37:59.810354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.810365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.810371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 226d e3a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.810373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.810378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.810383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.810386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.810388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.810392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.810395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.810405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.810411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.820320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.820353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.820360 LLDP, length 82 [|LLDP] 19:37:59.820362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.820373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.820379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2275 84c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.820381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.820385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.820388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.820393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.820398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.820401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.820403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.820414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.820419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.830320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.830355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.830362 LLDP, length 82 [|LLDP] 19:37:59.830364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.830375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.830381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.830386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.830389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.830391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.830396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 227d 25e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.830398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.830402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.830405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.830415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.830421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.840321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.840357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.840364 LLDP, length 82 [|LLDP] 19:37:59.840366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.840377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.840382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2284 c705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.840384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.840388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.840393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.840398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.840401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.840403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.840407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.840417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.840423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.850322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.850359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.850367 LLDP, length 82 [|LLDP] 19:37:59.850368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.850380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.850385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 228c 6825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.850387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.850391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.850394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.850399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.850404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.850407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.850409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.850419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.850426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.860325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.860354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.860361 LLDP, length 82 [|LLDP] 19:37:59.860363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.860374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.860380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.860385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.860390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.860392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.860394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2294 0945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.860396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.860400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.860404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.860413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.860419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.870321 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.870350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.870357 LLDP, length 82 [|LLDP] 19:37:59.870359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.870370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.870376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 229b aa65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.870378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.870382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.870386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.870391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.870395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.870398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.870400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.870410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.870415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.880320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.880350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.880357 LLDP, length 82 [|LLDP] 19:37:59.880359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.880370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.880376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22a3 4b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.880379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.880382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.880386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.880391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.880396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.880398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.880400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.880410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.880416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.890335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.890373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.890381 LLDP, length 82 [|LLDP] 19:37:59.890383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.890394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.890401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22aa eca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.890403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.890409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.890414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.890417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.890419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.890423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.890426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.890436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.890442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.900322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.900353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.900360 LLDP, length 82 [|LLDP] 19:37:59.900362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.900373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.900379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22b2 8dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.900381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.900385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.900388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.900393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.900398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.900401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.900403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.900413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.900418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.910324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.910361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.910369 LLDP, length 82 [|LLDP] 19:37:59.910370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.910381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.910387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.910392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.910395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.910397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.910402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22ba 2ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.910404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.910408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.910411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.910421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.910427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.920322 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.920354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.920362 LLDP, length 82 [|LLDP] 19:37:59.920363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.920374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.920381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22c1 d005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.920383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.920386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.920392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.920396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.920399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.920401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.920405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.920415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.920421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.930323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.930362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.930370 LLDP, length 82 [|LLDP] 19:37:59.930372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.930383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.930389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22c9 7125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.930392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.930395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.930399 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.930404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.930409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.930412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.930414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.930424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.930430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.940323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.940361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.940369 LLDP, length 82 [|LLDP] 19:37:59.940370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.940381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.940387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.940392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.940397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.940400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.940402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22d1 1245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.940404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.940408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.940411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.940421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.940427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.950323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.950352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.950359 LLDP, length 82 [|LLDP] 19:37:59.950361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.950372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.950378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22d8 b365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.950380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.950384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.950387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.950392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.950396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.950399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.950401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.950412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.950417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.960320 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.960349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.960356 LLDP, length 82 [|LLDP] 19:37:59.960358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.960369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.960375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22e0 5485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.960377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.960381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.960384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.960389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.960394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.960398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.960400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.960410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.960416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.970337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.970382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.970391 LLDP, length 82 [|LLDP] 19:37:59.970392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.970405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.970413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22e7 f5a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.970415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.970421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.970426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.970430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.970432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.970435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.970439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.970451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.970459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.980338 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.980379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.980387 LLDP, length 82 [|LLDP] 19:37:59.980389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.980401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.980408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22ef 96c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.980410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.980414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.980417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.980422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.980427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.980430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.980433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.980444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.980449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:37:59.990341 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.990386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:37:59.990395 LLDP, length 82 [|LLDP] 19:37:59.990397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:37:59.990409 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:37:59.990415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:37:59.990421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.990424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:37:59.990427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:37:59.990432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22f7 37e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:37:59.990434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:37:59.990438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:37:59.990441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:37:59.990453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:37:59.990459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.000337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.000375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.000383 LLDP, length 82 [|LLDP] 19:38:00.000385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.000397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.000404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 22fe d905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.000406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.000410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.000415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.000420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.000423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.000425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.000429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.000440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.000446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.010330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.010373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.010381 LLDP, length 82 [|LLDP] 19:38:00.010383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.010394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.010401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2306 7a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.010403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.010406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.010410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.010415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.010420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.010423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.010425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.010435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.010442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.020329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.020369 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.020378 LLDP, length 82 [|LLDP] 19:38:00.020379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.020391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.020398 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.020403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.020408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.020411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.020413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 230e 1b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.020415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.020419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.020422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.020433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.020440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.030333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.030368 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.030376 LLDP, length 82 [|LLDP] 19:38:00.030378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.030390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.030396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2315 bc65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.030398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.030401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.030405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.030411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.030415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.030418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.030420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.030432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.030438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.040349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.040394 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.040403 LLDP, length 82 [|LLDP] 19:38:00.040405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.040417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.040425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 231d 5d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.040427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.040431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.040435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.040440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.040445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.040448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.040450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.040463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.040469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.050335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.050373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.050382 LLDP, length 82 [|LLDP] 19:38:00.050383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.050395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.050402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2324 fea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.050404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.050409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.050414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.050418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.050420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.050424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.050427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.050438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.050444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.060332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.060367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.060375 LLDP, length 82 [|LLDP] 19:38:00.060377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.060388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.060394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 232c 9fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.060396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.060400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.060404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.060408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.060413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.060416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.060418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.060429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.060434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.070330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.070365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.070374 LLDP, length 82 [|LLDP] 19:38:00.070375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.070387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.070393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.070399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.070402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.070404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.070409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2334 40e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.070412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.070415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.070419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.070429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.070435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.080329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.080367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.080375 LLDP, length 82 [|LLDP] 19:38:00.080377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.080388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.080394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 233b e205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.080396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.080400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.080405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.080410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.080412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.080415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.080418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.080428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.080434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.090359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.090419 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.090428 LLDP, length 82 [|LLDP] 19:38:00.090430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.090444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.090453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2343 8325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.090456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.090460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.090463 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.090469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.090475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.090478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.090480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.090494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.090501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.100341 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.100382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.100390 LLDP, length 82 [|LLDP] 19:38:00.100392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.100404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.100411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.100416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.100421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.100425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.100427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 234b 2445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.100429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.100433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.100436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.100448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.100455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.110331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.110366 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.110374 LLDP, length 82 [|LLDP] 19:38:00.110375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.110387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.110393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2352 c565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.110395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.110399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.110402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.110407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.110412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.110416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.110418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.110429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.110435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.120345 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.120389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.120397 LLDP, length 82 [|LLDP] 19:38:00.120399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.120411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.120419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 235a 6685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.120421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.120425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.120434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.120440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.120445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.120448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.120451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.120462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.120468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.130347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.130399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.130409 LLDP, length 82 [|LLDP] 19:38:00.130410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.130422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.130431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2362 07a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.130433 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.130438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.130444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.130447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.130449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.130453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.130457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.130469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.130475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.140342 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.140384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.140393 LLDP, length 82 [|LLDP] 19:38:00.140395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.140407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.140414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2369 a8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.140417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.140420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.140424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.140429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.140434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.140437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.140439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.140451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.140457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.150335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.150372 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.150380 LLDP, length 82 [|LLDP] 19:38:00.150382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.150393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.150399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.150405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.150408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.150410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.150415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2371 49e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.150417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.150421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.150424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.150435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.150442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.160349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.160399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.160408 LLDP, length 82 [|LLDP] 19:38:00.160410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.160422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.160430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2378 eb05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.160432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.160436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.160442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.160447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.160451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.160453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.160457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.160469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.160476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.170339 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.170383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.170392 LLDP, length 82 [|LLDP] 19:38:00.170394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.170406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.170413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2380 8c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.170415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.170419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.170422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.170427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.170432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.170435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.170438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.170449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.170455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.180331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.180367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.180375 LLDP, length 82 [|LLDP] 19:38:00.180377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.180388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.180395 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.180401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.180406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.180409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.180411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2388 2d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.180413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.180417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.180421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.180432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.180438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.190352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.190393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.190401 LLDP, length 82 [|LLDP] 19:38:00.190403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.190421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.190428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 238f ce65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.190430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.190433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.190437 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.190443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.190448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.190451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.190454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.190465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.190471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.200337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.200371 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.200378 LLDP, length 82 [|LLDP] 19:38:00.200380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.200392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.200399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2397 6f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.200400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.200404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.200408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.200413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.200418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.200421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.200423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.200434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.200440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.210334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.210364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.210372 LLDP, length 82 [|LLDP] 19:38:00.210374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.210385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.210391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 239f 10a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.210393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.210398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.210403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.210406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.210408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.210412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.210415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.210425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.210430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.220332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.220375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.220383 LLDP, length 82 [|LLDP] 19:38:00.220385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.220397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.220404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23a6 b1c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.220406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.220409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.220413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.220418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.220422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.220425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.220427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.220438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.220444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.230357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.230418 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.230428 LLDP, length 82 [|LLDP] 19:38:00.230430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.230443 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.230451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.230458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.230461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.230463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.230471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23ae 52e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.230473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.230477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.230481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.230495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.230502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.240329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.240358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.240366 LLDP, length 82 [|LLDP] 19:38:00.240367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.240379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.240385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23b5 f405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.240388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.240391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.240396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.240401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.240404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.240406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.240410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.240420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.240426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.250325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.250360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.250368 LLDP, length 82 [|LLDP] 19:38:00.250369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.250380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.250387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23bd 9525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.250389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.250392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.250396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.250401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.250405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.250408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.250410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.250420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.250426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.260324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.260355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.260363 LLDP, length 82 [|LLDP] 19:38:00.260364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.260376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.260382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.260386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.260391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.260394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.260396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23c5 3645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.260399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.260402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.260406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.260415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.260421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.270333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.270368 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.270376 LLDP, length 82 [|LLDP] 19:38:00.270377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.270389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.270395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23cc d765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.270397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.270400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.270404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.270409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.270413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.270417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.270419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.270428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.270434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.280324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.280357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.280364 LLDP, length 82 [|LLDP] 19:38:00.280365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.280377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.280383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23d4 7885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.280385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.280389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.280392 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.280397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.280402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.280405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.280407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.280416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.280422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.290325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.290350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.290357 LLDP, length 82 [|LLDP] 19:38:00.290359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.290371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.290376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23dc 19a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.290378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.290383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.290388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.290391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.290393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.290396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.290400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.290409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.290415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.300324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.300348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.300354 LLDP, length 82 [|LLDP] 19:38:00.300356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.300367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.300373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23e3 bac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.300375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.300378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.300382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.300387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.300391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.300394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.300396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.300405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.300411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.310324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.310346 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.310353 LLDP, length 82 [|LLDP] 19:38:00.310355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.310366 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.310372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.310377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.310380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.310382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.310386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23eb 5be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.310388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.310392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.310395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.310404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.310410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.320324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.320348 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.320355 LLDP, length 82 [|LLDP] 19:38:00.320357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.320368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.320374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23f2 fd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.320376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.320379 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.320384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.320389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.320392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.320394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.320397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.320407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.320412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.333284 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.333310 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.333317 LLDP, length 82 [|LLDP] 19:38:00.333319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.333330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.333335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 23fa 9e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.333337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.333341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.333344 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.333349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.333354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.333357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.333359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.333368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.333373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.340326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.340352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.340359 LLDP, length 82 [|LLDP] 19:38:00.340360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.340372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.340377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.340382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.340387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.340390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.340392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2402 3f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.340394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.340397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.340401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.340410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.340416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.350327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.350359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.350366 LLDP, length 82 [|LLDP] 19:38:00.350367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.350379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.350385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2409 e065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.350387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.350391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.350394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.350399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.350404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.350407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.350409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.350418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.350424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.360324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.360349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.360356 LLDP, length 82 [|LLDP] 19:38:00.360357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.360369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.360375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2411 8185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.360377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.360381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.360384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.360389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.360394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.360397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.360399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.360408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.360414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.370329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.370360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.370368 LLDP, length 82 [|LLDP] 19:38:00.370370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.370381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.370388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2419 22a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.370390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.370395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.370399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.370402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.370405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.370408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.370412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.370422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.370429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.380330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.380359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.380366 LLDP, length 82 [|LLDP] 19:38:00.380367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.380379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.380385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2420 c3c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.380387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.380390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.380394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.380398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.380403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.380406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.380408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.380418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.380423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.393963 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.394002 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.394010 LLDP, length 82 [|LLDP] 19:38:00.394011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.394023 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.394029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.394036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.394039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.394041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.394047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2428 64e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.394049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.394053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.394056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.394068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.394075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.400329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.400358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.400366 LLDP, length 82 [|LLDP] 19:38:00.400368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.400379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.400385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2430 0605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.400387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.400390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.400396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.400401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.400403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.400406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.400409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.400431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.400438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.410333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.410363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.410371 LLDP, length 82 [|LLDP] 19:38:00.410372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.410384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.410390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2437 a725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.410392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.410395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.410399 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.410404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.410409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.410411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.410413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.410424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.410430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.420330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.420358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.420365 LLDP, length 82 [|LLDP] 19:38:00.420367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.420378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.420384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.420389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.420394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.420396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.420399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 243f 4845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.420401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.420404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.420408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.420418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.420423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.430328 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.430354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.430361 LLDP, length 82 [|LLDP] 19:38:00.430362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.430373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.430379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2446 e965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.430381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.430384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.430388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.430393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.430397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.430400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.430402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.430412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.430418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.440333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.440362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.440369 LLDP, length 82 [|LLDP] 19:38:00.440371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.440382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.440388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 244e 8a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.440390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.440394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.440397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.440403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.440407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.440410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.440412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.440422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.440428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.450330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.450359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.450366 LLDP, length 82 [|LLDP] 19:38:00.450368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.450379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.450385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2456 2ba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.450387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.450392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.450396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.450399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.450401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.450405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.450408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.450418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.450424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.460335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.460378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.460386 LLDP, length 82 [|LLDP] 19:38:00.460387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.460399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.460405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 245d ccc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.460407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.460411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.460414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.460420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.460425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.460428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.460430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.460441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.460447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.470326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.470357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.470364 LLDP, length 82 [|LLDP] 19:38:00.470366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.470377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.470383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.470388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.470391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.470393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.470398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2465 6de5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.470400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.470403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.470407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.470416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.470422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.480325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.480350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.480357 LLDP, length 82 [|LLDP] 19:38:00.480359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.480370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.480375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 246d 0f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.480377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.480381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.480385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.480390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.480393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.480395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.480398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.480407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.480412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.490324 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.490347 LLDP, length 82 [|LLDP] 19:38:00.490349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.490361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.490366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2474 b025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.490368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.490372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.490376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.490380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.490385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.490388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.490390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.490396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.490405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.490410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.500323 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.500351 LLDP, length 82 [|LLDP] 19:38:00.500353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.500366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.500371 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.500376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.500380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.500383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.500385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.500391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 247c 5145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.500393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.500396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.500400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.500410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.500415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.510326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.510346 LLDP, length 82 [|LLDP] 19:38:00.510348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.510360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.510365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2483 f265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.510367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.510370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.510374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.510379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.510384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.510386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.510388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.510394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.510403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.510408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.520327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.520355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.520363 LLDP, length 82 [|LLDP] 19:38:00.520364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.520375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.520381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 248b 9385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.520383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.520386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.520390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.520395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.520399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.520402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.520404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.520413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.520418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.530326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.530353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.530360 LLDP, length 82 [|LLDP] 19:38:00.530362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.530373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.530378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2493 34a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.530380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.530385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.530390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.530405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.530408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.530412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.530416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.530425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.530431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.540357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.540405 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.540414 LLDP, length 82 [|LLDP] 19:38:00.540416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.540428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.540437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 249a d5c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.540439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.540443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.540447 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.540453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.540459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.540463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.540465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.540479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.540487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.550335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.550365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.550372 LLDP, length 82 [|LLDP] 19:38:00.550374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.550385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.550391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.550396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.550399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.550401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.550406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24a2 76e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.550408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.550412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.550415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.550425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.550431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.560329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.560356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.560363 LLDP, length 82 [|LLDP] 19:38:00.560365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.560376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.560382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24aa 1805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.560383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.560387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.560392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.560397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.560400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.560402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.560406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.560415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.560421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.570329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.570353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.570360 LLDP, length 82 [|LLDP] 19:38:00.570361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.570372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.570378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24b1 b925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.570380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.570383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.570387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.570391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.570396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.570399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.570401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.570410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.570416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.580326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.580355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.580362 LLDP, length 82 [|LLDP] 19:38:00.580363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.580374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.580381 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.580385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.580390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.580392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.580395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24b9 5a45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.580397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.580400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.580404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.580413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.580419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.590327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.590349 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.590356 LLDP, length 82 [|LLDP] 19:38:00.590357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.590369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.590374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24c0 fb65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.590376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.590379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.590383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.590388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.590393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.590395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.590397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.590406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.590412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.600326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.600350 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.600357 LLDP, length 82 [|LLDP] 19:38:00.600358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.600369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.600375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24c8 9c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.600377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.600381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.600384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.600389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.600394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.600397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.600399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.600408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.600414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.610327 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.610347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.610354 LLDP, length 82 [|LLDP] 19:38:00.610356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.610367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.610373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24d0 3da5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.610375 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.610380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.610385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.610387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.610390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.610393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.610396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.610405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.610411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.620326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.620347 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.620354 LLDP, length 82 [|LLDP] 19:38:00.620355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.620366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.620371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24d7 dec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.620373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.620377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.620380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.620385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.620389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.620392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.620394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.620403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.620409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.630326 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.630348 LLDP, length 82 [|LLDP] 19:38:00.630350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.630362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.630367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.630372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.630375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.630377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.630383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.630388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24df 7fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.630390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.630393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.630396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.630405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.630411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.640328 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.640356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.640363 LLDP, length 82 [|LLDP] 19:38:00.640365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.640376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.640381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24e7 2105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.640383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.640387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.640391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.640396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.640398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.640400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.640404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.640412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.640419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.650330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.650360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.650367 LLDP, length 82 [|LLDP] 19:38:00.650369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.650380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.650385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24ee c225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.650387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.650391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.650395 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.650399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.650404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.650407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.650409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.650418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.650424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.660332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.660358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.660365 LLDP, length 82 [|LLDP] 19:38:00.660366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.660378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.660383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.660388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.660393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.660396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.660398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24f6 6345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.660400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.660404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.660407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.660417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.660422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.670345 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.670381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.670389 LLDP, length 82 [|LLDP] 19:38:00.670391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.670402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.670409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 24fe 0465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.670411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.670414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.670418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.670423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.670428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.670432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.670434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.670444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.670450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.680335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.680366 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.680374 LLDP, length 82 [|LLDP] 19:38:00.680375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.680386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.680393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2505 a585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.680394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.680398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.680401 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.680407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.680411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.680414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.680416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.680426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.680432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.690339 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.690378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.690387 LLDP, length 82 [|LLDP] 19:38:00.690388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.690400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.690407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 250d 46a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.690409 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.690414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.690418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.690421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.690424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.690427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.690431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.690441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.690447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.700329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.700352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.700359 LLDP, length 82 [|LLDP] 19:38:00.700361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.700372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.700378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2514 e7c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.700380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.700384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.700387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.700392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.700397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.700400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.700402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.700411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.700417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.710325 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.710348 LLDP, length 82 [|LLDP] 19:38:00.710350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.710362 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.710367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.710372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.710374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.710377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.710382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.710387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 251c 88e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.710389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.710392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.710396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.710405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.710410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.720329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.720359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.720365 LLDP, length 82 [|LLDP] 19:38:00.720367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.720378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.720384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2524 2a05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.720385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.720389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.720394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.720398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.720401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.720403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.720406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.720415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.720421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.730329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.730352 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.730359 LLDP, length 82 [|LLDP] 19:38:00.730361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.730371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.730377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 252b cb25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.730379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.730383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.730386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.730391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.730395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.730398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.730400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.730409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.730415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.740330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.740358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.740365 LLDP, length 82 [|LLDP] 19:38:00.740366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.740378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.740383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.740388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.740392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.740395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.740398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2533 6c45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.740400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.740403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.740407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.740415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.740421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.750331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.750362 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.750369 LLDP, length 82 [|LLDP] 19:38:00.750370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.750382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.750388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 253b 0d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.750390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.750394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.750397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.750402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.750407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.750409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.750412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.750421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.750426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.760333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.760365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.760372 LLDP, length 82 [|LLDP] 19:38:00.760374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.760385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.760391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2542 ae85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.760393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.760396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.760400 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.760405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.760409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.760412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.760415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.760424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.760430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.770332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.770356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.770364 LLDP, length 82 [|LLDP] 19:38:00.770365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.770376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.770382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 254a 4fa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.770384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.770389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.770394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.770397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.770399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.770403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.770406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.770416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.770421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.780350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.780388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.780396 LLDP, length 82 [|LLDP] 19:38:00.780398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.780410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.780417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2551 f0c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.780419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.780423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.780426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.780431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.780436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.780439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.780441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.780452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.780459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.790332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.790356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.790363 LLDP, length 82 [|LLDP] 19:38:00.790365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.790376 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.790382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.790387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.790389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.790391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.790397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2559 91e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.790398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.790402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.790405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.790414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.790420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.800331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.800363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.800370 LLDP, length 82 [|LLDP] 19:38:00.800371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.800383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.800389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2561 3305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.800391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.800394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.800399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.800404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.800407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.800409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.800412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.800421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.800427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.810330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.810359 LLDP, length 82 [|LLDP] 19:38:00.810361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.810373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.810379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2568 d425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.810381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.810384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.810388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.810393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.810397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.810400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.810402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.810408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.810417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.810422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.820330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.820358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.820365 LLDP, length 82 [|LLDP] 19:38:00.820366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.820377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.820383 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.820388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.820392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.820395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.820397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2570 7545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.820399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.820403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.820406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.820415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.820420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.830336 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.830357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.830364 LLDP, length 82 [|LLDP] 19:38:00.830366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.830377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.830383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2578 1665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.830384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.830388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.830391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.830396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.830400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.830403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.830405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.830413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.830419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.840330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.840359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.840366 LLDP, length 82 [|LLDP] 19:38:00.840367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.840378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.840384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 257f b785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.840386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.840390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.840393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.840398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.840402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.840405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.840407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.840416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.840422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.850329 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.850360 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.850368 LLDP, length 82 [|LLDP] 19:38:00.850369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.850380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.850386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2587 58a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.850388 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.850393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.850398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.850401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.850402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.850406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.850410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.850418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.850423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.860331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.860361 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.860368 LLDP, length 82 [|LLDP] 19:38:00.860370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.860381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.860387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 258e f9c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.860389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.860393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.860396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.860401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.860406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.860409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.860411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.860421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.860426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.870332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.870357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.870365 LLDP, length 82 [|LLDP] 19:38:00.870366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.870378 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.870384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.870389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.870391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.870393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.870398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2596 9ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.870400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.870404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.870407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.870417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.870423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.880331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.880354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.880361 LLDP, length 82 [|LLDP] 19:38:00.880362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.880373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.880379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 259e 3c05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.880381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.880385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.880389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.880394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.880397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.880399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.880402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.880411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.880416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.890346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.890378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.890386 LLDP, length 82 [|LLDP] 19:38:00.890388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.890399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.890405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25a5 dd25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.890408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.890411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.890415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.890420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.890425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.890428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.890430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.890440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.890446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.900333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.900356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.900364 LLDP, length 82 [|LLDP] 19:38:00.900366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.900377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.900382 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.900387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.900392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.900395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.900397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25ad 7e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.900399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.900403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.900406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.900415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.900420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.910331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.910353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.910360 LLDP, length 82 [|LLDP] 19:38:00.910361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.910372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.910378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25b5 1f65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.910380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.910384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.910387 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.910392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.910396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.910399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.910401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.910411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.910416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.920330 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.920358 LLDP, length 82 [|LLDP] 19:38:00.920360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.920372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.920377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25bc c085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.920379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.920383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.920386 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.920391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.920396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.920398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.920401 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.920407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.920415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.920421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.930331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.930353 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.930360 LLDP, length 82 [|LLDP] 19:38:00.930361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.930372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.930378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25c4 61a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.930380 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.930384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.930389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.930392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.930394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.930398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.930401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.930410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.930416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.940333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.940363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.940370 LLDP, length 82 [|LLDP] 19:38:00.940371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.940383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.940388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25cc 02c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.940390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.940393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.940397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.940401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.940406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.940409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.940411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.940420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.940425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.950331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.950354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.950360 LLDP, length 82 [|LLDP] 19:38:00.950362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.950373 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.950378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.950383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.950386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.950388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.950392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25d3 a3e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.950394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.950398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.950401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.950410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.950416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.960332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.960363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.960370 LLDP, length 82 [|LLDP] 19:38:00.960372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.960383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.960389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25db 4505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.960391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.960394 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.960399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.960404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.960407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.960409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.960412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.960422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.960427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.970334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.970358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.970365 LLDP, length 82 [|LLDP] 19:38:00.970366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.970377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.970383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25e2 e625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.970385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.970389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.970392 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.970397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.970401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.970404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.970406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.970415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.970421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.980334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.980365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.980373 LLDP, length 82 [|LLDP] 19:38:00.980374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.980385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.980390 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.980395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.980400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.980403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.980405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25ea 8745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.980407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.980410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.980413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.980423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.980429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:00.990334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.990357 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:00.990364 LLDP, length 82 [|LLDP] 19:38:00.990366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:00.990377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:00.990383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25f2 2865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:00.990384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:00.990388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:00.990391 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:00.990396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:00.990401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.990403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:00.990405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:00.990415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:00.990421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.000345 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.000367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.000374 LLDP, length 82 [|LLDP] 19:38:01.000376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.000387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.000392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 25f9 c985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.000394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.000397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.000401 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.000406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.000410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.000413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.000415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.000425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.000430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.010331 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.010353 LLDP, length 82 [|LLDP] 19:38:01.010354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.010367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.010372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2601 6aa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.010374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.010379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.010384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.010386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.010389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.010394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.010398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.010402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.010410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.010416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.020333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.020355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.020362 LLDP, length 82 [|LLDP] 19:38:01.020363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.020374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.020380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2609 0bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.020382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.020386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.020389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.020394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.020398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.020401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.020403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.020412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.020418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.030333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.030355 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.030361 LLDP, length 82 [|LLDP] 19:38:01.030363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.030374 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.030380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.030384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.030387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.030389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.030394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2610 ace5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.030396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.030399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.030403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.030411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.030416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.040333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.040354 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.040361 LLDP, length 82 [|LLDP] 19:38:01.040362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.040373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.040379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2618 4e05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.040380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.040384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.040389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.040393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.040396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.040398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.040401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.040410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.040416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.050332 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.050363 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.050370 LLDP, length 82 [|LLDP] 19:38:01.050371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.050382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.050388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 261f ef25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.050390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.050394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.050397 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.050402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.050406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.050409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.050411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.050420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.050425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.060335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.060367 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.060374 LLDP, length 82 [|LLDP] 19:38:01.060376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.060387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.060393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.060398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.060402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.060405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.060407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2627 9045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.060409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.060413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.060416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.060425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.060431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.070335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.070359 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.070367 LLDP, length 82 [|LLDP] 19:38:01.070368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.070379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.070384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 262f 3165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.070386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.070390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.070393 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.070398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.070403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.070406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.070408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.070417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.070422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.080334 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.080365 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.080373 LLDP, length 82 [|LLDP] 19:38:01.080375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.080386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.080392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2636 d285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.080394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.080397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.080401 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.080406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.080410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.080413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.080415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.080424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.080430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.090335 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.090358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.090365 LLDP, length 82 [|LLDP] 19:38:01.090366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.090377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.090383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 263e 73a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.090385 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.090390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.090394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.090397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.090399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.090403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.090406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.090415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.090420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.100333 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.100356 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.100362 LLDP, length 82 [|LLDP] 19:38:01.100364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.100375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.100380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2646 14c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.100382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.100386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.100389 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.100394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.100398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.100401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.100403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.100411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.100417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.110337 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.110358 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.110364 LLDP, length 82 [|LLDP] 19:38:01.110366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.110377 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.110383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.110388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.110391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.110393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.110397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 264d b5e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.110399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.110402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.110406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.110414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.110419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.120344 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.120373 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.120381 LLDP, length 82 [|LLDP] 19:38:01.120383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.120394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.120399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2655 5705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.120401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.120405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.120410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.120414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.120417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.120419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.120423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.120433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.120438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.130359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.130399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.130408 LLDP, length 82 [|LLDP] 19:38:01.130410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.130422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.130429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 265c f825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.130431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.130434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.130438 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.130443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.130448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.130451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.130453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.130464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.130470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.140365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.140416 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.140425 LLDP, length 82 [|LLDP] 19:38:01.140427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.140439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.140446 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.140453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.140458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.140461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.140464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2664 9945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.140466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.140469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.140473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.140486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.140493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.150353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.150395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.150403 LLDP, length 82 [|LLDP] 19:38:01.150405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.150416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.150422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 266c 3a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.150425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.150428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.150432 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.150437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.150442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.150445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.150447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.150459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.150465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.160339 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.160374 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.160382 LLDP, length 82 [|LLDP] 19:38:01.160384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.160395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.160401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2673 db85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.160403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.160406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.160410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.160415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.160419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.160422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.160424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.160434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.160439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.170348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.170380 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.170388 LLDP, length 82 [|LLDP] 19:38:01.170389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.170400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.170406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 267b 7ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.170408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.170413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.170418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.170421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.170423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.170427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.170430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.170440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.170445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.180340 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.180371 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.180379 LLDP, length 82 [|LLDP] 19:38:01.180380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.180391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.180398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2683 1dc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.180400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.180404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.180407 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.180412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.180416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.180420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.180422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.180432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.180437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.190338 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.190364 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.190371 LLDP, length 82 [|LLDP] 19:38:01.190373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.190384 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.190389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.190394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.190397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.190399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.190404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 268a bee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.190406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.190410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.190413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.190423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.190428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.200373 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.200424 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.200433 LLDP, length 82 [|LLDP] 19:38:01.200435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.200447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.200456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2692 6005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.200459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.200462 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.200468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.200474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.200477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.200479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.200483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.200495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.200501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.210395 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.210466 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.210477 LLDP, length 82 [|LLDP] 19:38:01.210479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.210492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.210503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 269a 0125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.210505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.210509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.210513 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.210520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.210526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.210530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.210532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.210548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.210555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.220384 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.220455 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.220465 LLDP, length 82 [|LLDP] 19:38:01.220467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.220479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.220490 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.220496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.220502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.220505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.220508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26a1 a245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.220510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.220514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.220518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.220532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.220540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.230399 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.230474 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.230485 LLDP, length 82 [|LLDP] 19:38:01.230487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.230500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.230511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26a9 4365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.230514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.230518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.230521 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.230528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.230535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.230539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.230541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.230558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.230565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.240388 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.240458 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.240470 LLDP, length 82 [|LLDP] 19:38:01.240472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.240484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.240494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26b0 e485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.240497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.240500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.240504 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.240510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.240516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.240520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.240522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.240537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.240544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.250374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.250434 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.250444 LLDP, length 82 [|LLDP] 19:38:01.250446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.250458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.250468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26b8 85a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.250470 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.250476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.250483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.250486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.250488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.250492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.250496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.250511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.250518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.260394 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.260471 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.260482 LLDP, length 82 [|LLDP] 19:38:01.260484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.260497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.260513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26c0 26c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.260516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.260520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.260523 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.260530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.260536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.260539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.260542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.260558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.260566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.270379 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.270447 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.270457 LLDP, length 82 [|LLDP] 19:38:01.270459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.270471 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.270479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.270487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.270491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.270493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.270500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26c7 c7e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.270502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.270506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.270510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.270526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.270533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.280358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.280400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.280409 LLDP, length 82 [|LLDP] 19:38:01.280410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.280422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.280429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26cf 6905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.280431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.280435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.280440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.280445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.280448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.280451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.280454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.280466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.280472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.290347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.290384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.290391 LLDP, length 82 [|LLDP] 19:38:01.290393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.290404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.290411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26d7 0a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.290413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.290416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.290420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.290425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.290430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.290433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.290435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.290447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.290453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.303446 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.303497 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.303507 LLDP, length 82 [|LLDP] 19:38:01.303508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.303520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.303529 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.303534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.303540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.303543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.303546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26de ab45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.303548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.303551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.303555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.303568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.303574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.310354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.310390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.310398 LLDP, length 82 [|LLDP] 19:38:01.310399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.310411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.310417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26e6 4c65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.310419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.310423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.310426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.310431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.310436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.310439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.310442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.310453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.310459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.320355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.320393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.320401 LLDP, length 82 [|LLDP] 19:38:01.320402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.320414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.320420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26ed ed85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.320422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.320426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.320430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.320435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.320439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.320442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.320445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.320456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.320462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.330364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.330412 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.330421 LLDP, length 82 [|LLDP] 19:38:01.330423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.330435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.330442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26f5 8ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.330444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.330450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.330455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.330458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.330461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.330465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.330468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.330481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.330487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.340354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.340391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.340399 LLDP, length 82 [|LLDP] 19:38:01.340400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.340412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.340419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 26fd 2fc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.340421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.340425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.340428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.340433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.340439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.340442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.340444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.340455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.340461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.350347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.350379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.350386 LLDP, length 82 [|LLDP] 19:38:01.350388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.350399 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.350404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.350410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.350413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.350415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.350420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2704 d0e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.350422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.350426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.350429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.350439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.350445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.364052 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.364114 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.364123 LLDP, length 82 [|LLDP] 19:38:01.364125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.364137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.364146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 270c 7205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.364149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.364152 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.364158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.364164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.364167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.364170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.364174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.364188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.364194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.370349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.370384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.370392 LLDP, length 82 [|LLDP] 19:38:01.370394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.370405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.370412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2714 1325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.370414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.370418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.370421 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.370427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.370432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.370435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.370437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.370448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.370454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.380347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.380385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.380392 LLDP, length 82 [|LLDP] 19:38:01.380394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.380405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.380411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.380416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.380421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.380424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.380426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 271b b445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.380428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.380432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.380436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.380446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.380452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.390346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.390385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.390393 LLDP, length 82 [|LLDP] 19:38:01.390395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.390406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.390412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2723 5565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.390414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.390418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.390421 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.390426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.390431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.390434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.390449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.390461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.390467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.400375 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.400420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.400428 LLDP, length 82 [|LLDP] 19:38:01.400430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.400442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.400451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 272a f685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.400453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.400457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.400461 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.400467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.400473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.400476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.400478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.400506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.400513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.410351 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.410389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.410397 LLDP, length 82 [|LLDP] 19:38:01.410399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.410410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.410417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2732 97a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.410419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.410424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.410429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.410432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.410434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.410438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.410442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.410452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.410458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.424637 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.424669 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.424677 LLDP, length 82 [|LLDP] 19:38:01.424678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.424689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.424695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 273a 38c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.424697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.424701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.424704 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.424709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.424714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.424717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.424719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.424729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.424735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.430344 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.430381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.430389 LLDP, length 82 [|LLDP] 19:38:01.430390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.430402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.430408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.430413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.430416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.430418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.430423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2741 d9e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.430425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.430429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.430432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.430442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.430447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.440346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.440383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.440391 LLDP, length 82 [|LLDP] 19:38:01.440392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.440404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.440410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2749 7b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.440412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.440416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.440420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.440425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.440428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.440430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.440433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.440443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.440449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.450346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.450375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.450382 LLDP, length 82 [|LLDP] 19:38:01.450384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.450395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.450401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2751 1c25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.450403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.450407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.450410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.450415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.450420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.450423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.450425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.450435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.450441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.460346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.460375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.460383 LLDP, length 82 [|LLDP] 19:38:01.460384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.460396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.460402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.460407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.460412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.460415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.460417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2758 bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.460419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.460422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.460426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.460436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.460441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.470349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.470380 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.470388 LLDP, length 82 [|LLDP] 19:38:01.470389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.470400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.470407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2760 5e65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.470409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.470412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.470416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.470421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.470426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.470428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.470431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.470441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.470447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.480346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.480377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.480384 LLDP, length 82 [|LLDP] 19:38:01.480385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.480396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.480403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2767 ff85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.480405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.480408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.480412 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.480417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.480422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.480424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.480427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.480437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.480443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.490346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.490377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.490384 LLDP, length 82 [|LLDP] 19:38:01.490386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.490397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.490403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 276f a0a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.490405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.490410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.490415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.490418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.490420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.490423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.490427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.490437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.490442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.500347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.500378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.500386 LLDP, length 82 [|LLDP] 19:38:01.500387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.500398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.500405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2777 41c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.500407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.500411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.500415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.500420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.500424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.500427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.500429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.500439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.500445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.510346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.510375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.510383 LLDP, length 82 [|LLDP] 19:38:01.510385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.510396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.510403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.510408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.510411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.510413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.510418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 277e e2e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.510420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.510423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.510427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.510437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.510443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.520349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.520379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.520387 LLDP, length 82 [|LLDP] 19:38:01.520388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.520399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.520405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2786 8405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.520408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.520411 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.520416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.520421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.520424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.520426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.520430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.520440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.520446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.530352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.530381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.530389 LLDP, length 82 [|LLDP] 19:38:01.530390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.530402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.530407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 278e 2525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.530409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.530413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.530416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.530421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.530426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.530429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.530431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.530441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.530447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.540349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.540386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.540393 LLDP, length 82 [|LLDP] 19:38:01.540395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.540406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.540412 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.540417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.540422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.540425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.540427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2795 c645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.540429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.540433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.540436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.540446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.540452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.550347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.550378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.550386 LLDP, length 82 [|LLDP] 19:38:01.550387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.550398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.550404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 279d 6765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.550406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.550410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.550413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.550418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.550423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.550425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.550428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.550437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.550443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.560347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.560382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.560389 LLDP, length 82 [|LLDP] 19:38:01.560391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.560402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.560408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27a5 0885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.560410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.560414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.560417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.560422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.560427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.560430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.560432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.560442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.560448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.570346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.570375 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.570382 LLDP, length 82 [|LLDP] 19:38:01.570383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.570395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.570401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27ac a9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.570403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.570408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.570412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.570415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.570418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.570421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.570425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.570435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.570441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.580347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.580378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.580385 LLDP, length 82 [|LLDP] 19:38:01.580387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.580398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.580405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27b4 4ac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.580407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.580410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.580414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.580419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.580423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.580426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.580429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.580439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.580445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.590352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.590381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.590389 LLDP, length 82 [|LLDP] 19:38:01.590390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.590402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.590407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.590412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.590415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.590418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.590422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27bb ebe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.590424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.590428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.590432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.590442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.590447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.600349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.600382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.600390 LLDP, length 82 [|LLDP] 19:38:01.600391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.600402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.600408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27c3 8d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.600411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.600414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.600419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.600424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.600427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.600429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.600433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.600443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.600448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.610348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.610377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.610385 LLDP, length 82 [|LLDP] 19:38:01.610386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.610397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.610404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27cb 2e25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.610406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.610410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.610413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.610418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.610423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.610425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.610427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.610437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.610443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.620347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.620377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.620384 LLDP, length 82 [|LLDP] 19:38:01.620386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.620397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.620403 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.620408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.620413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.620415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.620418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27d2 cf45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.620419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.620423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.620426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.620436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.620442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.630347 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.630384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.630391 LLDP, length 82 [|LLDP] 19:38:01.630393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.630404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.630410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27da 7065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.630411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.630415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.630419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.630424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.630429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.630432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.630434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.630444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.630450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.640348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.640378 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.640385 LLDP, length 82 [|LLDP] 19:38:01.640387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.640398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.640404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27e2 1185 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.640406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.640410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.640413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.640418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.640423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.640426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.640428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.640438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.640444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.650349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.650377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.650384 LLDP, length 82 [|LLDP] 19:38:01.650386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.650397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.650403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27e9 b2a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.650405 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.650410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.650414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.650417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.650419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.650423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.650427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.650436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.650442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.660348 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.660384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.660391 LLDP, length 82 [|LLDP] 19:38:01.660393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.660404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.660410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27f1 53c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.660412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.660416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.660419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.660424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.660429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.660432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.660434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.660444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.660450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.670346 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.670376 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.670383 LLDP, length 82 [|LLDP] 19:38:01.670385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.670396 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.670402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.670407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.670410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.670412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.670417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 27f8 f4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.670419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.670423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.670426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.670436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.670442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.680350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.680379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.680387 LLDP, length 82 [|LLDP] 19:38:01.680388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.680401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.680407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2800 9605 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.680409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.680413 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.680418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.680423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.680425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.680427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.680431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.680441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.680447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.690365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.690405 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.690414 LLDP, length 82 [|LLDP] 19:38:01.690416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.690428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.690435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2808 3725 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.690438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.690442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.690445 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.690451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.690455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.690458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.690460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.690471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.690477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.700352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.700392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.700400 LLDP, length 82 [|LLDP] 19:38:01.700401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.700412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.700418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.700424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.700428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.700431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.700433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 280f d845 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.700435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.700439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.700443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.700454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.700461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.710353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.710391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.710399 LLDP, length 82 [|LLDP] 19:38:01.710401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.710412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.710419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2817 7965 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.710421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.710424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.710428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.710433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.710437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.710440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.710442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.710453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.710458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.720349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.720386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.720394 LLDP, length 82 [|LLDP] 19:38:01.720395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.720406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.720412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 281f 1a85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.720414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.720418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.720421 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.720426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.720431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.720434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.720436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.720446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.720452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.730356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.730388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.730396 LLDP, length 82 [|LLDP] 19:38:01.730397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.730409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.730415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2826 bba5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.730417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.730421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.730426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.730430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.730432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.730436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.730439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.730450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.730456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.740349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.740379 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.740386 LLDP, length 82 [|LLDP] 19:38:01.740388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.740399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.740405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 282e 5cc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.740407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.740411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.740414 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.740419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.740424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.740427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.740429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.740439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.740445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.750349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.750386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.750393 LLDP, length 82 [|LLDP] 19:38:01.750394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.750406 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.750411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.750417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.750420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.750422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.750427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2835 fde5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.750429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.750432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.750435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.750445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.750451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.760349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.760385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.760392 LLDP, length 82 [|LLDP] 19:38:01.760394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.760405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.760412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 283d 9f05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.760414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.760417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.760422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.760427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.760430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.760432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.760436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.760446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.760452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.770352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.770387 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.770394 LLDP, length 82 [|LLDP] 19:38:01.770396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.770407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.770413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2845 4025 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.770415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.770418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.770422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.770427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.770432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.770435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.770437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.770446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.770452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.780350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.780377 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.780384 LLDP, length 82 [|LLDP] 19:38:01.780386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.780397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.780404 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.780408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.780413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.780416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.780418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 284c e145 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.780420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.780423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.780427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.780437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.780442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.790359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.790398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.790406 LLDP, length 82 [|LLDP] 19:38:01.790407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.790419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.790425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2854 8265 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.790427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.790431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.790434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.790439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.790444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.790447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.790449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.790460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.790465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.800353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.800383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.800391 LLDP, length 82 [|LLDP] 19:38:01.800392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.800404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.800410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 285c 2385 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.800412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.800416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.800419 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.800424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.800429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.800432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.800434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.800445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.800450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.810350 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.810381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.810389 LLDP, length 82 [|LLDP] 19:38:01.810390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.810402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.810408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2863 c4a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.810410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.810415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.810420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.810423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.810425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.810429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.810432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.810442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.810448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.820352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.820391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.820399 LLDP, length 82 [|LLDP] 19:38:01.820401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.820412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.820419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 286b 65c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.820421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.820425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.820428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.820434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.820438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.820441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.820443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.820454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.820459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.830356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.830388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.830395 LLDP, length 82 [|LLDP] 19:38:01.830397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.830408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.830413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.830418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.830421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.830423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.830428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2873 06e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.830430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.830434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.830437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.830447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.830453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.840351 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.840386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.840393 LLDP, length 82 [|LLDP] 19:38:01.840395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.840407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.840413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 287a a805 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.840414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.840418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.840423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.840427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.840430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.840433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.840436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.840446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.840452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.850355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.850391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.850399 LLDP, length 82 [|LLDP] 19:38:01.850401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.850412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.850418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2882 4925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.850420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.850424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.850427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.850432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.850437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.850440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.850442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.850452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.850458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.860352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.860382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.860389 LLDP, length 82 [|LLDP] 19:38:01.860391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.860402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.860408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.860413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.860418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.860421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.860423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2889 ea45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.860425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.860429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.860432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.860442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.860447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.870352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.870382 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.870389 LLDP, length 82 [|LLDP] 19:38:01.870391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.870402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.870408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2891 8b65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.870410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.870414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.870417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.870422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.870427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.870429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.870432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.870441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.870447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.880352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.880387 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.880394 LLDP, length 82 [|LLDP] 19:38:01.880396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.880407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.880413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2899 2c85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.880415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.880419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.880423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.880428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.880433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.880435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.880437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.880447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.880453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.890353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.890388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.890396 LLDP, length 82 [|LLDP] 19:38:01.890397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.890408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.890415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28a0 cda5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.890417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.890422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.890427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.890430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.890432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.890435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.890439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.890449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.890455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.900366 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.900406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.900415 LLDP, length 82 [|LLDP] 19:38:01.900416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.900428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.900435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28a8 6ec5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.900437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.900441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.900444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.900450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.900455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.900458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.900460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.900471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.900477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.910355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.910386 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.910394 LLDP, length 82 [|LLDP] 19:38:01.910395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.910406 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.910412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.910418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.910420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.910423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.910428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28b0 0fe5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.910430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.910433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.910437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.910447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.910453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.920355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.920384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.920392 LLDP, length 82 [|LLDP] 19:38:01.920394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.920405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.920411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28b7 b105 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.920413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.920417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.920422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.920427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.920430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.920432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.920435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.920446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.920452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.930353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.930389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.930396 LLDP, length 82 [|LLDP] 19:38:01.930398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.930409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.930415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28bf 5225 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.930417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.930421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.930424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.930429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.930434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.930437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.930439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.930449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.930455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.940353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.940383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.940391 LLDP, length 82 [|LLDP] 19:38:01.940392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.940403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.940409 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.940414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.940419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.940422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.940424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28c6 f345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.940426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.940429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.940433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.940442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.940448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.950357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.950393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.950400 LLDP, length 82 [|LLDP] 19:38:01.950402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.950413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.950419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28ce 9465 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.950421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.950425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.950428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.950433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.950438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.950441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.950443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.950453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.950459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.960358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.960388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.960395 LLDP, length 82 [|LLDP] 19:38:01.960396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.960408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.960414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28d6 3585 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.960415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.960419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.960423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.960428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.960433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.960436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.960438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.960448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.960454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.970360 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.970391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.970399 LLDP, length 82 [|LLDP] 19:38:01.970400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.970412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.970417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28dd d6a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.970420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.970424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.970429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.970432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.970434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.970438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.970441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.970451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.970456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.980352 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.980381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.980388 LLDP, length 82 [|LLDP] 19:38:01.980390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.980401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.980407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28e5 77c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.980409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.980413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.980416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.980421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.980425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.980428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.980430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.980440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.980446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:01.990358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.990388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:01.990395 LLDP, length 82 [|LLDP] 19:38:01.990397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:01.990408 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:01.990414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:01.990419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.990422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:01.990424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:01.990429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28ed 18e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:01.990431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:01.990435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:01.990438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:01.990447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:01.990453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.000353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.000391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.000399 LLDP, length 82 [|LLDP] 19:38:02.000400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.000413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.000419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28f4 ba05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.000421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.000424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.000429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.000434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.000437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.000439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.000442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.000452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.000458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.010361 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.010392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.010399 LLDP, length 82 [|LLDP] 19:38:02.010401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.010412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.010418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 28fc 5b25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.010420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.010423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.010427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.010432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.010436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.010439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.010441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.010451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.010457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.020357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.020389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.020396 LLDP, length 82 [|LLDP] 19:38:02.020398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.020409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.020415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.020420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.020425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.020428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.020430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2903 fc45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.020432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.020436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.020439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.020450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.020456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.030357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.030388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.030396 LLDP, length 82 [|LLDP] 19:38:02.030398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.030409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.030415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 290b 9d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.030417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.030421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.030424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.030429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.030434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.030436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.030438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.030448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.030454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.040355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.040383 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.040391 LLDP, length 82 [|LLDP] 19:38:02.040392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.040404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.040409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2913 3e85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.040411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.040415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.040418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.040424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.040428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.040431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.040433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.040443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.040449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.050353 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.050389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.050396 LLDP, length 82 [|LLDP] 19:38:02.050397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.050409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.050414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 291a dfa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.050416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.050421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.050426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.050429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.050431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.050434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.050438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.050448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.050454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.060354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.060390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.060397 LLDP, length 82 [|LLDP] 19:38:02.060398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.060409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.060415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2922 80c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.060417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.060421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.060424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.060429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.060434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.060436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.060438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.060449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.060455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.070354 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.070390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.070398 LLDP, length 82 [|LLDP] 19:38:02.070399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.070410 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.070416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.070422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.070424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.070427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.070431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 292a 21e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.070433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.070437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.070440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.070450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.070456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.080356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.080393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.080401 LLDP, length 82 [|LLDP] 19:38:02.080402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.080414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.080421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2931 c305 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.080423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.080427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.080432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.080436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.080439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.080441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.080445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.080455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.080461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.090357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.090394 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.090402 LLDP, length 82 [|LLDP] 19:38:02.090403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.090415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.090420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2939 6425 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.090422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.090426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.090429 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.090434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.090439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.090442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.090444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.090454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.090460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.100356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.100388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.100395 LLDP, length 82 [|LLDP] 19:38:02.100397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.100408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.100415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.100420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.100425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.100427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.100430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2941 0545 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.100432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.100435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.100439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.100448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.100454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.110355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.110387 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.110394 LLDP, length 82 [|LLDP] 19:38:02.110396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.110407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.110414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2948 a665 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.110416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.110419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.110423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.110428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.110433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.110435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.110437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.110448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.110454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.120356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.120397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.120405 LLDP, length 82 [|LLDP] 19:38:02.120406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.120418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.120424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2950 4785 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.120426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.120430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.120434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.120439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.120443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.120446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.120449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.120459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.120465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.130358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.130395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.130403 LLDP, length 82 [|LLDP] 19:38:02.130405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.130416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.130422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2957 e8a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.130424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.130429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.130434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.130437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.130439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.130443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.130446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.130457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.130463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.140355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.140392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.140399 LLDP, length 82 [|LLDP] 19:38:02.140401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.140413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.140418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 295f 89c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.140421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.140424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.140428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.140432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.140437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.140440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.140442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.140452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.140458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.150359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.150397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.150404 LLDP, length 82 [|LLDP] 19:38:02.150406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.150417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.150423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.150429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.150431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.150433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.150438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2967 2ae5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.150440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.150444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.150447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.150458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.150464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.160355 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.160385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.160393 LLDP, length 82 [|LLDP] 19:38:02.160394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.160406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.160412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 296e cc05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.160414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.160417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.160422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.160427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.160430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.160432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.160436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.160445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.160451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.170356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.170385 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.170393 LLDP, length 82 [|LLDP] 19:38:02.170395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.170406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.170413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2976 6d25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.170415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.170418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.170422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.170427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.170432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.170435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.170437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.170446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.170452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.180357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.180392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.180399 LLDP, length 82 [|LLDP] 19:38:02.180401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.180412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.180418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.180423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.180428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.180430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.180432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 297e 0e45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.180435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.180438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.180442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.180452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.180458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.190357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.190392 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.190399 LLDP, length 82 [|LLDP] 19:38:02.190401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.190412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.190418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2985 af65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.190420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.190424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.190427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.190432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.190437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.190439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.190442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.190452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.190458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.200356 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.200384 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.200392 LLDP, length 82 [|LLDP] 19:38:02.200393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.200405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.200411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 298d 5085 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.200413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.200416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.200420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.200425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.200430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.200432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.200435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.200444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.200450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.210359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.210389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.210397 LLDP, length 82 [|LLDP] 19:38:02.210398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.210409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.210415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2994 f1a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.210417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.210422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.210427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.210430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.210432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.210436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.210439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.210449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.210455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.220358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.220390 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.220398 LLDP, length 82 [|LLDP] 19:38:02.220399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.220410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.220417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 299c 92c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.220418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.220422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.220425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.220430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.220435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.220438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.220440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.220450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.220456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.230357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.230395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.230403 LLDP, length 82 [|LLDP] 19:38:02.230404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.230416 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.230422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.230427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.230430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.230432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.230437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29a4 33e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.230440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.230443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.230447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.230457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.230462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.240357 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.240388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.240396 LLDP, length 82 [|LLDP] 19:38:02.240397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.240408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.240414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29ab d505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.240417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.240420 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.240425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.240430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.240433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.240435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.240439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.240449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.240455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.250358 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.250388 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.250395 LLDP, length 82 [|LLDP] 19:38:02.250397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.250408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.250414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29b3 7625 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.250416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.250419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.250423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.250428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.250433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.250435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.250438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.250448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.250466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.260389 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.260434 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.260443 LLDP, length 82 [|LLDP] 19:38:02.260444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.260456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.260465 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.260471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.260476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.260480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.260482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29bb 1745 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.260484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.260488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.260491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.260505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.260512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.273181 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.273244 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.273256 LLDP, length 82 [|LLDP] 19:38:02.273258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.273271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.273280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29c2 b865 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.273283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.273287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.273290 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.273296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.273303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.273306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.273309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.273325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.273332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.280403 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.280470 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.280481 LLDP, length 82 [|LLDP] 19:38:02.280483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.280495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.280505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29ca 5985 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.280508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.280511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.280515 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.280521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.280527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.280531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.280533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.280548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.280555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.290380 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.290435 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.290444 LLDP, length 82 [|LLDP] 19:38:02.290446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.290458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.290466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29d1 faa5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.290468 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.290475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.290480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.290484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.290486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.290490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.290493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.290506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.290513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.300362 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.300402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.300410 LLDP, length 82 [|LLDP] 19:38:02.300412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.300423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.300430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29d9 9bc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.300431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.300435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.300439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.300444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.300448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.300451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.300453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.300464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.300470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.310363 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.310395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.310403 LLDP, length 82 [|LLDP] 19:38:02.310405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.310417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.310423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.310429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.310431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.310433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.310438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29e1 3ce5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.310440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.310444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.310447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.310458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.310464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.320363 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.320397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.320405 LLDP, length 82 [|LLDP] 19:38:02.320406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.320419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.320425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29e8 de05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.320427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.320431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.320436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.320441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.320444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.320446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.320449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.320459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.320465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.333751 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.333785 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.333793 LLDP, length 82 [|LLDP] 19:38:02.333794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.333806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.333812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29f0 7f25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.333814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.333818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.333821 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.333826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.333831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.333834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.333836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.333846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.333852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.340359 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.340389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.340396 LLDP, length 82 [|LLDP] 19:38:02.340398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.340409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.340415 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.340420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.340425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.340428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.340430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29f8 2045 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.340432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.340435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.340438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.340449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.340454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.350360 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.350389 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.350396 LLDP, length 82 [|LLDP] 19:38:02.350398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.350409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.350415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 29ff c165 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.350417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.350421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.350425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.350429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.350434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.350436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.350438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.350448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.350454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.360362 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.360391 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.360399 LLDP, length 82 [|LLDP] 19:38:02.360400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.360411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.360417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a07 6285 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.360419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.360423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.360426 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.360431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.360436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.360438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.360440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.360451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.360456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.370389 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.370441 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.370450 LLDP, length 82 [|LLDP] 19:38:02.370452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.370464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.370473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a0f 03a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.370475 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.370481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.370486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.370489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.370492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.370496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.370499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.370512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.370518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.380362 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.380403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.380411 LLDP, length 82 [|LLDP] 19:38:02.380412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.380424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.380430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a16 a4c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.380432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.380435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.380439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.380444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.380449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.380452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.380454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.380465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.380470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.394349 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.394381 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.394388 LLDP, length 82 [|LLDP] 19:38:02.394390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.394402 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.394407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.394413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.394416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.394418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.394423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a1e 45e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.394425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.394429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.394432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.394442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.394448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.400376 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.400422 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.400431 LLDP, length 82 [|LLDP] 19:38:02.400433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.400444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.400452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a25 e705 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.400454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.400458 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.400463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.400468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.400472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.400474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.400477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.400504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.400511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.410365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.410397 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.410405 LLDP, length 82 [|LLDP] 19:38:02.410406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.410417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.410424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a2d 8825 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.410426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.410430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.410433 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.410439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.410444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.410446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.410449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.410459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.410465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.420364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.420395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.420403 LLDP, length 82 [|LLDP] 19:38:02.420404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.420416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.420422 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.420427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.420432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.420435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.420437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a35 2945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.420439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.420443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.420446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.420456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.420462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.430373 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.430414 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.430422 LLDP, length 82 [|LLDP] 19:38:02.430424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.430436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.430443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a3c ca65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.430445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.430448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.430452 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.430458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.430463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.430466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.430468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.430480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.430486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.440371 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.440420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.440429 LLDP, length 82 [|LLDP] 19:38:02.440430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.440442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.440449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a44 6b85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.440451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.440455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.440458 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.440464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.440468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.440472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.440474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.440486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.440492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.450363 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.450402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.450410 LLDP, length 82 [|LLDP] 19:38:02.450412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.450423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.450429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a4c 0ca5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.450431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.450436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.450441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.450444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.450446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.450450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.450453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.450464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.450470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.460364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.460400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.460408 LLDP, length 82 [|LLDP] 19:38:02.460410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.460421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.460427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a53 adc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.460429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.460432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.460436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.460441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.460446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.460449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.460451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.460461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.460466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.470378 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.470420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.470429 LLDP, length 82 [|LLDP] 19:38:02.470431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.470442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.470448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.470454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.470457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.470459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.470464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a5b 4ee5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.470466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.470470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.470473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.470485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.470491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.480366 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.480398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.480406 LLDP, length 82 [|LLDP] 19:38:02.480408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.480419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.480424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a62 f005 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.480427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.480431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.480436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.480440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.480443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.480446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.480449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.480460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.480465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.490365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.490402 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.490409 LLDP, length 82 [|LLDP] 19:38:02.490411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.490422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.490428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a6a 9125 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.490430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.490434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.490437 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.490442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.490447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.490449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.490451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.490462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.490468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.500393 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.500455 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.500464 LLDP, length 82 [|LLDP] 19:38:02.500466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.500478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.500487 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.500494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.500500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.500503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.500505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a72 3245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.500508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.500511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.500515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.500529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.500536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.510372 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.510410 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.510418 LLDP, length 82 [|LLDP] 19:38:02.510420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.510432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.510438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a79 d365 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.510441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.510444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.510448 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.510454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.510459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.510462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.510464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.510476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.510482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.520367 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.520399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.520407 LLDP, length 82 [|LLDP] 19:38:02.520409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.520420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.520427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a81 7485 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.520429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.520433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.520436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.520442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.520447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.520450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.520452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.520462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.520468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.530365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.530398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.530406 LLDP, length 82 [|LLDP] 19:38:02.530408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.530419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.530425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a89 15a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.530428 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.530433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.530438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.530441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.530443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.530447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.530450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.530460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.530466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.540371 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.540404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.540412 LLDP, length 82 [|LLDP] 19:38:02.540414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.540425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.540431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a90 b6c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.540433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.540437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.540441 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.540446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.540451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.540453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.540455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.540466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.540472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.550368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.550407 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.550414 LLDP, length 82 [|LLDP] 19:38:02.550416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.550427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.550433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.550439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.550442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.550444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.550449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a98 57e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.550451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.550455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.550458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.550468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.550474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.560364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.560393 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.560401 LLDP, length 82 [|LLDP] 19:38:02.560402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.560413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.560419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2a9f f905 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.560421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.560425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.560430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.560435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.560437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.560439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.560443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.560453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.560459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.570367 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.570399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.570406 LLDP, length 82 [|LLDP] 19:38:02.570408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.570419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.570425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2aa7 9a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.570427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.570430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.570434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.570439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.570444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.570447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.570449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.570459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.570465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.580366 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.580404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.580411 LLDP, length 82 [|LLDP] 19:38:02.580413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.580424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.580430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.580435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.580440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.580443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.580445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2aaf 3b45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.580446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.580450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.580453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.580464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.580470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.590364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.590395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.590403 LLDP, length 82 [|LLDP] 19:38:02.590404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.590415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.590421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ab6 dc65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.590423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.590427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.590430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.590435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.590440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.590443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.590445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.590455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.590460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.600369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.600399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.600407 LLDP, length 82 [|LLDP] 19:38:02.600408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.600419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.600425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2abe 7d85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.600427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.600431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.600434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.600439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.600444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.600446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.600449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.600459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.600465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.610365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.610396 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.610403 LLDP, length 82 [|LLDP] 19:38:02.610404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.610415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.610421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ac6 1ea5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.610423 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.610428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.610433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.610436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.610438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.610442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.610445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.610456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.610462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.620364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.620404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.620412 LLDP, length 82 [|LLDP] 19:38:02.620413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.620425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.620431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2acd bfc5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.620433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.620436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.620440 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.620445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.620450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.620453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.620455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.620465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.620472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.630364 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.630396 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.630404 LLDP, length 82 [|LLDP] 19:38:02.630405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.630417 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.630422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.630428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.630431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.630433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.630438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ad5 60e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.630440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.630444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.630447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.630457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.630463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.640367 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.640398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.640406 LLDP, length 82 [|LLDP] 19:38:02.640408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.640419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.640425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2add 0205 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.640427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.640431 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.640436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.640441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.640443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.640445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.640449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.640460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.640465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.650368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.650406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.650414 LLDP, length 82 [|LLDP] 19:38:02.650415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.650427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.650432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ae4 a325 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.650434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.650438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.650442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.650446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.650451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.650453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.650456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.650466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.650472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.660368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.660398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.660405 LLDP, length 82 [|LLDP] 19:38:02.660407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.660419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.660425 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.660430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.660435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.660437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.660440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2aec 4445 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.660442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.660445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.660449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.660459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.660465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.670365 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.670395 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.670402 LLDP, length 82 [|LLDP] 19:38:02.670404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.670415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.670421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2af3 e565 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.670423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.670426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.670430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.670435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.670440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.670443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.670445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.670454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.670460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.680374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.680415 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.680423 LLDP, length 82 [|LLDP] 19:38:02.680425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.680436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.680443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2afb 8685 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.680445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.680449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.680452 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.680457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.680462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.680465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.680467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.680477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.680483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.690376 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.690420 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.690428 LLDP, length 82 [|LLDP] 19:38:02.690430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.690441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.690447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b03 27a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.690450 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.690455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.690460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.690463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.690465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.690469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.690473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.690484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.690490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.700378 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.700416 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.700424 LLDP, length 82 [|LLDP] 19:38:02.700426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.700437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.700444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b0a c8c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.700446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.700450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.700453 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.700458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.700463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.700466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.700468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.700480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.700486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.710375 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.710408 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.710416 LLDP, length 82 [|LLDP] 19:38:02.710418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.710430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.710436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.710442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.710445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.710447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.710453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b12 69e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.710455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.710458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.710462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.710473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.710479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.720370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.720403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.720410 LLDP, length 82 [|LLDP] 19:38:02.720412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.720423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.720430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b1a 0b05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.720432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.720436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.720441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.720446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.720448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.720451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.720454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.720465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.720470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.730369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.730400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.730408 LLDP, length 82 [|LLDP] 19:38:02.730409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.730421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.730427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b21 ac25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.730429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.730432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.730436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.730441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.730446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.730449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.730451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.730461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.730468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.740369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.740403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.740411 LLDP, length 82 [|LLDP] 19:38:02.740412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.740424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.740430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.740435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.740439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.740443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.740444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b29 4d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.740446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.740450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.740453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.740464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.740470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.750368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.750407 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.750415 LLDP, length 82 [|LLDP] 19:38:02.750416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.750428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.750434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b30 ee65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.750436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.750440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.750443 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.750448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.750453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.750456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.750458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.750469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.750474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.760369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.760400 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.760407 LLDP, length 82 [|LLDP] 19:38:02.760409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.760420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.760426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b38 8f85 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.760428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.760432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.760435 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.760440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.760445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.760448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.760450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.760461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.760467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.770368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.770399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.770406 LLDP, length 82 [|LLDP] 19:38:02.770408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.770419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.770425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b40 30a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.770427 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.770432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.770437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.770440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.770442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.770445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.770449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.770459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.770465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.780368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.780398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.780406 LLDP, length 82 [|LLDP] 19:38:02.780407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.780418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.780424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b47 d1c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.780426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.780430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.780434 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.780439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.780443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.780446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.780448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.780458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.780464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.790368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.790404 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.790411 LLDP, length 82 [|LLDP] 19:38:02.790413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.790424 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.790430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.790435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.790438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.790441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.790446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b4f 72e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.790447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.790451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.790454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.790465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.790470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.800368 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.800398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.800406 LLDP, length 82 [|LLDP] 19:38:02.800407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.800418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.800425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b57 1405 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.800427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.800430 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.800435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.800440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.800443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.800445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.800449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.800459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.800464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.810369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.810399 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.810407 LLDP, length 82 [|LLDP] 19:38:02.810409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.810421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.810427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b5e b525 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.810429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.810432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.810436 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.810441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.810446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.810449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.810451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.810460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.810466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.820370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.820407 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.820414 LLDP, length 82 [|LLDP] 19:38:02.820416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.820428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.820433 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.820438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.820443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.820446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.820448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b66 5645 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.820449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.820453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.820457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.820467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.820473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.830369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.830401 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.830409 LLDP, length 82 [|LLDP] 19:38:02.830411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.830422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.830428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b6d f765 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.830430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.830433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.830437 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.830442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.830447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.830449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.830452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.830462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.830468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.840370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.840405 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.840413 LLDP, length 82 [|LLDP] 19:38:02.840415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.840426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.840433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b75 9885 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.840435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.840439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.840443 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.840448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.840453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.840456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.840458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.840469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.840474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.850370 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.850409 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.850418 LLDP, length 82 [|LLDP] 19:38:02.850419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.850431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.850437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b7d 39a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.850439 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.850444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.850449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.850452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.850454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.850458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.850462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.850472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.850477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.860369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.860406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.860413 LLDP, length 82 [|LLDP] 19:38:02.860415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.860427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.860433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b84 dac5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.860435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.860439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.860442 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.860447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.860452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.860455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.860457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.860467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.860473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.870369 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.870398 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.870405 LLDP, length 82 [|LLDP] 19:38:02.870407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.870418 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.870424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.870429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.870432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.870434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.870439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b8c 7be5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.870441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.870445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.870449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.870459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.870465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.880371 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.880401 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.880408 LLDP, length 82 [|LLDP] 19:38:02.880410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.880421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.880427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b94 1d05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.880429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.880432 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.880438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.880442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.880445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.880447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.880451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.880461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.880467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.890374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.890403 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.890410 LLDP, length 82 [|LLDP] 19:38:02.890412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.890423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.890429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2b9b be25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.890431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.890435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.890438 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.890443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.890448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.890450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.890453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.890463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.890469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.900381 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.900416 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.900424 LLDP, length 82 [|LLDP] 19:38:02.900426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.900438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.900444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.900449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.900454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.900457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.900460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2ba3 5f45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.900461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.900465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.900469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.900479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.900485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:38:02.910374 IP 1.1.1.2.11227 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.910406 IP 1.1.1.2.3002 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:38:02.910415 LLDP, length 82 [|LLDP] 19:38:02.910416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:38:02.910428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:38:02.910434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: e000 0002 1011 1213 2bab 0065 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:38:02.910437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:38:02.910441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:38:02.910444 IP 192.168.1.1.926 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:38:02.910449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:38:02.910454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.910457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:38:02.910459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:38:02.910469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:38:02.910475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15211 packets captured 15211 packets received by filter 0 packets dropped by kernel 1017 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:38:11 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:38:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:38:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif 289.73
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2275' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.5, port 59152 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:38:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c6950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 1319 Rx 1319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 1319 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG infra1:Logger.py:156 19:42:42.758455 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.758477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.758482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.758487 LLDP, length 82 [|LLDP] 19:42:42.758489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.758494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff1 53ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.758496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.758501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.758504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.758510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.768448 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.768465 LLDP, length 82 [|LLDP] 19:42:42.768467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.768472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff8 f51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.768474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.768478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.768481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.768485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.768489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.768494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.778443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.778459 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.778464 LLDP, length 82 [|LLDP] 19:42:42.778465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.778470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 963f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.778472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.778476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.778479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.778483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.778488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.788437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.788451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.788455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.788460 LLDP, length 82 [|LLDP] 19:42:42.788461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.788466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1008 375f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.788468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.788472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.788475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.788479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.798435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.798449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.798453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.798458 LLDP, length 82 [|LLDP] 19:42:42.798459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.798463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f d87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.798465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.798469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.798472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.798477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.808437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.808451 LLDP, length 82 [|LLDP] 19:42:42.808452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.808456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 799f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.808458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.808463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.808465 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.808470 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.808474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.808478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.818435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.818448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.818453 LLDP, length 82 [|LLDP] 19:42:42.818454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.818458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101f 1abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.818460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.818465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.818467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.818471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.818476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.828435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.828449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.828453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.828457 LLDP, length 82 [|LLDP] 19:42:42.828459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.828463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 bbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.828465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.828469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.828472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.828477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.838438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.838452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.838456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.838461 LLDP, length 82 [|LLDP] 19:42:42.838462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.838467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102e 5cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.838469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.838473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.838475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.838480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.848438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.848452 LLDP, length 82 [|LLDP] 19:42:42.848453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.848458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1035 fe1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.848460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.848464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.848466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.848471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.848475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.848479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.858437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.858450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.858455 LLDP, length 82 [|LLDP] 19:42:42.858456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.858461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 9f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.858463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.858467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.858470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.858474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.858479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.868434 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.868448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.868453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.868457 LLDP, length 82 [|LLDP] 19:42:42.868458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.868463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1045 405f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.868465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.868469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.868471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.868476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.878435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.878450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.878455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.878459 LLDP, length 82 [|LLDP] 19:42:42.878461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.878466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104c e17f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.878468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.878472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.878475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.878479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.888436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.888450 LLDP, length 82 [|LLDP] 19:42:42.888452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.888456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 829f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.888458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.888462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.888465 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.888469 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.888473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.888478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.898436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.898450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.898454 LLDP, length 82 [|LLDP] 19:42:42.898456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.898460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105c 23bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.898462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.898466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.898469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.898473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.898477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.908439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.908452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.908457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.908461 LLDP, length 82 [|LLDP] 19:42:42.908462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.908467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 c4df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.908468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.908472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.908475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.908480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.918437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.918450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.918455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.918459 LLDP, length 82 [|LLDP] 19:42:42.918461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.918465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 65ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.918467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.918471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.918474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.918479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.928437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.928452 LLDP, length 82 [|LLDP] 19:42:42.928453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.928458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1073 071f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.928460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.928464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.928467 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.928471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.928475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.928480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.938436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.938449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.938454 LLDP, length 82 [|LLDP] 19:42:42.938455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.938460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a a83f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.938462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.938466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.938469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.938473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.938478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.948438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.948451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.948456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.948461 LLDP, length 82 [|LLDP] 19:42:42.948462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.948467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1082 495f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.948469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.948473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.948475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.948480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.958439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.958453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.958458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.958462 LLDP, length 82 [|LLDP] 19:42:42.958463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.958468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1089 ea7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.958470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.958474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.958477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.958482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.968439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.968454 LLDP, length 82 [|LLDP] 19:42:42.968455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.968460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 8b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.968462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.968466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.968469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.968473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.968477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.968482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.978440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.978454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.978458 LLDP, length 82 [|LLDP] 19:42:42.978460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.978464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1099 2cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.978466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.978470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.978473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.978477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.978482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.988435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.988449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.988453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.988458 LLDP, length 82 [|LLDP] 19:42:42.988459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.988463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a0 cddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.988465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.988469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.988472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.988477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.998436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.998452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.998456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.998461 LLDP, length 82 [|LLDP] 19:42:42.998462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.998467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 6eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.998469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.998473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.998476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.998480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.008439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.008453 LLDP, length 82 [|LLDP] 19:42:43.008455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.008459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b0 101f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.008461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.008465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.008468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.008472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.008476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.008481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.018436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.018450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.018454 LLDP, length 82 [|LLDP] 19:42:43.018456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.018460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 b13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.018462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.018467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.018469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.018474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.018478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.028440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.028454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.028458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.028462 LLDP, length 82 [|LLDP] 19:42:43.028464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.028468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bf 525f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.028470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.028475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.028477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.028482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.038437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.038452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.038456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.038460 LLDP, length 82 [|LLDP] 19:42:43.038462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.038466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c6 f37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.038468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.038472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.038475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.038480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.048437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.048451 LLDP, length 82 [|LLDP] 19:42:43.048453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.048458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 949f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.048460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.048464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.048466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.048471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.048475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.048480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.058447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.058469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.058474 LLDP, length 82 [|LLDP] 19:42:43.058475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.058480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d6 35bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.058482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.058486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.058489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.058493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.058498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.068442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.068457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.068462 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.068466 LLDP, length 82 [|LLDP] 19:42:43.068467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.068472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dd d6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.068474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.068478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.068481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.068486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.078441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.078456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.078460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.078465 LLDP, length 82 [|LLDP] 19:42:43.078466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.078470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 77ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.078473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.078477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.078480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.078485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.088445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.088462 LLDP, length 82 [|LLDP] 19:42:43.088464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.088468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ed 191f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.088471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.088475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.088478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.088482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.088486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.088492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.098448 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.098467 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.098472 LLDP, length 82 [|LLDP] 19:42:43.098473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.098478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f4 ba3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.098480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.098484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.098487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.098492 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.098496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.108438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.108452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.108456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.108460 LLDP, length 82 [|LLDP] 19:42:43.108462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.108466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 5b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.108468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.108472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.108475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.108480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.118436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.118447 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.118451 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.118456 LLDP, length 82 [|LLDP] 19:42:43.118457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.118462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 fc7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.118464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.118468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.118471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.118475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.128446 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.128464 LLDP, length 82 [|LLDP] 19:42:43.128466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.128471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 9d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.128473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.128477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.128479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.128484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.128488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.128493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.138441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.138457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.138461 LLDP, length 82 [|LLDP] 19:42:43.138463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.138467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1113 3ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.138469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.138474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.138476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.138481 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.138485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.148438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.148452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.148456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.148461 LLDP, length 82 [|LLDP] 19:42:43.148462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.148466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111a dfdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.148468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.148472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.148475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.148479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.158444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.158460 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.158464 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.158469 LLDP, length 82 [|LLDP] 19:42:43.158470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.158480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 80ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.158483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.158487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.158490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.158494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.168449 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.168463 LLDP, length 82 [|LLDP] 19:42:43.168464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.168469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112a 221f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.168471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.168475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.168478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.168482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.168486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.168491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.178439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.178452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.178456 LLDP, length 82 [|LLDP] 19:42:43.178457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.178462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1131 c33f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.178464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.178468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.178471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.178475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.178480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.188437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.188450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.188454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.188459 LLDP, length 82 [|LLDP] 19:42:43.188460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.188465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 645f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.188467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.188471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.188473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.188478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.198458 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.198482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.198487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.198491 LLDP, length 82 [|LLDP] 19:42:43.198493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.198497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1141 057f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.198500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.198504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.198508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.198512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.208442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.208456 LLDP, length 82 [|LLDP] 19:42:43.208457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.208461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1148 a69f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.208463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.208467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.208470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.208475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.208479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.208483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.218440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.218452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.218456 LLDP, length 82 [|LLDP] 19:42:43.218458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.218462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 47bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.218464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.218468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.218471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.218475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.218480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.228437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.228448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.228453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.228457 LLDP, length 82 [|LLDP] 19:42:43.228459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.228463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 e8df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.228465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.228469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.228471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.228476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.238438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.238449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.238453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.238457 LLDP, length 82 [|LLDP] 19:42:43.238459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.238463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 89ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.238465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.238469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.238472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.238477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.248439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.248451 LLDP, length 82 [|LLDP] 19:42:43.248453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.248457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1167 2b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.248459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.248463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.248466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.248470 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.248474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.248479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.258438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.258449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.258454 LLDP, length 82 [|LLDP] 19:42:43.258455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.258459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116e cc3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.258461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.258466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.258468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.258473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.258477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.268439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.268451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.268455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.268459 LLDP, length 82 [|LLDP] 19:42:43.268461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.268465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 6d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.268467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.268471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.268473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.268478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.278462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.278480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.278485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.278490 LLDP, length 82 [|LLDP] 19:42:43.278491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.278496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117e 0e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.278498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.278502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.278505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.278511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.288450 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.288465 LLDP, length 82 [|LLDP] 19:42:43.288466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.288471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1185 af9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.288473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.288477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.288480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.288484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.288489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.288493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.298441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.298453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.298458 LLDP, length 82 [|LLDP] 19:42:43.298459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.298464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 50bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.298466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.298470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.298473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.298477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.298481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.308444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.308457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.308462 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.308466 LLDP, length 82 [|LLDP] 19:42:43.308467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.308472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 f1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.308474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.308478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.308480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.308485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.318439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.318451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.318455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.318459 LLDP, length 82 [|LLDP] 19:42:43.318461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.318465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119c 92ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.318467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.318471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.318473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.318478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.328442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.328453 LLDP, length 82 [|LLDP] 19:42:43.328455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.328459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a4 341f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.328461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.328465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.328468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.328472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.328476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.328480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.338441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.338453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.338457 LLDP, length 82 [|LLDP] 19:42:43.338459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.338463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ab d53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.338465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.338469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.338472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.338476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.338481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.348440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.348453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.348458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.348462 LLDP, length 82 [|LLDP] 19:42:43.348463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.348468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 765f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.348470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.348474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.348477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.348482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.358439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.358452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.358456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.358461 LLDP, length 82 [|LLDP] 19:42:43.358462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.358466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bb 177f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.358469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.358473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.358476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.358480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.368440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.368451 LLDP, length 82 [|LLDP] 19:42:43.368453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.368457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c2 b89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.368459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.368463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.368465 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.368469 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.368474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.368478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.378438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.378449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.378453 LLDP, length 82 [|LLDP] 19:42:43.378455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.378459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 59bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.378461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.378465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.378467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.378472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.378476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.388445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.388457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.388462 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.388466 LLDP, length 82 [|LLDP] 19:42:43.388468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.388472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 fadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.388474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.388478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.388481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.388485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.398440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.398451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.398455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.398460 LLDP, length 82 [|LLDP] 19:42:43.398461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.398465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d9 9bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.398467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.398471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.398474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.398479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.408441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.408453 LLDP, length 82 [|LLDP] 19:42:43.408455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.408459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 3d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.408461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.408465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.408468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.408472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.408477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.408481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.418440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.418453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.418458 LLDP, length 82 [|LLDP] 19:42:43.418459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.418463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 de3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.418465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.418469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.418472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.418476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.418481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.428443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.428454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.428459 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.428463 LLDP, length 82 [|LLDP] 19:42:43.428464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.428468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f0 7f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.428470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.428474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.428477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.428482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.438440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.438452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.438457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.438461 LLDP, length 82 [|LLDP] 19:42:43.438463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.438467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f8 207f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.438469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.438473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.438476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.438480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.448443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.448456 LLDP, length 82 [|LLDP] 19:42:43.448457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.448461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ff c19f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.448463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.448467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.448470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.448474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.448478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.448483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.458443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.458455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.458459 LLDP, length 82 [|LLDP] 19:42:43.458460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.458465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 62bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.458467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.458471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.458474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.458478 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.458483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.468441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.468453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.468457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.468461 LLDP, length 82 [|LLDP] 19:42:43.468463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.468467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120f 03df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.468469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.468473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.468476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.468480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.478440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.478451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.478455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.478459 LLDP, length 82 [|LLDP] 19:42:43.478461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.478465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1216 a4ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.478467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.478471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.478473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.478478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.488442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.488454 LLDP, length 82 [|LLDP] 19:42:43.488456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.488460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 461f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.488462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.488467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.488469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.488473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.488478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.488482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.498441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.498452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.498456 LLDP, length 82 [|LLDP] 19:42:43.498458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.498462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 e73f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.498464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.498468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.498471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.498475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.498480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.510619 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.510630 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.510634 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.510638 LLDP, length 82 [|LLDP] 19:42:43.510640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.510644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122d 885f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.510646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.510650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.510653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.510658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.518444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.518457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.518461 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.518465 LLDP, length 82 [|LLDP] 19:42:43.518467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.518471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1235 297f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.518473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.518477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.518480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.518485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.528444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.528456 LLDP, length 82 [|LLDP] 19:42:43.528457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.528462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123c ca9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.528464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.528468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.528470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.528474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.528479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.528483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.538441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.538452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.538456 LLDP, length 82 [|LLDP] 19:42:43.538458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.538462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1244 6bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.538464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.538468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.538471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.538475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.538479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.548440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.548451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.548455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.548460 LLDP, length 82 [|LLDP] 19:42:43.548461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.548466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124c 0cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.548468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.548471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.548474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.548478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.558442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.558455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.558459 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.558464 LLDP, length 82 [|LLDP] 19:42:43.558465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.558470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1253 adff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.558471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.558476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.558478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.558483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.571310 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.571322 LLDP, length 82 [|LLDP] 19:42:43.571323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.571328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 4f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.571330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.571334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.571337 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.571342 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.571346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.571351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.578445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.578459 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.578463 LLDP, length 82 [|LLDP] 19:42:43.578464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.578469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1262 f03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.578471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.578475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.578478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.578482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.578486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.588444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.588455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.588460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.588464 LLDP, length 82 [|LLDP] 19:42:43.588466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.588470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126a 915f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.588472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.588476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.588479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.588483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.598443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.598455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.598460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.598464 LLDP, length 82 [|LLDP] 19:42:43.598466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.598470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 327f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.598472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.598476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.598479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.598483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.608443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.608454 LLDP, length 82 [|LLDP] 19:42:43.608456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.608460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1279 d39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.608462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.608465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.608468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.608472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.608476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.608481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.618447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.618460 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.618464 LLDP, length 82 [|LLDP] 19:42:43.618466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.618470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1281 74bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.618472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.618476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.618479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.618483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.618487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.631978 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.631989 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.631994 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.631998 LLDP, length 82 [|LLDP] 19:42:43.631999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.632004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1289 15df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.632005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.632009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.632012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.632017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.638442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.638452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.638457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.638461 LLDP, length 82 [|LLDP] 19:42:43.638462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.638467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1290 b6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.638468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.638472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.638475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.638479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.648444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.648455 LLDP, length 82 [|LLDP] 19:42:43.648456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.648460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1298 581f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.648462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.648466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.648469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.648473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.648477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.648482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.658442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.658454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.658459 LLDP, length 82 [|LLDP] 19:42:43.658460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.658464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129f f93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.658466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.658470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.658473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.658477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.658482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.668444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.668456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.668460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.668465 LLDP, length 82 [|LLDP] 19:42:43.668466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.668470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12a7 9a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.668472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.668476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.668479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.668483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.678444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.678455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.678460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.678464 LLDP, length 82 [|LLDP] 19:42:43.678465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.678470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12af 3b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.678472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.678476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.678478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.678483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.688442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.688453 LLDP, length 82 [|LLDP] 19:42:43.688455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.688459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12b6 dc9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.688461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.688465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.688467 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.688472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.688476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.688480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.698445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.698456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.698460 LLDP, length 82 [|LLDP] 19:42:43.698461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.698466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12be 7dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.698468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.698472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.698474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.698479 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.698483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.708444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.708455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.708459 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.708463 LLDP, length 82 [|LLDP] 19:42:43.708464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.708469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12c6 1edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.708470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.708475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.708477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.708482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.718443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.718453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.718458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.718462 LLDP, length 82 [|LLDP] 19:42:43.718463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.718468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12cd bfff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.718470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.718474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.718476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.718481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.728447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.728459 LLDP, length 82 [|LLDP] 19:42:43.728461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.728465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12d5 611f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.728467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.728471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.728473 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.728478 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.728482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.728487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.738443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.738454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.738459 LLDP, length 82 [|LLDP] 19:42:43.738460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.738464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12dd 023f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.738466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.738470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.738473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.738477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.738482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.748445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.748456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.748461 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.748465 LLDP, length 82 [|LLDP] 19:42:43.748466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.748471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12e4 a35f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.748473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.748477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.748480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.748484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.758441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.758449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.758453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.758458 LLDP, length 82 [|LLDP] 19:42:43.758459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.758463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12ec 447f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.758465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.758469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.758472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.758476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.768469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.768488 LLDP, length 82 [|LLDP] 19:42:43.768490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.768495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12f3 e59f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.768497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.768501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.768505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.768510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.768514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.768519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.778459 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.778476 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.778480 LLDP, length 82 [|LLDP] 19:42:43.778482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.778486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12fb 86bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.778489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.778493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.778496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.778500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.778505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.788442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.788450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.788454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.788458 LLDP, length 82 [|LLDP] 19:42:43.788460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.788464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1303 27df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.788466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.788470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.788473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.788477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.798442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.798450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.798454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.798459 LLDP, length 82 [|LLDP] 19:42:43.798460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.798464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 130a c8ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.798467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.798471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.798473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.798477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.808441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.808448 LLDP, length 82 [|LLDP] 19:42:43.808450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.808454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1312 6a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.808456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.808460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.808463 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.808467 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.808472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.808476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.818443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.818451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.818455 LLDP, length 82 [|LLDP] 19:42:43.818457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.818461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 131a 0b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.818463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.818467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.818469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.818474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.818478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.828444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.828453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.828458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.828462 LLDP, length 82 [|LLDP] 19:42:43.828463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.828467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1321 ac5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.828469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.828473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.828475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.828480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.838442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.838449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.838454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.838458 LLDP, length 82 [|LLDP] 19:42:43.838459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.838464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1329 4d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.838465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.838469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.838472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.838476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.848441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.848448 LLDP, length 82 [|LLDP] 19:42:43.848450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.848454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1330 ee9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.848456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.848460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.848462 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.848467 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.848471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.848475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.858440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.858448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.858452 LLDP, length 82 [|LLDP] 19:42:43.858453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.858458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1338 8fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.858460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.858464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.858467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.858471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.858475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.868442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.868450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.868455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.868459 LLDP, length 82 [|LLDP] 19:42:43.868461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.868465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1340 30df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.868467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.868471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.868473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.868478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.878444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.878452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.878456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.878460 LLDP, length 82 [|LLDP] 19:42:43.878462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.878466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1347 d1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.878468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.878472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.878474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.878479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.888451 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.888458 LLDP, length 82 [|LLDP] 19:42:43.888460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.888464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 134f 731f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.888466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.888470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.888472 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.888476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.888481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.888485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.898439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.898448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.898452 LLDP, length 82 [|LLDP] 19:42:43.898453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.898458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1357 143f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.898460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.898464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.898466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.898471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.898476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.908443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.908450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.908455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.908459 LLDP, length 82 [|LLDP] 19:42:43.908461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.908465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 135e b55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.908467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.908471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.908473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.908478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.918441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.918449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.918453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.918458 LLDP, length 82 [|LLDP] 19:42:43.918459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.918463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1366 567f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.918465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.918470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.918472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.918476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.928441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.928449 LLDP, length 82 [|LLDP] 19:42:43.928451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.928455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 136d f79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.928457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.928461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.928463 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.928468 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.928472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.928476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.938443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.938451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.938456 LLDP, length 82 [|LLDP] 19:42:43.938457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.938462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1375 98bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.938463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.938467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.938470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.938474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.938478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.948443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.948451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.948455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.948459 LLDP, length 82 [|LLDP] 19:42:43.948461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.948465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 137d 39df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.948467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.948471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.948473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.948478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.958441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.958449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.958453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.958457 LLDP, length 82 [|LLDP] 19:42:43.958459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.958463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1384 daff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.958465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.958469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.958471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.958476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.968443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.968450 LLDP, length 82 [|LLDP] 19:42:43.968452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.968456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 138c 7c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.968458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.968462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.968464 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.968469 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.968473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.968478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.978446 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.978453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.978458 LLDP, length 82 [|LLDP] 19:42:43.978459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.978464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1394 1d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.978466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.978470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.978472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.978476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.978481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.988444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.988453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.988457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.988461 LLDP, length 82 [|LLDP] 19:42:43.988463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.988467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 139b be5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.988469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.988473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.988475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.988479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.998447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.998456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.998460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.998465 LLDP, length 82 [|LLDP] 19:42:43.998466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.998471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13a3 5f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.998472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.998476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.998479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.998483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.008476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.008497 LLDP, length 82 [|LLDP] 19:42:44.008499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.008503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13ab 009f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.008506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.008510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.008513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.008518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.008522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.008527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.018456 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.018470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.018475 LLDP, length 82 [|LLDP] 19:42:44.018476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.018481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13b2 a1bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.018483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.018487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.018490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.018494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.018499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.028453 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.028466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.028470 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.028474 LLDP, length 82 [|LLDP] 19:42:44.028476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.028480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13ba 42df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.028482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.028486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.028489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.028494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.038451 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.038464 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.038468 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.038473 LLDP, length 82 [|LLDP] 19:42:44.038474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.038479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13c1 e3ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.038481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.038485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.038487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.038492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.048453 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.048467 LLDP, length 82 [|LLDP] 19:42:44.048468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.048473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13c9 851f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.048475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.048479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.048482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.048486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.048490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.048495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.058456 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.058470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.058474 LLDP, length 82 [|LLDP] 19:42:44.058476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.058480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13d1 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.058482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.058486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.058489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.058493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.058498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.068452 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.068464 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.068468 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.068473 LLDP, length 82 [|LLDP] 19:42:44.068474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.068478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13d8 c75f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.068480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.068484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.068487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.068491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.078449 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.078459 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.078464 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.078468 LLDP, length 82 [|LLDP] 19:42:44.078469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.078474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13e0 687f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.078475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.078480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.078483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.078487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.088453 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.088465 LLDP, length 82 [|LLDP] 19:42:44.088466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.088471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13e8 099f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.088473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.088477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.088480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.088484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.088488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.088493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.098450 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.098462 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.098467 LLDP, length 82 [|LLDP] 19:42:44.098468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.098472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13ef aabf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.098474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.098479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.098481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.098485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.098490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.108472 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.108493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.108498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.108502 LLDP, length 82 [|LLDP] 19:42:44.108504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.108509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13f7 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.108511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.108515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.108518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.108523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.118467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.118483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.118487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.118492 LLDP, length 82 [|LLDP] 19:42:44.118494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.118498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13fe ecff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.118500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.118504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.118507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.118512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.128461 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.128476 LLDP, length 82 [|LLDP] 19:42:44.128478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.128482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1406 8e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.128484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.128489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.128491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.128496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.128500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.128505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.138460 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.138474 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.138479 LLDP, length 82 [|LLDP] 19:42:44.138481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.138485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 140e 2f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.138487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.138492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.138495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.138499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.138504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.148461 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.148479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.148483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.148487 LLDP, length 82 [|LLDP] 19:42:44.148489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.148493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1415 d05f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.148495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.148500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.148503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.148507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.158463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.158478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.158483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.158488 LLDP, length 82 [|LLDP] 19:42:44.158489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.158494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 141d 717f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.158496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.158500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.158503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.158508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.168462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.168478 LLDP, length 82 [|LLDP] 19:42:44.168479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.168484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1425 129f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.168486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.168491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.168494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.168498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.168503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.168508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.179796 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.179811 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.179815 LLDP, length 82 [|LLDP] 19:42:44.179817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.179821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 142c b3bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.179823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.179827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.179830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.179834 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.179839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.188461 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.188477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.188482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.188486 LLDP, length 82 [|LLDP] 19:42:44.188488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.188492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1434 54df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.188494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.188498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.188501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.188506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.198477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.198498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.198503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.198507 LLDP, length 82 [|LLDP] 19:42:44.198509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.198514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 143b f5ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.198516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.198520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.198523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.198528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.208466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.208481 LLDP, length 82 [|LLDP] 19:42:44.208483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.208487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1443 971f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.208490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.208494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.208497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.208501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.208506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.208511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.218460 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.218474 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.218478 LLDP, length 82 [|LLDP] 19:42:44.218480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.218484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 144b 383f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.218486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.218491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.218493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.218498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.218502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.228478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.228498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.228503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.228507 LLDP, length 82 [|LLDP] 19:42:44.228509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.228513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1452 d95f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.228515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.228520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.228523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.228528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.240422 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.240438 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.240443 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.240447 LLDP, length 82 [|LLDP] 19:42:44.240449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.240453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 145a 7a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.240455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.240460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.240463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.240467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.248465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.248481 LLDP, length 82 [|LLDP] 19:42:44.248482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.248487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1462 1b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.248489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.248493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.248496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.248500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.248504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.248509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.258464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.258478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.258482 LLDP, length 82 [|LLDP] 19:42:44.258484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.258488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1469 bcbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.258490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.258495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.258498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.258502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.258507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.268470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.268490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.268495 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.268500 LLDP, length 82 [|LLDP] 19:42:44.268501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.268506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1471 5ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.268508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.268512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.268515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.268520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.278466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.278481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.278485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.278490 LLDP, length 82 [|LLDP] 19:42:44.278492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.278496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1478 feff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.278498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.278502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.278505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.278510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.288465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.288479 LLDP, length 82 [|LLDP] 19:42:44.288481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.288486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1480 a01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.288488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.288492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.288495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.288499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.288504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.288508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.301096 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.301116 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.301121 LLDP, length 82 [|LLDP] 19:42:44.301122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.301127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1488 413f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.301129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.301133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.301136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.301140 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.301145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.308466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.308482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.308487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.308491 LLDP, length 82 [|LLDP] 19:42:44.308493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.308498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 148f e25f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.308500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.308504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.308506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.308511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.318467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.318482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.318487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.318491 LLDP, length 82 [|LLDP] 19:42:44.318493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.318497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1497 837f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.318499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.318503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.318506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.318511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.328466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.328484 LLDP, length 82 [|LLDP] 19:42:44.328486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.328490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 149f 249f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.328492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.328496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.328499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.328504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.328508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.328513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.338486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.338510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.338514 LLDP, length 82 [|LLDP] 19:42:44.338517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.338521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14a6 c5bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.338524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.338528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.338532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.338536 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.338541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.348465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.348482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.348487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.348491 LLDP, length 82 [|LLDP] 19:42:44.348493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.348498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14ae 66df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.348500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.348504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.348507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.348512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.358463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.358478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.358483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.358488 LLDP, length 82 [|LLDP] 19:42:44.358489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.358494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14b6 07ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.358495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.358500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.358503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.358507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.368467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.368481 LLDP, length 82 [|LLDP] 19:42:44.368483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.368487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14bd a91f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.368489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.368493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.368496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.368500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.368504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.368509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.378465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.378480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.378484 LLDP, length 82 [|LLDP] 19:42:44.378486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.378490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14c5 4a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.378492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.378496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.378499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.378503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.378508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.388464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.388478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.388483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.388487 LLDP, length 82 [|LLDP] 19:42:44.388488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.388493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14cc eb5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.388495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.388499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.388501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.388506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.398462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.398476 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.398481 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.398485 LLDP, length 82 [|LLDP] 19:42:44.398486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.398491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14d4 8c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.398493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.398497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.398500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.398505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.399745 LLDP, length 226: localhost 19:42:44.408462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.408478 LLDP, length 82 [|LLDP] 19:42:44.408480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.408484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14dc 2d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.408486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.408490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.408493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.408498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.408502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.408507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.418470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.418486 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.418491 LLDP, length 82 [|LLDP] 19:42:44.418492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.418497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14e3 cebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.418499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.418503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.418506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.418510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.418515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.428469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.428486 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.428491 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.428495 LLDP, length 82 [|LLDP] 19:42:44.428497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.428501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14eb 6fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.428503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.428507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.428510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.428515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.438464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.438478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.438482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.438487 LLDP, length 82 [|LLDP] 19:42:44.438488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.438493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14f3 10ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.438495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.438499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.438502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.438506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.448465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.448480 LLDP, length 82 [|LLDP] 19:42:44.448482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.448487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14fa b21f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.448489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.448493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.448496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.448500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.448504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.448509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.458463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.458477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.458481 LLDP, length 82 [|LLDP] 19:42:44.458483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.458488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1502 533f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.458490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.458494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.458496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.458501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.458505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.468466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.468481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.468485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.468490 LLDP, length 82 [|LLDP] 19:42:44.468491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.468496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1509 f45f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.468498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.468502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.468505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.468509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.478463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.478478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.478482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.478487 LLDP, length 82 [|LLDP] 19:42:44.478489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.478493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1511 957f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.478495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.478499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.478502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.478507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.488468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.488483 LLDP, length 82 [|LLDP] 19:42:44.488484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.488489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1519 369f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.488491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.488495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.488497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.488502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.488506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.488511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.498466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.498480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.498485 LLDP, length 82 [|LLDP] 19:42:44.498486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.498491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1520 d7bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.498493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.498497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.498500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.498504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.498509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.508463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.508477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.508482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.508486 LLDP, length 82 [|LLDP] 19:42:44.508488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.508493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1528 78df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.508495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.508499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.508502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.508506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.518463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.518476 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.518481 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.518485 LLDP, length 82 [|LLDP] 19:42:44.518487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.518491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1530 19ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.518493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.518497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.518500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.518505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.528465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.528481 LLDP, length 82 [|LLDP] 19:42:44.528483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.528487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1537 bb1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.528489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.528493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.528496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.528500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.528505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.528510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.538466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.538481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.538485 LLDP, length 82 [|LLDP] 19:42:44.538487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.538492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 153f 5c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.538493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.538498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.538501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.538505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.538509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.548467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.548481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.548486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.548490 LLDP, length 82 [|LLDP] 19:42:44.548492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.548496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1546 fd5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.548498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.548502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.548504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.548509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.558465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.558480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.558484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.558488 LLDP, length 82 [|LLDP] 19:42:44.558490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.558494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 154e 9e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.558496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.558500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.558503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.558508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.568466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.568479 LLDP, length 82 [|LLDP] 19:42:44.568481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.568485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1556 3f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.568487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.568491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.568494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.568499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.568503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.568508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.578466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.578479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.578484 LLDP, length 82 [|LLDP] 19:42:44.578485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.578490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 155d e0bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.578492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.578496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.578499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.578504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.578508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.588463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.588478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.588482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.588487 LLDP, length 82 [|LLDP] 19:42:44.588488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.588493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1565 81df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.588495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.588499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.588501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.588506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.598468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.598485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.598489 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.598494 LLDP, length 82 [|LLDP] 19:42:44.598495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.598500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 156d 22ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.598502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.598506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.598509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.598513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.608470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.608485 LLDP, length 82 [|LLDP] 19:42:44.608486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.608491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1574 c41f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.608493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.608497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.608500 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.608504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.608509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.608514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.618466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.618481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.618485 LLDP, length 82 [|LLDP] 19:42:44.618486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.618491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 157c 653f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.618493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.618497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.618500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.618504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.618509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.628464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.628477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.628482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.628486 LLDP, length 82 [|LLDP] 19:42:44.628488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.628492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1584 065f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.628494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.628498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.628501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.628506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.638465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.638479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.638483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.638488 LLDP, length 82 [|LLDP] 19:42:44.638489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.638493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 158b a77f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.638495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.638499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.638502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.638507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.648467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.648480 LLDP, length 82 [|LLDP] 19:42:44.648482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.648486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1593 489f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.648488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.648492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.648495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.648500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.648504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.648509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.658478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.658496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.658501 LLDP, length 82 [|LLDP] 19:42:44.658503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.658507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 159a e9bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.658509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.658513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.658516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.658521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.658525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.668473 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.668489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.668494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.668498 LLDP, length 82 [|LLDP] 19:42:44.668500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.668504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15a2 8adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.668506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.668510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.668513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.668518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.678466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.678481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.678485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.678490 LLDP, length 82 [|LLDP] 19:42:44.678492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.678496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15aa 2bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.678498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.678503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.678506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.678510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.688467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.688480 LLDP, length 82 [|LLDP] 19:42:44.688482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.688487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15b1 cd1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.688489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.688493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.688496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.688500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.688504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.688509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.698468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.698483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.698488 LLDP, length 82 [|LLDP] 19:42:44.698490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.698494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15b9 6e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.698496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.698501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.698503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.698508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.698512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.708469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.708483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.708488 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.708493 LLDP, length 82 [|LLDP] 19:42:44.708494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.708498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15c1 0f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.708500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.708504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.708507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.708512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.718469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.718484 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.718489 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.718493 LLDP, length 82 [|LLDP] 19:42:44.718495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.718499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15c8 b07f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.718502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.718506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.718509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.718513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.728471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.728485 LLDP, length 82 [|LLDP] 19:42:44.728487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.728492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15d0 519f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.728494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.728498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.728501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.728505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.728509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.728514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.738470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.738485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.738489 LLDP, length 82 [|LLDP] 19:42:44.738491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.738496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15d7 f2bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.738497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.738502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.738505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.738509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.738514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.748468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.748482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.748486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.748491 LLDP, length 82 [|LLDP] 19:42:44.748492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.748497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15df 93df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.748499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.748503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.748506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.748510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.758466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.758480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.758485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.758489 LLDP, length 82 [|LLDP] 19:42:44.758491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.758495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15e7 34ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.758497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.758501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.758504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.758508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.768469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.768483 LLDP, length 82 [|LLDP] 19:42:44.768485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.768490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15ee d61f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.768492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.768496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.768499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.768503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.768507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.768512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.778468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.778483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.778487 LLDP, length 82 [|LLDP] 19:42:44.778489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.778493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15f6 773f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.778495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.778499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.778502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.778507 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.778511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.788474 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.788489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.788493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.788498 LLDP, length 82 [|LLDP] 19:42:44.788499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.788504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15fe 185f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.788506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.788510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.788513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.788517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.798613 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.798634 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.798639 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.798644 LLDP, length 82 [|LLDP] 19:42:44.798646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.798651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1605 b97f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.798653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.798657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.798660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.798666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.808482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.808499 LLDP, length 82 [|LLDP] 19:42:44.808501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.808506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 160d 5a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.808508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.808512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.808515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.808520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.808524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.808529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.818471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.818485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.818490 LLDP, length 82 [|LLDP] 19:42:44.818492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.818497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1614 fbbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.818498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.818503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.818505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.818510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.818514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.828474 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.828488 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.828493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.828497 LLDP, length 82 [|LLDP] 19:42:44.828499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.828503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 161c 9cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.828505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.828509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.828512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.828517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.838473 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.838489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.838494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.838498 LLDP, length 82 [|LLDP] 19:42:44.838500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.838504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1624 3dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.838506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.838511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.838513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.838518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.848475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.848490 LLDP, length 82 [|LLDP] 19:42:44.848492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.848496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 162b df1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.848498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.848503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.848505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.848510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.848514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.848518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.858467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.858480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.858485 LLDP, length 82 [|LLDP] 19:42:44.858486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.858491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1633 803f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.858493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.858497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.858500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.858504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.858509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.868468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.868480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.868485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.868489 LLDP, length 82 [|LLDP] 19:42:44.868490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.868495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 163b 215f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.868497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.868501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.868503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.868508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.878472 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.878485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.878489 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.878493 LLDP, length 82 [|LLDP] 19:42:44.878495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.878499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1642 c27f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.878501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.878505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.878508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.878513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.888468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.888480 LLDP, length 82 [|LLDP] 19:42:44.888482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.888487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 164a 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.888489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.888493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.888496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.888500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.888504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.888509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.898467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.898479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.898484 LLDP, length 82 [|LLDP] 19:42:44.898485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.898490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1652 04bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.898491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.898496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.898498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.898503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.898507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.908471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.908484 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.908488 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.908493 LLDP, length 82 [|LLDP] 19:42:44.908494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.908499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1659 a5df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.908501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.908505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.908508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.908513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.918466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.918478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.918482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.918487 LLDP, length 82 [|LLDP] 19:42:44.918488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.918493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1661 46ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.918495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.918499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.918501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.918506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.928466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.928479 LLDP, length 82 [|LLDP] 19:42:44.928481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.928485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1668 e81f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.928487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.928492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.928494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.928498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.928503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.928507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.938466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.938478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.938482 LLDP, length 82 [|LLDP] 19:42:44.938484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.938488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1670 893f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.938490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.938494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.938497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.938501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.938505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.948468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.948481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.948485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.948490 LLDP, length 82 [|LLDP] 19:42:44.948491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.948496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1678 2a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.948498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.948502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.948504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.948509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.958466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.958479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.958483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.958488 LLDP, length 82 [|LLDP] 19:42:44.958489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.958493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 167f cb7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.958495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.958499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.958502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.958507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.968468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.968481 LLDP, length 82 [|LLDP] 19:42:44.968483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.968487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1687 6c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.968489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.968493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.968496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.968500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.968504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.968509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.978467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.978479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.978483 LLDP, length 82 [|LLDP] 19:42:44.978485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.978489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 168f 0dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.978491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.978495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.978498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.978502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.978507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.988467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.988480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.988484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.988489 LLDP, length 82 [|LLDP] 19:42:44.988490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.988495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1696 aedf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.988497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.988501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.988504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.988508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.998471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.998483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.998487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.998491 LLDP, length 82 [|LLDP] 19:42:44.998493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.998497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 169e 4fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.998499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.998503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.998506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.998510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.008466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.008479 LLDP, length 82 [|LLDP] 19:42:45.008480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.008485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16a5 f11f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.008487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.008491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.008494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.008498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.008502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.008507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.018466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.018481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.018485 LLDP, length 82 [|LLDP] 19:42:45.018487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.018491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16ad 923f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.018493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.018497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.018500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.018504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.018509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.029090 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.029104 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.029108 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.029112 LLDP, length 82 [|LLDP] 19:42:45.029114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.029118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16b5 335f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.029120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.029124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.029126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.029131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.038469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.038481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.038486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.038490 LLDP, length 82 [|LLDP] 19:42:45.038491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.038496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16bc d47f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.038498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.038502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.038505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.038510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.048469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.048482 LLDP, length 82 [|LLDP] 19:42:45.048484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.048488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16c4 759f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.048490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.048494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.048497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.048501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.048505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.048510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.058469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.058482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.058486 LLDP, length 82 [|LLDP] 19:42:45.058488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.058492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16cc 16bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.058494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.058498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.058501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.058505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.058510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.068466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.068478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.068483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.068487 LLDP, length 82 [|LLDP] 19:42:45.068489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.068493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16d3 b7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.068495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.068499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.068502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.068506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.078466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.078478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.078483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.078487 LLDP, length 82 [|LLDP] 19:42:45.078489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.078493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16db 58ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.078495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.078499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.078502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.078506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.089765 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.089781 LLDP, length 82 [|LLDP] 19:42:45.089782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.089787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16e2 fa1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.089789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.089793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.089796 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.089800 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.089805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.089809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.098470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.098483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.098487 LLDP, length 82 [|LLDP] 19:42:45.098489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.098493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16ea 9b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.098495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.098499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.098502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.098506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.098511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.108469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.108482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.108486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.108491 LLDP, length 82 [|LLDP] 19:42:45.108492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.108496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16f2 3c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.108498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.108502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.108505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.108509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.118476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.118490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.118494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.118498 LLDP, length 82 [|LLDP] 19:42:45.118500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.118504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16f9 dd7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.118506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.118510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.118513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.118518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.128481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.128501 LLDP, length 82 [|LLDP] 19:42:45.128503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.128507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1701 7e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.128509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.128514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.128517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.128521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.128526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.128531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.138492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.138512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.138517 LLDP, length 82 [|LLDP] 19:42:45.138518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.138523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1709 1fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.138526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.138530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.138533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.138538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.138543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.150752 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.150769 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.150774 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.150778 LLDP, length 82 [|LLDP] 19:42:45.150780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.150784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1710 c0df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.150786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.150791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.150794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.150798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.158477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.158493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.158498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.158502 LLDP, length 82 [|LLDP] 19:42:45.158504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.158508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1718 61ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.158511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.158515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.158518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.158523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.168477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.168492 LLDP, length 82 [|LLDP] 19:42:45.168494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.168499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1720 031f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.168501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.168505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.168508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.168512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.168517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.168521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.178475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.178491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.178496 LLDP, length 82 [|LLDP] 19:42:45.178497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.178502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1727 a43f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.178504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.178508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.178511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.178515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.178520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.188478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.188495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.188499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.188504 LLDP, length 82 [|LLDP] 19:42:45.188505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.188509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 172f 455f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.188511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.188515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.188518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.188523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.198486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.198503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.198508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.198513 LLDP, length 82 [|LLDP] 19:42:45.198514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.198519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1736 e67f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.198521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.198525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.198528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.198533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.208552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.208570 LLDP, length 82 [|LLDP] 19:42:45.208571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.208576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 173e 879f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.208578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.208583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.208585 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.208590 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.208594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.208599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.218491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.218508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.218512 LLDP, length 82 [|LLDP] 19:42:45.218514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.218518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1746 28bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.218520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.218524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.218527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.218532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.218536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.228485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.228501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.228505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.228509 LLDP, length 82 [|LLDP] 19:42:45.228511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.228516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 174d c9df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.228518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.228522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.228525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.228530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.238479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.238496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.238500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.238505 LLDP, length 82 [|LLDP] 19:42:45.238506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.238511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1755 6aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.238513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.238518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.238521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.238525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.248483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.248501 LLDP, length 82 [|LLDP] 19:42:45.248503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.248507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 175d 0c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.248509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.248513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.248516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.248521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.248525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.248530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.258482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.258498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.258502 LLDP, length 82 [|LLDP] 19:42:45.258504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.258508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1764 ad3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.258510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.258514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.258517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.258522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.258527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.268483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.268499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.268503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.268507 LLDP, length 82 [|LLDP] 19:42:45.268509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.268513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 176c 4e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.268515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.268520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.268522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.268527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.278483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.278499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.278504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.278508 LLDP, length 82 [|LLDP] 19:42:45.278510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.278515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1773 ef7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.278517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.278521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.278524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.278529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.288484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.288503 LLDP, length 82 [|LLDP] 19:42:45.288504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.288509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 177b 909f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.288511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.288515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.288518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.288522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.288527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.288532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.298485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.298503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.298508 LLDP, length 82 [|LLDP] 19:42:45.298510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.298514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1783 31bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.298516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.298520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.298524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.298528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.298533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.308482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.308498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.308503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.308507 LLDP, length 82 [|LLDP] 19:42:45.308508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.308513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 178a d2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.308515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.308519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.308522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.308527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.318487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.318502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.318506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.318511 LLDP, length 82 [|LLDP] 19:42:45.318512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.318517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1792 73ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.318519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.318523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.318526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.318531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.328483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.328501 LLDP, length 82 [|LLDP] 19:42:45.328503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.328507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 179a 151f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.328509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.328513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.328516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.328521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.328525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.328530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.338499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.338522 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.338527 LLDP, length 82 [|LLDP] 19:42:45.338528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.338533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17a1 b63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.338535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.338539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.338542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.338547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.338551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.348488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.348505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.348510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.348514 LLDP, length 82 [|LLDP] 19:42:45.348516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.348520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17a9 575f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.348523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.348527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.348530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.348534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.358486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.358503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.358508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.358512 LLDP, length 82 [|LLDP] 19:42:45.358514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.358518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17b0 f87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.358520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.358524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.358527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.358532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.368495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.368517 LLDP, length 82 [|LLDP] 19:42:45.368519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.368524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17b8 999f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.368526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.368530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.368533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.368537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.368542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.368547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.378483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.378499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.378503 LLDP, length 82 [|LLDP] 19:42:45.378505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.378510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17c0 3abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.378512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.378516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.378519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.378523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.378528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.388481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.388497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.388501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.388506 LLDP, length 82 [|LLDP] 19:42:45.388507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.388511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17c7 dbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.388513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.388517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.388520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.388525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.398491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.398511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.398515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.398520 LLDP, length 82 [|LLDP] 19:42:45.398521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.398525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17cf 7cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.398528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.398532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.398536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.398540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.408488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.408506 LLDP, length 82 [|LLDP] 19:42:45.408508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.408513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17d7 1e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.408515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.408519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.408522 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.408526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.408531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.408535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.418480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.418495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.418500 LLDP, length 82 [|LLDP] 19:42:45.418502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.418506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17de bf3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.418508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.418512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.418515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.418520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.418525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.428478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.428491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.428496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.428500 LLDP, length 82 [|LLDP] 19:42:45.428502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.428506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17e6 605f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.428508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.428512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.428515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.428519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.438488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.438508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.438513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.438518 LLDP, length 82 [|LLDP] 19:42:45.438519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.438524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17ee 017f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.438526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.438530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.438533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.438537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.448479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.448494 LLDP, length 82 [|LLDP] 19:42:45.448496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.448500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17f5 a29f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.448502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.448506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.448509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.448513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.448518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.448523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.458478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.458492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.458496 LLDP, length 82 [|LLDP] 19:42:45.458498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.458502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17fd 43bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.458504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.458508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.458511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.458515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.458520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.468496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.468519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.468525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.468529 LLDP, length 82 [|LLDP] 19:42:45.468531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.468535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1804 e4df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.468537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.468542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.468544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.468549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.478480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.478495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.478499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.478504 LLDP, length 82 [|LLDP] 19:42:45.478505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.478510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 180c 85ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.478512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.478516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.478519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.478524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.488475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.488487 LLDP, length 82 [|LLDP] 19:42:45.488489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.488493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1814 271f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.488495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.488499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.488502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.488506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.488511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.488515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.498492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.498511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.498516 LLDP, length 82 [|LLDP] 19:42:45.498517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.498522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 181b c83f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.498524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.498528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.498531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.498535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.498540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.508485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.508501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.508506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.508510 LLDP, length 82 [|LLDP] 19:42:45.508512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.508516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1823 695f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.508518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.508522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.508525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.508531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.518480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.518493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.518498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.518502 LLDP, length 82 [|LLDP] 19:42:45.518504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.518508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 182b 0a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.518510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.518515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.518517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.518523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.528477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.528489 LLDP, length 82 [|LLDP] 19:42:45.528491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.528495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1832 ab9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.528497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.528501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.528504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.528508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.528512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.528517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.538476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.538487 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.538492 LLDP, length 82 [|LLDP] 19:42:45.538493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.538498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 183a 4cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.538499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.538504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.538507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.538511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.538515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.548475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.548487 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.548491 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.548496 LLDP, length 82 [|LLDP] 19:42:45.548497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.548502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1841 eddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.548503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.548508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.548510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.548515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.558475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.558486 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.558491 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.558495 LLDP, length 82 [|LLDP] 19:42:45.558497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.558501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1849 8eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.558503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.558507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.558509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.558514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.568485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.568499 LLDP, length 82 [|LLDP] 19:42:45.568500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.568505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1851 301f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.568507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.568511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.568514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.568518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.568523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.568527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.578484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.578499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.578504 LLDP, length 82 [|LLDP] 19:42:45.578505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.578510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1858 d13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.578511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.578516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.578518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.578523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.578527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.588477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.588490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.588495 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.588499 LLDP, length 82 [|LLDP] 19:42:45.588500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.588505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1860 725f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.588507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.588511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.588514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.588519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.598478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.598491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.598495 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.598499 LLDP, length 82 [|LLDP] 19:42:45.598501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.598505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1868 137f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.598507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.598511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.598514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.598518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.608476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.608487 LLDP, length 82 [|LLDP] 19:42:45.608488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.608493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 186f b49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.608495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.608499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.608502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.608506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.608510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.608515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.618480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.618491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.618496 LLDP, length 82 [|LLDP] 19:42:45.618497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.618501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1877 55bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.618503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.618508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.618510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.618515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.618519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.628480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.628492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.628496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.628500 LLDP, length 82 [|LLDP] 19:42:45.628502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.628506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 187e f6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.628508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.628513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.628515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.628520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.638478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.638490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.638494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.638499 LLDP, length 82 [|LLDP] 19:42:45.638500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.638505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1886 97ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.638507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.638511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.638514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.638519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.648479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.648490 LLDP, length 82 [|LLDP] 19:42:45.648491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.648496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 188e 391f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.648498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.648502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.648504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.648509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.648513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.648518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.658477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.658489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.658493 LLDP, length 82 [|LLDP] 19:42:45.658495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.658499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1895 da3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.658501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.658506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.658508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.658512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.658517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.668478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.668492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.668496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.668500 LLDP, length 82 [|LLDP] 19:42:45.668502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.668507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 189d 7b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.668509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.668513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.668515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.668520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.678481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.678494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.678498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.678503 LLDP, length 82 [|LLDP] 19:42:45.678504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.678509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18a5 1c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.678511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.678515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.678518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.678522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.688478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.688491 LLDP, length 82 [|LLDP] 19:42:45.688492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.688496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18ac bd9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.688498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.688502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.688505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.688509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.688514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.688518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.698479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.698490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.698495 LLDP, length 82 [|LLDP] 19:42:45.698496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.698501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18b4 5ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.698503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.698507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.698510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.698514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.698519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.708477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.708489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.708493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.708498 LLDP, length 82 [|LLDP] 19:42:45.708499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.708504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18bb ffdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.708506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.708510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.708513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.708517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.718478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.718490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.718494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.718499 LLDP, length 82 [|LLDP] 19:42:45.718500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.718504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18c3 a0ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.718506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.718510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.718513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.718517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.728479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.728491 LLDP, length 82 [|LLDP] 19:42:45.728492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.728497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18cb 421f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.728499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.728503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.728505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.728509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.728514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.728518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.738477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.738489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.738493 LLDP, length 82 [|LLDP] 19:42:45.738495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.738499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18d2 e33f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.738501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.738505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.738508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.738512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.738517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.748478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.748489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.748493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.748498 LLDP, length 82 [|LLDP] 19:42:45.748499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.748504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18da 845f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.748505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.748510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.748512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.748517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.758478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.758489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.758493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.758498 LLDP, length 82 [|LLDP] 19:42:45.758499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.758504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18e2 257f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.758506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.758510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.758512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.758517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.768480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.768491 LLDP, length 82 [|LLDP] 19:42:45.768493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.768497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18e9 c69f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.768499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.768503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.768506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.768510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.768514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.768519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.778484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.778500 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.778505 LLDP, length 82 [|LLDP] 19:42:45.778506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.778511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18f1 67bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.778513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.778517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.778520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.778524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.778529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.788482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.788496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.788500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.788505 LLDP, length 82 [|LLDP] 19:42:45.788506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.788510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18f9 08df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.788512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.788516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.788520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.788524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.798482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.798494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.798498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.798503 LLDP, length 82 [|LLDP] 19:42:45.798504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.798509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1900 a9ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.798511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.798515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.798517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.798522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.808480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.808492 LLDP, length 82 [|LLDP] 19:42:45.808493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.808498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1908 4b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.808500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.808504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.808506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.808511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.808515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.808520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.818503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.818525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.818530 LLDP, length 82 [|LLDP] 19:42:45.818532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.818537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 190f ec3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.818539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.818543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.818546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.818551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.818556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.828498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.828517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.828521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.828526 LLDP, length 82 [|LLDP] 19:42:45.828528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.828533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1917 8d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.828535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.828539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.828543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.828548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.838500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.838517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.838521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.838526 LLDP, length 82 [|LLDP] 19:42:45.838527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.838532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 191f 2e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.838534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.838539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.838541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.838546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.848487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.848500 LLDP, length 82 [|LLDP] 19:42:45.848502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.848506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1926 cf9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.848508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.848512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.848515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.848519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.848523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.848528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.858483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.858496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.858500 LLDP, length 82 [|LLDP] 19:42:45.858502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.858506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 192e 70bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.858508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.858512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.858515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.858519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.858524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.868483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.868496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.868500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.868505 LLDP, length 82 [|LLDP] 19:42:45.868506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.868510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1936 11df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.868512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.868516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.868519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.868524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.878484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.878498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.878502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.878507 LLDP, length 82 [|LLDP] 19:42:45.878509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.878513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 193d b2ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.878515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.878519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.878522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.878526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.888980 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.888995 LLDP, length 82 [|LLDP] 19:42:45.888996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.889000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1945 541f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.889002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.889007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.889009 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.889014 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.889018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.889023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.898483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.898497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.898501 LLDP, length 82 [|LLDP] 19:42:45.898503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.898507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 194c f53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.898509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.898513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.898516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.898520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.898525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.908484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.908496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.908500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.908505 LLDP, length 82 [|LLDP] 19:42:45.908506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.908510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1954 965f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.908512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.908516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.908519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.908523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.918483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.918495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.918500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.918504 LLDP, length 82 [|LLDP] 19:42:45.918505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.918510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 195c 377f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.918512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.918516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.918519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.918523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.928481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.928495 LLDP, length 82 [|LLDP] 19:42:45.928496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.928501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1963 d89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.928503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.928507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.928509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.928514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.928518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.928523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.939532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.939544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.939549 LLDP, length 82 [|LLDP] 19:42:45.939550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.939555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 196b 79bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.939556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.939561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.939563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.939568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.939572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.948484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.948498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.948502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.948507 LLDP, length 82 [|LLDP] 19:42:45.948508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.948513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1973 1adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.948514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.948518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.948521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.948525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.958484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.958497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.958502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.958506 LLDP, length 82 [|LLDP] 19:42:45.958508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.958512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 197a bbff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.958514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.958518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.958521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.958526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.968485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.968497 LLDP, length 82 [|LLDP] 19:42:45.968498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.968502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1982 5d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.968505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.968509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.968511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.968515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.968520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.968525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.978483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.978497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.978501 LLDP, length 82 [|LLDP] 19:42:45.978503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.978507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1989 fe3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.978509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.978513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.978516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.978520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.978525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.988485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.988498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.988503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.988507 LLDP, length 82 [|LLDP] 19:42:45.988509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.988513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1991 9f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.988515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.988519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.988522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.988527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.000202 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.000215 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.000219 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.000224 LLDP, length 82 [|LLDP] 19:42:46.000225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.000229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1999 407f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.000231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.000236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.000238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.000243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.008484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.008496 LLDP, length 82 [|LLDP] 19:42:46.008497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.008502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19a0 e19f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.008504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.008508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.008511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.008515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.008519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.008524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.018485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.018498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.018502 LLDP, length 82 [|LLDP] 19:42:46.018503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.018508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19a8 82bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.018510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.018514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.018516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.018521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.018525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.028483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.028495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.028499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.028504 LLDP, length 82 [|LLDP] 19:42:46.028505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.028510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19b0 23df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.028512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.028516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.028519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.028523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.038497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.038510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.038514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.038519 LLDP, length 82 [|LLDP] 19:42:46.038520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.038524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19b7 c4ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.038526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.038530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.038533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.038537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.048484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.048497 LLDP, length 82 [|LLDP] 19:42:46.048499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.048504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19bf 661f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.048506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.048510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.048512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.048517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.048521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.048526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.060544 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.060557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.060562 LLDP, length 82 [|LLDP] 19:42:46.060563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.060568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19c7 073f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.060570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.060574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.060577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.060581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.060586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.068485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.068499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.068503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.068508 LLDP, length 82 [|LLDP] 19:42:46.068509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.068513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19ce a85f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.068515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.068519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.068522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.068526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.078485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.078499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.078503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.078507 LLDP, length 82 [|LLDP] 19:42:46.078509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.078513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19d6 497f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.078515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.078519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.078522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.078526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.088486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.088500 LLDP, length 82 [|LLDP] 19:42:46.088502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.088507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19dd ea9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.088509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.088513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.088516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.088520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.088524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.088529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.098488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.098502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.098507 LLDP, length 82 [|LLDP] 19:42:46.098508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.098512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19e5 8bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.098514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.098519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.098521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.098525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.098530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.108487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.108501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.108506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.108510 LLDP, length 82 [|LLDP] 19:42:46.108511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.108516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19ed 2cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.108517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.108522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.108524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.108529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.118487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.118499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.118504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.118508 LLDP, length 82 [|LLDP] 19:42:46.118510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.118514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19f4 cdff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.118516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.118520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.118523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.118527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.128487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.128500 LLDP, length 82 [|LLDP] 19:42:46.128502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.128506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19fc 6f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.128508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.128512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.128515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.128519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.128523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.128528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.138507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.138525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.138530 LLDP, length 82 [|LLDP] 19:42:46.138532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.138537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a04 103f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.138538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.138543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.138546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.138550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.138555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.148509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.148531 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.148536 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.148541 LLDP, length 82 [|LLDP] 19:42:46.148542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.148547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a0b b15f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.148549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.148554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.148557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.148562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.158501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.158521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.158526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.158530 LLDP, length 82 [|LLDP] 19:42:46.158532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.158537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a13 527f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.158539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.158543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.158546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.158551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.168491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.168504 LLDP, length 82 [|LLDP] 19:42:46.168506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.168510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a1a f39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.168512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.168516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.168519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.168523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.168528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.168532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.178487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.178501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.178505 LLDP, length 82 [|LLDP] 19:42:46.178507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.178511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a22 94bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.178513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.178517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.178520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.178524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.178529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.188492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.188507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.188512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.188516 LLDP, length 82 [|LLDP] 19:42:46.188518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.188522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a2a 35df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.188524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.188528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.188531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.188535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.198502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.198520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.198525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.198529 LLDP, length 82 [|LLDP] 19:42:46.198531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.198536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a31 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.198538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.198542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.198545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.198549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.208524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.208553 LLDP, length 82 [|LLDP] 19:42:46.208556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.208560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a39 781f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.208563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.208567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.208571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.208575 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.208579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.208584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.218523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.218555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.218560 LLDP, length 82 [|LLDP] 19:42:46.218561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.218566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a41 193f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.218569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.218573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.218576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.218581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.218586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.228521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.228551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.228556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.228560 LLDP, length 82 [|LLDP] 19:42:46.228562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.228567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a48 ba5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.228569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.228574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.228577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.228583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.238529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.238561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.238567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.238572 LLDP, length 82 [|LLDP] 19:42:46.238574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.238579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a50 5b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.238582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.238587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.238590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.238595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.248521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.248550 LLDP, length 82 [|LLDP] 19:42:46.248552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.248557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a57 fc9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.248560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.248564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.248567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.248572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.248577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.248581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.258520 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.258549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.258554 LLDP, length 82 [|LLDP] 19:42:46.258556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.258561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a5f 9dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.258563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.258568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.258571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.258575 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.258580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.268541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.268573 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.268578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.268583 LLDP, length 82 [|LLDP] 19:42:46.268585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.268590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a67 3edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.268592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.268597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.268600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.268605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.278524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.278551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.278556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.278560 LLDP, length 82 [|LLDP] 19:42:46.278563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.278567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a6e dfff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.278570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.278574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.278577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.278582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.288493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.288505 LLDP, length 82 [|LLDP] 19:42:46.288506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.288511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a76 811f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.288513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.288517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.288520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.288524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.288528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.288533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.298489 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.298502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.298507 LLDP, length 82 [|LLDP] 19:42:46.298508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.298513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a7e 223f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.298515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.298519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.298522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.298526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.298531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.308486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.308496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.308501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.308505 LLDP, length 82 [|LLDP] 19:42:46.308506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.308511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a85 c35f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.308513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.308517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.308519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.308524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.318484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.318494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.318498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.318503 LLDP, length 82 [|LLDP] 19:42:46.318504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.318508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a8d 647f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.318510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.318515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.318517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.318522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.328484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.328492 LLDP, length 82 [|LLDP] 19:42:46.328494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.328499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a95 059f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.328500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.328505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.328507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.328511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.328516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.328520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.338487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.338498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.338502 LLDP, length 82 [|LLDP] 19:42:46.338504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.338508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a9c a6bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.338510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.338514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.338517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.338521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.338525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.348485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.348495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.348499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.348503 LLDP, length 82 [|LLDP] 19:42:46.348505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.348509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aa4 47df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.348511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.348515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.348518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.348522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.358483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.358499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.358503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.358508 LLDP, length 82 [|LLDP] 19:42:46.358509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.358514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aab e8ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.358515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.358519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.358522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.358526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.368484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.368493 LLDP, length 82 [|LLDP] 19:42:46.368495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.368499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ab3 8a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.368501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.368505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.368508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.368512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.368516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.368521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.378483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.378492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.378496 LLDP, length 82 [|LLDP] 19:42:46.378497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.378502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1abb 2b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.378503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.378507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.378510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.378514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.378518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.388485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.388494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.388498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.388502 LLDP, length 82 [|LLDP] 19:42:46.388504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.388508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ac2 cc5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.388510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.388514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.388516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.388521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.398485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.398496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.398500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.398505 LLDP, length 82 [|LLDP] 19:42:46.398506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.398510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aca 6d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.398512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.398516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.398519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.398524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.408488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.408497 LLDP, length 82 [|LLDP] 19:42:46.408499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.408503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ad2 0e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.408505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.408509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.408511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.408516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.408520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.408524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.418485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.418493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.418498 LLDP, length 82 [|LLDP] 19:42:46.418499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.418503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ad9 afbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.418505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.418509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.418512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.418516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.418520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.428486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.428496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.428500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.428504 LLDP, length 82 [|LLDP] 19:42:46.428506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.428510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ae1 50df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.428512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.428516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.428519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.428523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.438484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.438493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.438497 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.438501 LLDP, length 82 [|LLDP] 19:42:46.438503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.438507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ae8 f1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.438509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.438513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.438516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.438520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.448483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.448492 LLDP, length 82 [|LLDP] 19:42:46.448494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.448498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1af0 931f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.448500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.448504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.448506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.448510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.448514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.448519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.458485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.458494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.458498 LLDP, length 82 [|LLDP] 19:42:46.458500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.458504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1af8 343f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.458506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.458510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.458512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.458517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.458521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.468497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.468518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.468523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.468527 LLDP, length 82 [|LLDP] 19:42:46.468529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.468534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aff d55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.468536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.468540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.468543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.468547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.478493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.478505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.478510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.478514 LLDP, length 82 [|LLDP] 19:42:46.478516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.478520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b07 767f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.478522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.478526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.478529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.478533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.488489 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.488499 LLDP, length 82 [|LLDP] 19:42:46.488501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.488505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b0f 179f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.488508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.488512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.488514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.488519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.488523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.488528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.498486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.498495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.498500 LLDP, length 82 [|LLDP] 19:42:46.498501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.498506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b16 b8bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.498507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.498511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.498514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.498518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.498523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.508496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.508513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.508517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.508522 LLDP, length 82 [|LLDP] 19:42:46.508523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.508528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b1e 59df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.508530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.508534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.508537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.508541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.518488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.518505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.518509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.518514 LLDP, length 82 [|LLDP] 19:42:46.518515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.518519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b25 faff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.518521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.518526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.518528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.518533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.528489 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.528498 LLDP, length 82 [|LLDP] 19:42:46.528499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.528504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b2d 9c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.528506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.528510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.528512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.528517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.528521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.528525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.538495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.538510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.538515 LLDP, length 82 [|LLDP] 19:42:46.538516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.538521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b35 3d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.538523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.538527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.538530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.538534 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.538538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.548492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.548503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.548507 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.548511 LLDP, length 82 [|LLDP] 19:42:46.548513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.548517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b3c de5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.548519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.548523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.548526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.548530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.558490 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.558499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.558503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.558508 LLDP, length 82 [|LLDP] 19:42:46.558509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.558513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b44 7f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.558515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.558519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.558522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.558526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.568494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.568507 LLDP, length 82 [|LLDP] 19:42:46.568509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.568519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b4c 209f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.568521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.568526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.568528 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.568532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.568537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.568541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.578499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.578515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.578519 LLDP, length 82 [|LLDP] 19:42:46.578521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.578525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b53 c1bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.578527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.578531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.578534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.578538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.578543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.588494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.588505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.588510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.588514 LLDP, length 82 [|LLDP] 19:42:46.588515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.588520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b5b 62df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.588522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.588526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.588528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.588533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.598491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.598500 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.598504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.598509 LLDP, length 82 [|LLDP] 19:42:46.598511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.598515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b63 03ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.598516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.598521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.598523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.598528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.608521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.608545 LLDP, length 82 [|LLDP] 19:42:46.608547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.608552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b6a a51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.608554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.608559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.608562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.608566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.608570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.608575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.618497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.618510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.618515 LLDP, length 82 [|LLDP] 19:42:46.618516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.618521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b72 463f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.618523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.618527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.618530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.618534 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.618538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.628497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.628510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.628514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.628519 LLDP, length 82 [|LLDP] 19:42:46.628520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.628525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b79 e75f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.628527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.628531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.628534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.628538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.638494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.638506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.638511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.638515 LLDP, length 82 [|LLDP] 19:42:46.638517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.638521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b81 887f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.638523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.638527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.638530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.638534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.648494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.648505 LLDP, length 82 [|LLDP] 19:42:46.648507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.648512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b89 299f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.648513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.648518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.648520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.648525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.648529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.648533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.658491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.658502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.658507 LLDP, length 82 [|LLDP] 19:42:46.658508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.658512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b90 cabf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.658514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.658518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.658521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.658525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.658530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.668495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.668505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.668509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.668514 LLDP, length 82 [|LLDP] 19:42:46.668515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.668519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b98 6bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.668521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.668525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.668528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.668532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.678495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.678506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.678510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.678514 LLDP, length 82 [|LLDP] 19:42:46.678516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.678520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ba0 0cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.678522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.678526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.678529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.678533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.688495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.688506 LLDP, length 82 [|LLDP] 19:42:46.688508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.688512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ba7 ae1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.688514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.688518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.688521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.688525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.688529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.688534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.698491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.698502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.698507 LLDP, length 82 [|LLDP] 19:42:46.698508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.698512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1baf 4f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.698514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.698519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.698521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.698525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.698530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.708497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.708509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.708514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.708518 LLDP, length 82 [|LLDP] 19:42:46.708520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.708524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bb6 f05f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.708526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.708530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.708533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.708538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.718496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.718508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.718512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.718517 LLDP, length 82 [|LLDP] 19:42:46.718518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.718523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bbe 917f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.718525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.718529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.718532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.718536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.728495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.728507 LLDP, length 82 [|LLDP] 19:42:46.728508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.728513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bc6 329f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.728515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.728519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.728522 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.728526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.728530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.728535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.738493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.738504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.738508 LLDP, length 82 [|LLDP] 19:42:46.738510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.738514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bcd d3bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.738516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.738520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.738523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.738527 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.738531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.748494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.748505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.748510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.748514 LLDP, length 82 [|LLDP] 19:42:46.748516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.748520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bd5 74df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.748522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.748526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.748529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.748533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.758496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.758508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.758513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.758517 LLDP, length 82 [|LLDP] 19:42:46.758518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.758523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bdd 15ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.758525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.758529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.758531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.758536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.768495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.768506 LLDP, length 82 [|LLDP] 19:42:46.768507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.768512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1be4 b71f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.768514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.768518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.768521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.768525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.768529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.768534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.778493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.778505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.778510 LLDP, length 82 [|LLDP] 19:42:46.778511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.778515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bec 583f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.778517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.778521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.778524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.778528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.778533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.788495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.788506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.788510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.788515 LLDP, length 82 [|LLDP] 19:42:46.788516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.788520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bf3 f95f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.788522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.788526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.788529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.788533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.798494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.798504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.798509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.798513 LLDP, length 82 [|LLDP] 19:42:46.798515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.798519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bfb 9a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.798521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.798525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.798527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.798532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.808494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.808506 LLDP, length 82 [|LLDP] 19:42:46.808507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.808511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c03 3b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.808513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.808518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.808520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.808525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.808529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.808534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.818496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.818509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.818513 LLDP, length 82 [|LLDP] 19:42:46.818515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.818519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c0a dcbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.818521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.818525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.818528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.818532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.818536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.828497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.828509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.828514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.828518 LLDP, length 82 [|LLDP] 19:42:46.828520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.828524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c12 7ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.828526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.828530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.828533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.828537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.838493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.838511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.838516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.838520 LLDP, length 82 [|LLDP] 19:42:46.838522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.838526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c1a 1eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.838528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.838533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.838535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.838540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.848523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.848545 LLDP, length 82 [|LLDP] 19:42:46.848547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.848552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c21 c01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.848554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.848558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.848561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.848566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.848571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.848576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.858505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.858519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.858523 LLDP, length 82 [|LLDP] 19:42:46.858525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.858529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c29 613f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.858531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.858536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.858539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.858544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.858548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.868501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.868513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.868517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.868522 LLDP, length 82 [|LLDP] 19:42:46.868524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.868528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c31 025f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.868530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.868534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.868537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.868541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.878495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.878506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.878510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.878514 LLDP, length 82 [|LLDP] 19:42:46.878516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.878520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c38 a37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.878522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.878527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.878529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.878534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.888499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.888511 LLDP, length 82 [|LLDP] 19:42:46.888512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.888517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c40 449f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.888519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.888523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.888525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.888529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.888534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.888538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.898502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.898512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.898517 LLDP, length 82 [|LLDP] 19:42:46.898518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.898523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c47 e5bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.898524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.898528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.898531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.898535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.898540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.908499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.908510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.908515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.908519 LLDP, length 82 [|LLDP] 19:42:46.908520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.908525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c4f 86df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.908526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.908530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.908533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.908537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.918498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.918512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.918516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.918520 LLDP, length 82 [|LLDP] 19:42:46.918522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.918526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c57 27ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.918528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.918532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.918535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.918539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.928501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.928514 LLDP, length 82 [|LLDP] 19:42:46.928515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.928520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c5e c91f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.928522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.928526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.928529 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.928533 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.928537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.928541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.938497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.938509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.938513 LLDP, length 82 [|LLDP] 19:42:46.938515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.938519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c66 6a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.938521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.938525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.938528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.938532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.938537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.948497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.948510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.948514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.948518 LLDP, length 82 [|LLDP] 19:42:46.948520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.948524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c6e 0b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.948526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.948530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.948533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.948537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.958499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.958511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.958516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.958520 LLDP, length 82 [|LLDP] 19:42:46.958521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.958526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c75 ac7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.958528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.958532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.958535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.958539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.968499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.968512 LLDP, length 82 [|LLDP] 19:42:46.968513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.968518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c7d 4d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.968520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.968524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.968526 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.968531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.968535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.968540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.978496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.978507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.978511 LLDP, length 82 [|LLDP] 19:42:46.978513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.978517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c84 eebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.978519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.978524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.978527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.978531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.978535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.988496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.988505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.988510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.988514 LLDP, length 82 [|LLDP] 19:42:46.988515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.988520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c8c 8fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.988521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.988525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.988528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.988532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.998494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.998503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.998507 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.998512 LLDP, length 82 [|LLDP] 19:42:46.998513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.998518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c94 30ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.998520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.998524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.998526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.998531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.008494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.008503 LLDP, length 82 [|LLDP] 19:42:47.008504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.008508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c9b d21f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.008510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.008514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.008517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.008521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.008525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.008530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.018492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.018507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.018512 LLDP, length 82 [|LLDP] 19:42:47.018513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.018517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ca3 733f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.018519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.018523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.018526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.018530 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.018535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.028496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.028507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.028511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.028515 LLDP, length 82 [|LLDP] 19:42:47.028517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.028521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cab 145f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.028523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.028527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.028529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.028534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.038495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.038504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.038509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.038513 LLDP, length 82 [|LLDP] 19:42:47.038514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.038519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cb2 b57f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.038521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.038525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.038528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.038532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.048496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.048504 LLDP, length 82 [|LLDP] 19:42:47.048506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.048510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cba 569f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.048512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.048516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.048518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.048523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.048527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.048532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.058495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.058504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.058509 LLDP, length 82 [|LLDP] 19:42:47.058510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.058515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cc1 f7bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.058516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.058520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.058523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.058527 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.058532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.068496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.068507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.068511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.068516 LLDP, length 82 [|LLDP] 19:42:47.068517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.068521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cc9 98df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.068523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.068528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.068530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.068535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.078496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.078505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.078510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.078514 LLDP, length 82 [|LLDP] 19:42:47.078515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.078520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cd1 39ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.078522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.078526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.078528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.078533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.088496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.088504 LLDP, length 82 [|LLDP] 19:42:47.088505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.088510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cd8 db1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.088512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.088516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.088518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.088523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.088527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.088531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.098495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.098504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.098508 LLDP, length 82 [|LLDP] 19:42:47.098510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.098514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ce0 7c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.098516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.098519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.098522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.098526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.098531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.108496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.108504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.108508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.108513 LLDP, length 82 [|LLDP] 19:42:47.108514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.108518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ce8 1d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.108520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.108524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.108526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.108531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.118497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.118505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.118509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.118514 LLDP, length 82 [|LLDP] 19:42:47.118515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.118519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cef be7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.118521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.118525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.118528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.118532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.128523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.128535 LLDP, length 82 [|LLDP] 19:42:47.128537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.128541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cf7 5f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.128543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.128547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.128550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.128554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.128558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.128563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.138506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.138519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.138524 LLDP, length 82 [|LLDP] 19:42:47.138525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.138530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cff 00bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.138532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.138536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.138539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.138544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.138549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.148498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.148507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.148511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.148516 LLDP, length 82 [|LLDP] 19:42:47.148517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.148521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d06 a1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.148523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.148527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.148530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.148535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.158496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.158505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.158509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.158513 LLDP, length 82 [|LLDP] 19:42:47.158515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.158519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d0e 42ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.158521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.158525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.158528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.158532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.168498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.168507 LLDP, length 82 [|LLDP] 19:42:47.168508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.168512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d15 e41f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.168514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.168518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.168521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.168525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.168529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.168534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.178493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.178509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.178513 LLDP, length 82 [|LLDP] 19:42:47.178515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.178519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d1d 853f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.178521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.178525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.178527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.178531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.178536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.188500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.188511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.188516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.188520 LLDP, length 82 [|LLDP] 19:42:47.188521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.188526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d25 265f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.188528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.188532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.188535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.188539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.198498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.198508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.198513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.198517 LLDP, length 82 [|LLDP] 19:42:47.198519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.198523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d2c c77f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.198525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.198529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.198531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.198536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.208498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.208507 LLDP, length 82 [|LLDP] 19:42:47.208508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.208512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d34 689f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.208514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.208518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.208521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.208525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.208530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.208534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.218497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.218506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.218510 LLDP, length 82 [|LLDP] 19:42:47.218512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.218516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d3c 09bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.218518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.218522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.218525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.218529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.218534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.228500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.228512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.228516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.228520 LLDP, length 82 [|LLDP] 19:42:47.228522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.228526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d43 aadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.228528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.228532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.228535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.228539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.238502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.238513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.238517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.238522 LLDP, length 82 [|LLDP] 19:42:47.238523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.238527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d4b 4bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.238529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.238533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.238536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.238541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.248498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.248507 LLDP, length 82 [|LLDP] 19:42:47.248509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.248513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d52 ed1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.248515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.248519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.248521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.248526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.248530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.248535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.258496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.258505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.258509 LLDP, length 82 [|LLDP] 19:42:47.258511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.258515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d5a 8e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.258517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.258521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.258524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.258528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.258532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.268497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.268506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.268511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.268515 LLDP, length 82 [|LLDP] 19:42:47.268516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.268521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d62 2f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.268523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.268527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.268529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.268534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.278564 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.278600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.278605 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.278611 LLDP, length 82 [|LLDP] 19:42:47.278613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.278618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d69 d07f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.278620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.278625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.278628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.278633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.288545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.288574 LLDP, length 82 [|LLDP] 19:42:47.288577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.288581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d71 719f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.288584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.288588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.288592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.288596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.288601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.288606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.298507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.298518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.298523 LLDP, length 82 [|LLDP] 19:42:47.298524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.298529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d79 12bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.298530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.298535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.298538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.298542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.298546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.308503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.308514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.308519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.308523 LLDP, length 82 [|LLDP] 19:42:47.308525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.308529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d80 b3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.308531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.308535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.308538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.308542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.318501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.318511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.318516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.318520 LLDP, length 82 [|LLDP] 19:42:47.318522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.318526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d88 54ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.318528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.318532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.318535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.318539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.328501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.328510 LLDP, length 82 [|LLDP] 19:42:47.328512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.328516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d8f f61f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.328518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.328522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.328525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.328529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.328534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.328538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.338506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.338517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.338522 LLDP, length 82 [|LLDP] 19:42:47.338523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.338528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d97 973f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.338530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.338534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.338536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.338541 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.338545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.348502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.348512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.348516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.348521 LLDP, length 82 [|LLDP] 19:42:47.348522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.348527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d9f 385f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.348529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.348533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.348535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.348540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.358501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.358511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.358515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.358520 LLDP, length 82 [|LLDP] 19:42:47.358521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.358525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1da6 d97f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.358527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.358532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.358534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.358539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.368502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.368512 LLDP, length 82 [|LLDP] 19:42:47.368514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.368519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dae 7a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.368521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.368525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.368527 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.368531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.368536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.368540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.378500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.378509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.378514 LLDP, length 82 [|LLDP] 19:42:47.378515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.378520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1db6 1bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.378521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.378525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.378528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.378532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.378537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.388501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.388511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.388515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.388519 LLDP, length 82 [|LLDP] 19:42:47.388521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.388525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dbd bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.388527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.388531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.388534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.388538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.398502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.398511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.398516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.398520 LLDP, length 82 [|LLDP] 19:42:47.398521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.398526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dc5 5dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.398528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.398532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.398534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.398539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.408502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.408511 LLDP, length 82 [|LLDP] 19:42:47.408512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.408517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dcc ff1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.408518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.408522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.408525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.408529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.408533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.408538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.418500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.418510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.418514 LLDP, length 82 [|LLDP] 19:42:47.418515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.418520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dd4 a03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.418521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.418526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.418528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.418532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.418537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.428502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.428511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.428516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.428520 LLDP, length 82 [|LLDP] 19:42:47.428521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.428526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ddc 415f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.428528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.428532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.428535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.428539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.438502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.438512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.438517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.438521 LLDP, length 82 [|LLDP] 19:42:47.438523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.438527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1de3 e27f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.438529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.438533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.438536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.438540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.448506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.448518 LLDP, length 82 [|LLDP] 19:42:47.448520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.448525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1deb 839f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.448527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.448531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.448534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.448538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.448543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.448547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.458505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.458516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.458520 LLDP, length 82 [|LLDP] 19:42:47.458522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.458526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1df3 24bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.458527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.458532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.458534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.458539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.458544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.468500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.468510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.468515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.468519 LLDP, length 82 [|LLDP] 19:42:47.468520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.468525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dfa c5df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.468526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.468530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.468533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.468537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.478500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.478516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.478521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.478525 LLDP, length 82 [|LLDP] 19:42:47.478527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.478531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e02 66ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.478533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.478537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.478540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.478544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.488502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.488513 LLDP, length 82 [|LLDP] 19:42:47.488514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.488519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e0a 081f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.488521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.488525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.488527 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.488531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.488536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.488540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.498503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.498512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.498516 LLDP, length 82 [|LLDP] 19:42:47.498518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.498522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e11 a93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.498524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.498528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.498530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.498535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.498539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.508504 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.508513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.508517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.508522 LLDP, length 82 [|LLDP] 19:42:47.508523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.508527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e19 4a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.508529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.508533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.508536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.508540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.518514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.518527 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.518532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.518537 LLDP, length 82 [|LLDP] 19:42:47.518538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.518543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e20 eb7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.518545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.518549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.518552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.518557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.528503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.528513 LLDP, length 82 [|LLDP] 19:42:47.528515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.528519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e28 8c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.528521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.528525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.528528 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.528532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.528537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.528541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.538503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.538513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.538517 LLDP, length 82 [|LLDP] 19:42:47.538518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.538523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e30 2dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.538524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.538529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.538531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.538535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.538540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.548505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.548516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.548521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.548525 LLDP, length 82 [|LLDP] 19:42:47.548526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.548531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e37 cedf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.548533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.548537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.548539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.548544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.558504 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.558513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.558518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.558522 LLDP, length 82 [|LLDP] 19:42:47.558523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.558528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e3f 6fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.558530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.558534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.558537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.558541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.568505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.568520 LLDP, length 82 [|LLDP] 19:42:47.568522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.568526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e47 111f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.568528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.568532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.568535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.568539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.568544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.568548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.578503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.578512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.578517 LLDP, length 82 [|LLDP] 19:42:47.578518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.578522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e4e b23f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.578524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.578528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.578531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.578535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.578540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.588505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.588514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.588518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.588523 LLDP, length 82 [|LLDP] 19:42:47.588524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.588528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e56 535f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.588530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.588534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.588536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.588541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.598507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.598515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.598520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.598524 LLDP, length 82 [|LLDP] 19:42:47.598526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.598530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e5d f47f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.598532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.598536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.598539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.598543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.608516 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.608533 LLDP, length 82 [|LLDP] 19:42:47.608535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.608539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e65 959f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.608542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.608546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.608549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.608553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.608557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.608561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.618506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.618523 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.618528 LLDP, length 82 [|LLDP] 19:42:47.618529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.618534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e6d 36bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.618536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.618541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.618543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.618548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.618552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.628508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.628518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.628523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.628527 LLDP, length 82 [|LLDP] 19:42:47.628528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.628533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e74 d7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.628535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.628539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.628542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.628546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.638512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.638525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.638530 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.638534 LLDP, length 82 [|LLDP] 19:42:47.638535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.638540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e7c 78ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.638542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.638563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.638566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.638572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.648524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.648544 LLDP, length 82 [|LLDP] 19:42:47.648545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.648550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e84 1a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.648552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.648556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.648559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.648563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.648568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.648572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.658508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.658520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.658525 LLDP, length 82 [|LLDP] 19:42:47.658526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.658531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e8b bb3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.658533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.658537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.658539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.658544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.658549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.668507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.668517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.668521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.668526 LLDP, length 82 [|LLDP] 19:42:47.668527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.668531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e93 5c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.668533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.668537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.668540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.668544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.678517 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.678534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.678538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.678543 LLDP, length 82 [|LLDP] 19:42:47.678544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.678548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e9a fd7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.678550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.678555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.678557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.678562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.688509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.688519 LLDP, length 82 [|LLDP] 19:42:47.688521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.688525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ea2 9e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.688527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.688531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.688534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.688538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.688543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.688547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.698509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.698518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.698523 LLDP, length 82 [|LLDP] 19:42:47.698524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.698528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eaa 3fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.698530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.698534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.698537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.698541 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.698545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.708514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.708530 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.708535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.708539 LLDP, length 82 [|LLDP] 19:42:47.708540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.708545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eb1 e0df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.708547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.708551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.708553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.708558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.718510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.718520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.718525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.718529 LLDP, length 82 [|LLDP] 19:42:47.718531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.718535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eb9 81ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.718537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.718541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.718544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.718548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.728506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.728516 LLDP, length 82 [|LLDP] 19:42:47.728518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.728522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ec1 231f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.728524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.728528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.728531 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.728535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.728540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.728544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.738515 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.738528 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.738533 LLDP, length 82 [|LLDP] 19:42:47.738534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.738539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ec8 c43f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.738540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.738545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.738547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.738551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.738556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.748526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.748548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.748553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.748557 LLDP, length 82 [|LLDP] 19:42:47.748559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.748563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ed0 655f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.748566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.748570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.748573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.748578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.758512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.758524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.758528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.758533 LLDP, length 82 [|LLDP] 19:42:47.758534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.758539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ed8 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.758541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.758545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.758548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.758552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.768512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.768524 LLDP, length 82 [|LLDP] 19:42:47.768525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.768530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1edf a79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.768532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.768536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.768539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.768543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.768548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.768552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.778510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.778521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.778526 LLDP, length 82 [|LLDP] 19:42:47.778527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.778532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ee7 48bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.778533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.778538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.778540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.778545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.778549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.788507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.788517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.788521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.788526 LLDP, length 82 [|LLDP] 19:42:47.788527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.788531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eee e9df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.788534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.788538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.788540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.788545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.798505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.798514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.798519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.798523 LLDP, length 82 [|LLDP] 19:42:47.798525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.798529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ef6 8aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.798531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.798535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.798538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.798542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.808508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.808518 LLDP, length 82 [|LLDP] 19:42:47.808520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.808524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1efe 2c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.808526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.808530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.808533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.808537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.808541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.808546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.818507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.818517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.818521 LLDP, length 82 [|LLDP] 19:42:47.818522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.818527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f05 cd3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.818529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.818533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.818535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.818540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.818544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.828508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.828518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.828522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.828526 LLDP, length 82 [|LLDP] 19:42:47.828528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.828532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f0d 6e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.828534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.828538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.828541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.828545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.838509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.838518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.838523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.838528 LLDP, length 82 [|LLDP] 19:42:47.838529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.838533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f15 0f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.838535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.838540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.838542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.838546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.848508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.848517 LLDP, length 82 [|LLDP] 19:42:47.848519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.848523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f1c b09f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.848525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.848529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.848532 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.848536 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.848540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.848544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.858510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.858520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.858525 LLDP, length 82 [|LLDP] 19:42:47.858526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.858531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f24 51bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.858533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.858537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.858539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.858544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.858548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.868543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.868568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.868573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.868577 LLDP, length 82 [|LLDP] 19:42:47.868579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.868584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f2b f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.868586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.868591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.868595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.868599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.878533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.878550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.878555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.878559 LLDP, length 82 [|LLDP] 19:42:47.878561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.878566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f33 93ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.878568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.878572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.878575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.878580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.888516 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.888528 LLDP, length 82 [|LLDP] 19:42:47.888529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.888534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f3b 351f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.888536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.888540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.888543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.888547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.888551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.888556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.898507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.898517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.898522 LLDP, length 82 [|LLDP] 19:42:47.898523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.898527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f42 d63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.898529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.898533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.898536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.898540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.898545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.908510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.908519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.908524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.908528 LLDP, length 82 [|LLDP] 19:42:47.908529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.908533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f4a 775f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.908535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.908539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.908542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.908546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.918509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.918518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.918522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.918526 LLDP, length 82 [|LLDP] 19:42:47.918528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.918532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f52 187f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.918534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.918538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.918541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.918545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.928509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.928518 LLDP, length 82 [|LLDP] 19:42:47.928519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.928524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f59 b99f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.928525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.928530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.928532 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.928537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.928541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.928545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.938509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.938518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.938523 LLDP, length 82 [|LLDP] 19:42:47.938524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.938528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f61 5abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.938530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.938534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.938537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.938541 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.938545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.948510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.948520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.948524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.948528 LLDP, length 82 [|LLDP] 19:42:47.948530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.948534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f68 fbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.948536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.948540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.948543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.948547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.958510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.958521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.958525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.958529 LLDP, length 82 [|LLDP] 19:42:47.958531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.958535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f70 9cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.958537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.958541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.958543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.958547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.968512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.968522 LLDP, length 82 [|LLDP] 19:42:47.968524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.968528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f78 3e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.968530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.968534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.968537 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.968542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.968546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.968550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.978510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.978520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.978524 LLDP, length 82 [|LLDP] 19:42:47.978526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.978530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f7f df3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.978531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.978536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.978538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.978542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.978547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.988514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.988524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.988528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.988532 LLDP, length 82 [|LLDP] 19:42:47.988534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.988538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f87 805f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.988540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.988544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.988546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.988551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.998511 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.998521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.998525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.998529 LLDP, length 82 [|LLDP] 19:42:47.998531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.998535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f8f 217f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.998537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.998541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.998544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.998548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.008510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.008518 LLDP, length 82 [|LLDP] 19:42:48.008520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.008524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f96 c29f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.008526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.008530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.008533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.008537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.008541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.008545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.018509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.018517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.018522 LLDP, length 82 [|LLDP] 19:42:48.018523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.018528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f9e 63bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.018529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.018533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.018536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.018540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.018545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.028510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.028519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.028524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.028528 LLDP, length 82 [|LLDP] 19:42:48.028529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.028534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fa6 04df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.028536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.028540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.028542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.028546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.038508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.038517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.038521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.038525 LLDP, length 82 [|LLDP] 19:42:48.038527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.038531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fad a5ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.038533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.038537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.038539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.038544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.048510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.048519 LLDP, length 82 [|LLDP] 19:42:48.048520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.048524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fb5 471f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.048526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.048530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.048533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.048537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.048541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.048546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.058512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.058521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.058525 LLDP, length 82 [|LLDP] 19:42:48.058527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.058532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fbc e83f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.058533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.058537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.058540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.058544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.058548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.068514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.068526 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.068530 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.068535 LLDP, length 82 [|LLDP] 19:42:48.068536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.068540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fc4 895f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.068542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.068546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.068549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.068553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.078523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.078538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.078543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.078547 LLDP, length 82 [|LLDP] 19:42:48.078549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.078553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fcc 2a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.078555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.078560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.078562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.078567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.088521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.088534 LLDP, length 82 [|LLDP] 19:42:48.088536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.088540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fd3 cb9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.088542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.088546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.088549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.088553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.088558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.088562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.098514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.098525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.098529 LLDP, length 82 [|LLDP] 19:42:48.098531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.098535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fdb 6cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.098537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.098541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.098544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.098548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.098553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.108514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.108524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.108529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.108533 LLDP, length 82 [|LLDP] 19:42:48.108534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.108539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fe3 0ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.108541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.108545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.108547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.108552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.118515 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.118524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.118529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.118533 LLDP, length 82 [|LLDP] 19:42:48.118535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.118539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fea aeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.118541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.118545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.118548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.118553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.128517 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.128526 LLDP, length 82 [|LLDP] 19:42:48.128528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.128532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ff2 501f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.128534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.128538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.128541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.128545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.128549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.128554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.138529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.138549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.138554 LLDP, length 82 [|LLDP] 19:42:48.138555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.138560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ff9 f13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.138562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.138566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.138569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.138574 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.138578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.148526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.148542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.148547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.148551 LLDP, length 82 [|LLDP] 19:42:48.148553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.148557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2001 925f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.148559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.148563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.148567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.148571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.158526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.158543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.158548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.158552 LLDP, length 82 [|LLDP] 19:42:48.158553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.158558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2009 337f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.158560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.158565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.158568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.158573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.168525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.168542 LLDP, length 82 [|LLDP] 19:42:48.168544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.168548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2010 d49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.168551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.168555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.168557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.168562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.168566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.168571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.178525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.178542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.178546 LLDP, length 82 [|LLDP] 19:42:48.178548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.178552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2018 75bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.178554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.178558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.178561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.178565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.178570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.188528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.188545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.188550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.188554 LLDP, length 82 [|LLDP] 19:42:48.188556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.188560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2020 16df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.188562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.188566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.188569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.188574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.198524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.198539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.198544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.198549 LLDP, length 82 [|LLDP] 19:42:48.198550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.198554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2027 b7ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.198556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.198561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.198563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.198569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.208524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.208538 LLDP, length 82 [|LLDP] 19:42:48.208540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.208545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 202f 591f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.208547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.208551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.208554 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.208558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.208562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.208567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.218525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.218539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.218544 LLDP, length 82 [|LLDP] 19:42:48.218545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.218550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2036 fa3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.218552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.218556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.218559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.218563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.218568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.228525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.228539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.228543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.228548 LLDP, length 82 [|LLDP] 19:42:48.228549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.228554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 203e 9b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.228556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.228560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.228563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.228567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.238532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.238547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.238552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.238556 LLDP, length 82 [|LLDP] 19:42:48.238557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.238562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2046 3c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.238564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.238568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.238571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.238576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.248529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.248544 LLDP, length 82 [|LLDP] 19:42:48.248545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.248550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 204d dd9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.248552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.248556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.248559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.248563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.248567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.248572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.258527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.258543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.258548 LLDP, length 82 [|LLDP] 19:42:48.258549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.258553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2055 7ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.258555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.258560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.258562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.258567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.258572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.268526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.268541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.268546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.268550 LLDP, length 82 [|LLDP] 19:42:48.268552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.268556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 205d 1fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.268558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.268562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.268565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.268569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.278531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.278550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.278554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.278559 LLDP, length 82 [|LLDP] 19:42:48.278561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.278565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2064 c0ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.278568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.278572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.278575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.278580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.288531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.288548 LLDP, length 82 [|LLDP] 19:42:48.288549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.288554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 206c 621f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.288556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.288561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.288564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.288568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.288572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.288577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.298526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.298541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.298546 LLDP, length 82 [|LLDP] 19:42:48.298548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.298552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2074 033f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.298554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.298558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.298561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.298565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.298570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.308527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.308543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.308547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.308552 LLDP, length 82 [|LLDP] 19:42:48.308553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.308558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 207b a45f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.308560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.308564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.308567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.308572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.318524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.318539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.318543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.318547 LLDP, length 82 [|LLDP] 19:42:48.318549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.318554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2083 457f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.318556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.318560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.318563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.318567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.328526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.328540 LLDP, length 82 [|LLDP] 19:42:48.328542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.328546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 208a e69f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.328549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.328553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.328555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.328560 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.328564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.328568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.338527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.338542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.338547 LLDP, length 82 [|LLDP] 19:42:48.338548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.338553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2092 87bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.338555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.338559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.338562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.338566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.338571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.348524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.348540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.348545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.348549 LLDP, length 82 [|LLDP] 19:42:48.348551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.348555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 209a 28df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.348558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.348561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.348564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.348569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.358526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.358541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.358545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.358550 LLDP, length 82 [|LLDP] 19:42:48.358551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.358555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20a1 c9ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.358558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.358562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.358565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.358569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.368529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.368543 LLDP, length 82 [|LLDP] 19:42:48.368545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.368550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20a9 6b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.368552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.368556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.368559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.368563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.368567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.368572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.378528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.378544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.378549 LLDP, length 82 [|LLDP] 19:42:48.378551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.378555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20b1 0c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.378558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.378562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.378565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.378569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.378574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.388531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.388547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.388552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.388556 LLDP, length 82 [|LLDP] 19:42:48.388557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.388562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20b8 ad5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.388564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.388568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.388571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.388575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.398526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.398540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.398545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.398549 LLDP, length 82 [|LLDP] 19:42:48.398550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.398555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20c0 4e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.398557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.398561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.398564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.398568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.408531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.408547 LLDP, length 82 [|LLDP] 19:42:48.408549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.408554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20c7 ef9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.408556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.408560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.408563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.408568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.408572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.408577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.418534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.418551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.418556 LLDP, length 82 [|LLDP] 19:42:48.418558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.418563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20cf 90bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.418565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.418569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.418572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.418576 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.418581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.428533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.428549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.428553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.428558 LLDP, length 82 [|LLDP] 19:42:48.428559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.428564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20d7 31df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.428566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.428570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.428573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.428578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.438528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.438544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.438548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.438552 LLDP, length 82 [|LLDP] 19:42:48.438554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.438558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20de d2ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.438560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.438564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.438567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.438571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.448529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.448543 LLDP, length 82 [|LLDP] 19:42:48.448544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.448549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20e6 741f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.448551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.448555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.448558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.448562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.448566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.448571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.458528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.458542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.458547 LLDP, length 82 [|LLDP] 19:42:48.458548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.458553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20ee 153f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.458555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.458559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.458562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.458566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.458571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.468531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.468546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.468550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.468555 LLDP, length 82 [|LLDP] 19:42:48.468556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.468561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20f5 b65f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.468563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.468567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.468570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.468574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.478529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.478545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.478550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.478554 LLDP, length 82 [|LLDP] 19:42:48.478556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.478560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20fd 577f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.478562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.478566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.478569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.478574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.488530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.488546 LLDP, length 82 [|LLDP] 19:42:48.488547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.488552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2104 f89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.488554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.488558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.488560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.488565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.488569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.488574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.498529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.498543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.498548 LLDP, length 82 [|LLDP] 19:42:48.498549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.498554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 210c 99bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.498555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.498560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.498563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.498567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.498572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.508531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.508546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.508551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.508555 LLDP, length 82 [|LLDP] 19:42:48.508557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.508561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2114 3adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.508563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.508567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.508570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.508575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.518531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.518548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.518552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.518557 LLDP, length 82 [|LLDP] 19:42:48.518558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.518563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 211b dbff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.518565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.518569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.518572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.518577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.528534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.528549 LLDP, length 82 [|LLDP] 19:42:48.528551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.528556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2123 7d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.528558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.528562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.528565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.528569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.528574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.528579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.538529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.538544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.538548 LLDP, length 82 [|LLDP] 19:42:48.538550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.538555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 212b 1e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.538557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.538561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.538564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.538568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.538572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.548531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.548545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.548550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.548554 LLDP, length 82 [|LLDP] 19:42:48.548555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.548560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2132 bf5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.548562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.548566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.548568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.548573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.558532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.558546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.558551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.558555 LLDP, length 82 [|LLDP] 19:42:48.558556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.558561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 213a 607f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.558563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.558567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.558570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.558574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.568531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.568545 LLDP, length 82 [|LLDP] 19:42:48.568547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.568551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2142 019f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.568553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.568557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.568560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.568564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.568569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.568573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.578529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.578545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.578550 LLDP, length 82 [|LLDP] 19:42:48.578551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.578555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2149 a2bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.578557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.578562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.578565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.578569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.578574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.588533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.588550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.588554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.588559 LLDP, length 82 [|LLDP] 19:42:48.588560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.588565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2151 43df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.588567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.588571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.588574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.588579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.598532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.598548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.598553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.598557 LLDP, length 82 [|LLDP] 19:42:48.598558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.598563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2158 e4ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.598565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.598569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.598572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.598577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.608533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.608549 LLDP, length 82 [|LLDP] 19:42:48.608550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.608555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2160 861f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.608557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.608561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.608564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.608568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.608572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.608577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.618530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.618544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.618548 LLDP, length 82 [|LLDP] 19:42:48.618549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.618554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2168 273f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.618556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.618560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.618563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.618567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.618572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.628529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.628545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.628549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.628553 LLDP, length 82 [|LLDP] 19:42:48.628555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.628559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 216f c85f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.628561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.628565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.628568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.628573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.638532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.638548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.638553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.638557 LLDP, length 82 [|LLDP] 19:42:48.638559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.638563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2177 697f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.638565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.638569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.638572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.638577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.648533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.648548 LLDP, length 82 [|LLDP] 19:42:48.648550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.648555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 217f 0a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.648557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.648561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.648564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.648568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.648573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.648577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.658532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.658547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.658551 LLDP, length 82 [|LLDP] 19:42:48.658553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.658558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2186 abbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.658560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.658564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.658566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.658571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.658576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.668531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.668546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.668550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.668555 LLDP, length 82 [|LLDP] 19:42:48.668556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.668561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 218e 4cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.668563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.668567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.668570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.668574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.678531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.678546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.678551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.678555 LLDP, length 82 [|LLDP] 19:42:48.678556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.678561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2195 edff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.678563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.678567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.678570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.678574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.688531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.688546 LLDP, length 82 [|LLDP] 19:42:48.688548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.688552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 219d 8f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.688554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.688559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.688561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.688566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.688570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.688574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.698532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.698546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.698551 LLDP, length 82 [|LLDP] 19:42:48.698553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.698557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21a5 303f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.698559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.698564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.698566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.698571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.698575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.708531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.708546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.708550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.708554 LLDP, length 82 [|LLDP] 19:42:48.708556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.708560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21ac d15f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.708562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.708567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.708569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.708574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.718534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.718549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.718553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.718558 LLDP, length 82 [|LLDP] 19:42:48.718560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.718564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21b4 727f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.718566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.718570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.718573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.718578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.728533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.728548 LLDP, length 82 [|LLDP] 19:42:48.728550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.728555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21bc 139f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.728557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.728561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.728563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.728567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.728572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.728576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.738535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.738551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.738555 LLDP, length 82 [|LLDP] 19:42:48.738556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.738561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21c3 b4bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.738563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.738567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.738570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.738574 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.738579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.748547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.748568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.748573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.748577 LLDP, length 82 [|LLDP] 19:42:48.748579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.748583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21cb 55df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.748585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.748590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.748593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.748598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.758538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.758553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.758558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.758563 LLDP, length 82 [|LLDP] 19:42:48.758564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.758569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21d2 f6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.758571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.758575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.758578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.758583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.768533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.768547 LLDP, length 82 [|LLDP] 19:42:48.768549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.768554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21da 981f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.768556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.768560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.768562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.768567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.768571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.768576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.778542 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.778560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.778564 LLDP, length 82 [|LLDP] 19:42:48.778566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.778570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21e2 393f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.778572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.778576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.778579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.778583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.778588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.788537 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.788553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.788557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.788561 LLDP, length 82 [|LLDP] 19:42:48.788563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.788568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21e9 da5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.788570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.788574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.788577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.788582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.798535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.798550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.798554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.798558 LLDP, length 82 [|LLDP] 19:42:48.798560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.798564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21f1 7b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.798566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.798570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.798573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.798578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.808543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.808559 LLDP, length 82 [|LLDP] 19:42:48.808561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.808565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21f9 1c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.808567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.808571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.808574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.808579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.808583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.808588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.818541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.818560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.818565 LLDP, length 82 [|LLDP] 19:42:48.818566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.818571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2200 bdbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.818573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.818577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.818580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.818585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.818589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.828540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.828557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.828561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.828565 LLDP, length 82 [|LLDP] 19:42:48.828567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.828571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2208 5edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.828573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.828577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.828580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.828585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.838536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.838552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.838556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.838561 LLDP, length 82 [|LLDP] 19:42:48.838562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.838566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 220f ffff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.838568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.838573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.838575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.838580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.848543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.848562 LLDP, length 82 [|LLDP] 19:42:48.848563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.848568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2217 a11f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.848570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.848574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.848577 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.848581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.848586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.848590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.858538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.858553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.858557 LLDP, length 82 [|LLDP] 19:42:48.858559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.858563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 221f 423f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.858565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.858570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.858572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.858577 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.858581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.868535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.868550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.868555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.868559 LLDP, length 82 [|LLDP] 19:42:48.868561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.868565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2226 e35f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.868567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.868571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.868574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.868578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.878555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.878580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.878585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.878589 LLDP, length 82 [|LLDP] 19:42:48.878591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.878596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 222e 847f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.878598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.878603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.878606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.878610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.888560 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.888582 LLDP, length 82 [|LLDP] 19:42:48.888584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.888589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2236 259f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.888591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.888595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.888598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.888603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.888608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.888613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.898561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.898587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.898592 LLDP, length 82 [|LLDP] 19:42:48.898594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.898599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 223d c6bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.898601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.898606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.898609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.898614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.898618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.908532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.908543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.908547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.908552 LLDP, length 82 [|LLDP] 19:42:48.908553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.908558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2245 67df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.908560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.908564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.908567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.908572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.918531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.918541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.918546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.918550 LLDP, length 82 [|LLDP] 19:42:48.918552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.918556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 224d 08ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.918558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.918562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.918565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.918569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.928527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.928536 LLDP, length 82 [|LLDP] 19:42:48.928537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.928542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2254 aa1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.928544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.928548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.928550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.928555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.928559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.928563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.938527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.938538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.938542 LLDP, length 82 [|LLDP] 19:42:48.938544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.938548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 225c 4b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.938550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.938554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.938557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.938561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.938566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.948526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.948535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.948540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.948544 LLDP, length 82 [|LLDP] 19:42:48.948545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.948550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2263 ec5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.948552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.948556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.948559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.948563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.958526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.958534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.958539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.958543 LLDP, length 82 [|LLDP] 19:42:48.958545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.958549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 226b 8d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.958551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.958555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.958558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.958562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.968525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.968534 LLDP, length 82 [|LLDP] 19:42:48.968535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.968540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2273 2e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.968542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.968546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.968549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.968553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.968557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.968562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.978526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.978535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.978539 LLDP, length 82 [|LLDP] 19:42:48.978541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.978545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 227a cfbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.978547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.978551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.978553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.978557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.978562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.988524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.988533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.988538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.988542 LLDP, length 82 [|LLDP] 19:42:48.988543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.988548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2282 70df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.988549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.988553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.988556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.988560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.998525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.998533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.998538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.998542 LLDP, length 82 [|LLDP] 19:42:48.998543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.998548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 228a 11ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.998550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.998554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.998556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.998561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.008526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.008536 LLDP, length 82 [|LLDP] 19:42:49.008537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.008542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2291 b31f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.008544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.008548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.008550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.008555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.008559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.008564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.018526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.018535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.018540 LLDP, length 82 [|LLDP] 19:42:49.018541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.018545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2299 543f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.018547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.018551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.018554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.018558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.018563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.028525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.028534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.028539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.028543 LLDP, length 82 [|LLDP] 19:42:49.028545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.028549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22a0 f55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.028551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.028555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.028557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.028562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.038529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.038539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.038543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.038548 LLDP, length 82 [|LLDP] 19:42:49.038549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.038553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22a8 967f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.038555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.038559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.038562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.038566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.048525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.048535 LLDP, length 82 [|LLDP] 19:42:49.048536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.048541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22b0 379f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.048542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.048547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.048549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.048554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.048558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.048563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.058526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.058535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.058540 LLDP, length 82 [|LLDP] 19:42:49.058541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.058545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22b7 d8bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.058547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.058551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.058554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.058558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.058563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.068525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.068533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.068538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.068542 LLDP, length 82 [|LLDP] 19:42:49.068543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.068547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22bf 79df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.068549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.068553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.068556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.068560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.078527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.078536 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.078540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.078545 LLDP, length 82 [|LLDP] 19:42:49.078546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.078550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22c7 1aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.078552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.078557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.078559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.078564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.088527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.088536 LLDP, length 82 [|LLDP] 19:42:49.088538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.088542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22ce bc1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.088545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.088549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.088551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.088556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.088560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.088564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.098526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.098534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.098539 LLDP, length 82 [|LLDP] 19:42:49.098540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.098544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22d6 5d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.098546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.098550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.098553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.098557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.098561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.108528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.108544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.108549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.108553 LLDP, length 82 [|LLDP] 19:42:49.108554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.108559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22dd fe5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.108561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.108565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.108568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.108572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.118536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.118549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.118554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.118559 LLDP, length 82 [|LLDP] 19:42:49.118560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.118565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22e5 9f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.118566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.118570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.118573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.118578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.128531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.128540 LLDP, length 82 [|LLDP] 19:42:49.128542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.128546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22ed 409f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.128548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.128552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.128555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.128559 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.128563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.128568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.138530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.138539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.138543 LLDP, length 82 [|LLDP] 19:42:49.138545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.138549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22f4 e1bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.138551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.138555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.138558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.138562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.138567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.148532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.148543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.148548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.148552 LLDP, length 82 [|LLDP] 19:42:49.148553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.148557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22fc 82df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.148559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.148563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.148566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.148570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.158531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.158540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.158544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.158549 LLDP, length 82 [|LLDP] 19:42:49.158550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.158554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2304 23ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.158556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.158560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.158563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.158567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.168528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.168537 LLDP, length 82 [|LLDP] 19:42:49.168538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.168543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 230b c51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.168545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.168549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.168551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.168556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.168560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.168564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.178529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.178538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.178542 LLDP, length 82 [|LLDP] 19:42:49.178544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.178548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2313 663f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.178550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.178554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.178557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.178561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.178565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.188532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.188542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.188547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.188551 LLDP, length 82 [|LLDP] 19:42:49.188552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.188557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 231b 075f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.188558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.188562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.188565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.188569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.198530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.198540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.198544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.198549 LLDP, length 82 [|LLDP] 19:42:49.198550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.198555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2322 a87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.198557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.198560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.198563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.198567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.208531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.208542 LLDP, length 82 [|LLDP] 19:42:49.208543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.208548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 232a 499f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.208550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.208554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.208557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.208561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.208565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.208569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.218530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.218539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.218543 LLDP, length 82 [|LLDP] 19:42:49.218545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.218549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2331 eabf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.218551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.218555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.218558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.218562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.218567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.228529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.228538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.228542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.228547 LLDP, length 82 [|LLDP] 19:42:49.228548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.228552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2339 8bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.228555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.228559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.228561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.228566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.238528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.238537 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.238542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.238546 LLDP, length 82 [|LLDP] 19:42:49.238547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.238552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2341 2cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.238554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.238558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.238561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.238565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.248532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.248543 LLDP, length 82 [|LLDP] 19:42:49.248544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.248548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2348 ce1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.248550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.248554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.248557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.248561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.248565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.248570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.258531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.258541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.258545 LLDP, length 82 [|LLDP] 19:42:49.258547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.258551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2350 6f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.258553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.258557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.258559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.258563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.258568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.268531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.268540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.268545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.268549 LLDP, length 82 [|LLDP] 19:42:49.268551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.268555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2358 105f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.268557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.268561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.268563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.268568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.278530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.278540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.278544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.278549 LLDP, length 82 [|LLDP] 19:42:49.278550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.278554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 235f b17f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.278556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.278561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.278563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.278567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.288533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.288544 LLDP, length 82 [|LLDP] 19:42:49.288546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.288550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2367 529f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.288552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.288556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.288559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.288563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.288567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.288572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.298533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.298543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.298547 LLDP, length 82 [|LLDP] 19:42:49.298549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.298553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 236e f3bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.298555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.298559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.298561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.298565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.298570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.308531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.308540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.308545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.308549 LLDP, length 82 [|LLDP] 19:42:49.308550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.308554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2376 94df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.308556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.308560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.308563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.308567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.318531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.318542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.318546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.318551 LLDP, length 82 [|LLDP] 19:42:49.318552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.318557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 237e 35ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.318559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.318563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.318566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.318570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.328533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.328542 LLDP, length 82 [|LLDP] 19:42:49.328543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.328548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2385 d71f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.328549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.328554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.328556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.328561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.328565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.328570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.338531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.338540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.338545 LLDP, length 82 [|LLDP] 19:42:49.338546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.338550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 238d 783f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.338552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.338556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.338559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.338563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.338568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.348532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.348543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.348548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.348552 LLDP, length 82 [|LLDP] 19:42:49.348554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.348558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2395 195f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.348560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.348564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.348567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.348571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.358533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.358543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.358548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.358552 LLDP, length 82 [|LLDP] 19:42:49.358554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.358558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 239c ba7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.358560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.358565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.358567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.358572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.368533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.368543 LLDP, length 82 [|LLDP] 19:42:49.368544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.368549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23a4 5b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.368550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.368554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.368557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.368561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.368565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.368570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.378532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.378541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.378546 LLDP, length 82 [|LLDP] 19:42:49.378548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.378552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23ab fcbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.378554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.378558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.378560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.378564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.378569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.388533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.388542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.388546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.388550 LLDP, length 82 [|LLDP] 19:42:49.388552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.388556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23b3 9ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.388558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.388562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.388565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.388569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.398531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.398539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.398543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.398548 LLDP, length 82 [|LLDP] 19:42:49.398549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.398553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23bb 3eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.398556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.398560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.398562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.398567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.408535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.408544 LLDP, length 82 [|LLDP] 19:42:49.408545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.408550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23c2 e01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.408552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.408556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.408558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.408563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.408567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.408571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.418532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.418543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.418547 LLDP, length 82 [|LLDP] 19:42:49.418548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.418553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23ca 813f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.418555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.418559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.418561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.418566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.418570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.428533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.428543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.428547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.428551 LLDP, length 82 [|LLDP] 19:42:49.428553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.428557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23d2 225f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.428559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.428563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.428565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.428570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.438534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.438543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.438547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.438551 LLDP, length 82 [|LLDP] 19:42:49.438553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.438557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23d9 c37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.438559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.438563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.438565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.438570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.448531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.448539 LLDP, length 82 [|LLDP] 19:42:49.448540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.448545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23e1 649f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.448547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.448551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.448553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.448557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.448562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.448566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.458535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.458545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.458549 LLDP, length 82 [|LLDP] 19:42:49.458551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.458555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23e9 05bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.458557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.458561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.458564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.458568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.458573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.468533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.468542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.468546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.468550 LLDP, length 82 [|LLDP] 19:42:49.468552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.468557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23f0 a6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.468558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.468562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.468565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.468570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.478531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.478540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.478544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.478548 LLDP, length 82 [|LLDP] 19:42:49.478550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.478554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23f8 47ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.478556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.478560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.478563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.478567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.488533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.488541 LLDP, length 82 [|LLDP] 19:42:49.488543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.488547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23ff e91f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.488549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.488553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.488556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.488560 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.488564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.488569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.498533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.498542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.498546 LLDP, length 82 [|LLDP] 19:42:49.498548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.498552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2407 8a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.498554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.498558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.498561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.498565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.498570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.508534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.508542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.508547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.508551 LLDP, length 82 [|LLDP] 19:42:49.508552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.508557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 240f 2b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.508559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.508563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.508566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.508570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.518534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.518542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.518546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.518551 LLDP, length 82 [|LLDP] 19:42:49.518552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.518557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2416 cc7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.518558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.518563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.518565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.518570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.528535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.528546 LLDP, length 82 [|LLDP] 19:42:49.528547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.528552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 241e 6d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.528553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.528558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.528560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.528564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.528569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.528573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.538534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.538543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.538547 LLDP, length 82 [|LLDP] 19:42:49.538548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.538552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2426 0ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.538554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.538559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.538561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.538565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.538570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.548534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.548543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.548547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.548551 LLDP, length 82 [|LLDP] 19:42:49.548553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.548557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 242d afdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.548559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.548563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.548565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.548570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.558535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.558545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.558549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.558553 LLDP, length 82 [|LLDP] 19:42:49.558554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.558559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2435 50ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.558561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.558565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.558568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.558572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.568540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.568552 LLDP, length 82 [|LLDP] 19:42:49.568553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.568557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 243c f21f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.568559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.568563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.568566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.568570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.568575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.568579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.578536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.578546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.578550 LLDP, length 82 [|LLDP] 19:42:49.578552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.578556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2444 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.578558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.578562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.578564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.578568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.578573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.588534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.588544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.588548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.588552 LLDP, length 82 [|LLDP] 19:42:49.588554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.588558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 244c 345f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.588560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.588564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.588567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.588571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.598557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.598574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.598578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.598583 LLDP, length 82 [|LLDP] 19:42:49.598584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.598589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2453 d57f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.598591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.598595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.598598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.598602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.608538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.608548 LLDP, length 82 [|LLDP] 19:42:49.608549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.608553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 245b 769f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.608555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.608559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.608562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.608567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.608571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.608576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.618538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.618547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.618551 LLDP, length 82 [|LLDP] 19:42:49.618553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.618557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2463 17bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.618559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.618563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.618566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.618570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.618574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.628539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.628550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.628555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.628559 LLDP, length 82 [|LLDP] 19:42:49.628561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.628565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 246a b8df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.628567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.628571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.628573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.628578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.638536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.638545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.638549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.638554 LLDP, length 82 [|LLDP] 19:42:49.638555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.638560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2472 59ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.638562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.638566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.638568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.638573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.648537 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.648545 LLDP, length 82 [|LLDP] 19:42:49.648547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.648551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2479 fb1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.648553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.648557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.648559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.648564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.648568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.648573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.658533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.658542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.658546 LLDP, length 82 [|LLDP] 19:42:49.658547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.658552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2481 9c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.658554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.658558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.658560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.658564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.658569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.668538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.668548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.668553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.668557 LLDP, length 82 [|LLDP] 19:42:49.668558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.668563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2489 3d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.668564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.668568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.668571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.668575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.678538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.678547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.678552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.678556 LLDP, length 82 [|LLDP] 19:42:49.678557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.678562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2490 de7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.678563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.678568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.678571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.678575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.688536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.688546 LLDP, length 82 [|LLDP] 19:42:49.688547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.688552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2498 7f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.688553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.688557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.688560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.688564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.688568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.688573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.698537 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.698546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.698550 LLDP, length 82 [|LLDP] 19:42:49.698552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.698556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24a0 20bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.698558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.698562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.698565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.698569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.698574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.708540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.708549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.708553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.708558 LLDP, length 82 [|LLDP] 19:42:49.708559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.708563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24a7 c1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.708566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.708570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.708572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.708576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.718538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.718546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.718551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.718555 LLDP, length 82 [|LLDP] 19:42:49.718557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.718561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24af 62ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.718563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.718567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.718569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.718575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.728539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.728549 LLDP, length 82 [|LLDP] 19:42:49.728551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.728555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24b7 041f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.728557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.728561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.728564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.728568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.728573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.728577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.738541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.738551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.738555 LLDP, length 82 [|LLDP] 19:42:49.738557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.738561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24be a53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.738563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.738567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.738569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.738573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.738578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.748536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.748545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.748549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.748553 LLDP, length 82 [|LLDP] 19:42:49.748555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.748559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24c6 465f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.748561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.748565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.748568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.748572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.758538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.758546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.758550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.758554 LLDP, length 82 [|LLDP] 19:42:49.758556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.758561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24cd e77f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.758562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.758567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.758569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.758573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.768539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.768549 LLDP, length 82 [|LLDP] 19:42:49.768551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.768555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24d5 889f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.768557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.768561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.768564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.768568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.768572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.768576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.778554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.778571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.778575 LLDP, length 82 [|LLDP] 19:42:49.778577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.778581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24dd 29bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.778583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.778587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.778590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.778595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.778599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.788541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.788551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.788555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.788560 LLDP, length 82 [|LLDP] 19:42:49.788561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.788565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24e4 cadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.788567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.788571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.788574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.788579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.798539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.798548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.798552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.798556 LLDP, length 82 [|LLDP] 19:42:49.798558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.798563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24ec 6bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.798565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.798569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.798571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.798576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.808539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.808549 LLDP, length 82 [|LLDP] 19:42:49.808550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.808554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24f4 0d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.808556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.808560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.808563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.808567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.808571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.808576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.818540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.818549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.818553 LLDP, length 82 [|LLDP] 19:42:49.818555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.818559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24fb ae3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.818561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.818565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.818568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.818572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.818576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.828538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.828547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.828552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.828556 LLDP, length 82 [|LLDP] 19:42:49.828557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.828562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2503 4f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.828563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.828567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.828570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.828574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.838541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.838552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.838556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.838561 LLDP, length 82 [|LLDP] 19:42:49.838562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.838566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 250a f07f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.838568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.838572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.838575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.838579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.848540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.848549 LLDP, length 82 [|LLDP] 19:42:49.848551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.848555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2512 919f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.848557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.848561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.848564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.848568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.848573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.848577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.858538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.858547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.858551 LLDP, length 82 [|LLDP] 19:42:49.858553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.858557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 251a 32bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.858559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.858563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.858565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.858569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.858574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.868542 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.868552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.868556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.868561 LLDP, length 82 [|LLDP] 19:42:49.868562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.868566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2521 d3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.868568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.868572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.868575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.868580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.878550 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.878564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.878568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.878573 LLDP, length 82 [|LLDP] 19:42:49.878574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.878579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2529 74ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.878581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.878586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.878588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.878593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.888571 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.888593 LLDP, length 82 [|LLDP] 19:42:49.888595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.888600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2531 161f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.888602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.888607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.888610 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.888615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.888619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.888624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.898544 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.898555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.898559 LLDP, length 82 [|LLDP] 19:42:49.898560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.898565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2538 b73f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.898567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.898571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.898573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.898578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.898583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.908543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.908552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.908557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.908561 LLDP, length 82 [|LLDP] 19:42:49.908562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.908567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2540 585f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.908569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.908573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.908576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.908580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.918585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.918610 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.918615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.918620 LLDP, length 82 [|LLDP] 19:42:49.918622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.918627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2547 f97f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.918629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.918634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.918638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.918643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.928561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.928578 LLDP, length 82 [|LLDP] 19:42:49.928579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.928584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 254f 9a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.928586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.928590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.928593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.928598 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.928602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.928607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.938553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.938569 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.938574 LLDP, length 82 [|LLDP] 19:42:49.938576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.938581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2557 3bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.938583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.938588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.938590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.938595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.938600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.948545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.948558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.948562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.948567 LLDP, length 82 [|LLDP] 19:42:49.948568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.948573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 255e dcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.948575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.948579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.948582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.948586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.958543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.958553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.958557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.958561 LLDP, length 82 [|LLDP] 19:42:49.958563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.958567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2566 7dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.958569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.958573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.958576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.958580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.968542 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.968552 LLDP, length 82 [|LLDP] 19:42:49.968553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.968558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 256e 1f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.968560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.968564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.968567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.968571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.968576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.968580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.978552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.978571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.978576 LLDP, length 82 [|LLDP] 19:42:49.978577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.978582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2575 c03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.978583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.978587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.978590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.978594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.978599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.988546 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.988559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.988563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.988568 LLDP, length 82 [|LLDP] 19:42:49.988569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.988574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 257d 615f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.988575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.988580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.988582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.988587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.998543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.998552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.998556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.998560 LLDP, length 82 [|LLDP] 19:42:49.998562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.998567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2585 027f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.998568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.998573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.998575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.998580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.008545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.008554 LLDP, length 82 [|LLDP] 19:42:50.008556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.008560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 258c a39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.008562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.008566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.008568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.008573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.008577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.008581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.018548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.018561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.018565 LLDP, length 82 [|LLDP] 19:42:50.018567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.018571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2594 44bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.018573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.018578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.018580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.018585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.018590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.028549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.028563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.028568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.028572 LLDP, length 82 [|LLDP] 19:42:50.028573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.028577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 259b e5df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.028579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.028583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.028587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.028591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.038545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.038556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.038561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.038565 LLDP, length 82 [|LLDP] 19:42:50.038567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.038571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25a3 86ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.038573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.038577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.038580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.038584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.048546 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.048559 LLDP, length 82 [|LLDP] 19:42:50.048560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.048565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ab 281f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.048567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.048571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.048573 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.048577 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.048582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.048586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.058545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.058556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.058560 LLDP, length 82 [|LLDP] 19:42:50.058562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.058566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25b2 c93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.058568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.058572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.058575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.058579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.058584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.068546 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.068557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.068561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.068565 LLDP, length 82 [|LLDP] 19:42:50.068567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.068571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ba 6a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.068573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.068577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.068580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.068584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.078547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.078560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.078565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.078569 LLDP, length 82 [|LLDP] 19:42:50.078570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.078575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25c2 0b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.078577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.078581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.078583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.078588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.088548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.088559 LLDP, length 82 [|LLDP] 19:42:50.088560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.088565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25c9 ac9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.088567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.088571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.088574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.088578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.088582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.088586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.098548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.098560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.098564 LLDP, length 82 [|LLDP] 19:42:50.098566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.098570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25d1 4dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.098572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.098576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.098579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.098583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.098588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.108547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.108559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.108563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.108568 LLDP, length 82 [|LLDP] 19:42:50.108569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.108574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25d8 eedf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.108576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.108580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.108582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.108587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.118544 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.118555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.118560 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.118564 LLDP, length 82 [|LLDP] 19:42:50.118565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.118570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25e0 8fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.118572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.118576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.118578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.118583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.128549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.128560 LLDP, length 82 [|LLDP] 19:42:50.128562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.128566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25e8 311f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.128568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.128573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.128575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.128580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.128584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.128589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.138560 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.138575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.138579 LLDP, length 82 [|LLDP] 19:42:50.138580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.138585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ef d23f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.138586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.138591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.138593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.138597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.138602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.148552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.148566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.148570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.148574 LLDP, length 82 [|LLDP] 19:42:50.148576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.148580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25f7 735f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.148582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.148587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.148590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.148594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.158548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.158560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.158564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.158569 LLDP, length 82 [|LLDP] 19:42:50.158570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.158574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ff 147f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.158576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.158581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.158583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.158588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.168548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.168560 LLDP, length 82 [|LLDP] 19:42:50.168562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.168566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2606 b59f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.168568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.168572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.168575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.168579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.168583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.168588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.178549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.178560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.178564 LLDP, length 82 [|LLDP] 19:42:50.178566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.178570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 260e 56bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.178572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.178576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.178579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.178583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.178588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.188551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.188565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.188570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.188574 LLDP, length 82 [|LLDP] 19:42:50.188576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.188580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2615 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.188582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.188587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.188589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.188594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.198551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.198565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.198569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.198574 LLDP, length 82 [|LLDP] 19:42:50.198575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.198579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 261d 98ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.198581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.198585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.198588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.198592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.208549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.208561 LLDP, length 82 [|LLDP] 19:42:50.208563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.208567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2625 3a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.208569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.208573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.208576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.208580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.208584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.208589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.218547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.218558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.218562 LLDP, length 82 [|LLDP] 19:42:50.218563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.218568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 262c db3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.218570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.218574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.218576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.218580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.218585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.228548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.228559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.228563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.228567 LLDP, length 82 [|LLDP] 19:42:50.228569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.228573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2634 7c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.228575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.228579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.228582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.228586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.238547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.238558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.238563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.238567 LLDP, length 82 [|LLDP] 19:42:50.238568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.238573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 263c 1d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.238574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.238579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.238581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.238585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.248553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.248565 LLDP, length 82 [|LLDP] 19:42:50.248566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.248571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2643 be9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.248572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.248577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.248579 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.248584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.248588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.248592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.258547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.258558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.258563 LLDP, length 82 [|LLDP] 19:42:50.258564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.258569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 264b 5fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.258571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.258575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.258578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.258583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.258587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.268547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.268558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.268562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.268567 LLDP, length 82 [|LLDP] 19:42:50.268568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.268572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2653 00df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.268574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.268578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.268581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.268585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.278548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.278559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.278563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.278568 LLDP, length 82 [|LLDP] 19:42:50.278569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.278573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 265a a1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.278576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.278580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.278582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.278587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.288555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.288568 LLDP, length 82 [|LLDP] 19:42:50.288569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.288574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2662 431f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.288576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.288580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.288583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.288587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.288591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.288596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.298552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.298565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.298569 LLDP, length 82 [|LLDP] 19:42:50.298571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.298575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2669 e43f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.298577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.298581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.298584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.298589 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.298593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.308550 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.308562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.308566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.308570 LLDP, length 82 [|LLDP] 19:42:50.308572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.308576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2671 855f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.308578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.308582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.308585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.308589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.318549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.318561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.318565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.318569 LLDP, length 82 [|LLDP] 19:42:50.318571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.318575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2679 267f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.318577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.318581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.318583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.318588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.327418 IP6 fe80::923c:b3ff:fe8b:ef57 > ff02::2: ICMP6, router solicitation, length 16 19:42:50.328547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.328559 LLDP, length 82 [|LLDP] 19:42:50.328561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.328565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2680 c79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.328567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.328571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.328574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.328578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.328583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.328588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.338553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.338566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.338570 LLDP, length 82 [|LLDP] 19:42:50.338571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.338576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2688 68bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.338578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.338582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.338585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.338589 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.338593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.348550 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.348562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.348566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.348571 LLDP, length 82 [|LLDP] 19:42:50.348572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.348576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2690 09df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.348578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.348582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.348585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.348589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.358574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.358587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.358592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.358596 LLDP, length 82 [|LLDP] 19:42:50.358597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.358602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2697 aaff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.358604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.358608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.358611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.358615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.368553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.368564 LLDP, length 82 [|LLDP] 19:42:50.368566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.368570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 269f 4c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.368572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.368576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.368579 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.368583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.368587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.368592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.378549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.378560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.378564 LLDP, length 82 [|LLDP] 19:42:50.378565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.378570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26a6 ed3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.378572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.378576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.378578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.378582 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.378587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.388551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.388563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.388568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.388572 LLDP, length 82 [|LLDP] 19:42:50.388574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.388578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26ae 8e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.388580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.388584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.388587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.388591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.398554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.398567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.398572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.398576 LLDP, length 82 [|LLDP] 19:42:50.398577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.398582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26b6 2f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.398584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.398588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.398590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.398595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.408551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.408562 LLDP, length 82 [|LLDP] 19:42:50.408563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.408568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26bd d09f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.408570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.408574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.408576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.408581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.408585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.408590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.418551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.418562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.418567 LLDP, length 82 [|LLDP] 19:42:50.418568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.418573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26c5 71bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.418574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.418579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.418581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.418586 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.418590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.428553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.428564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.428569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.428573 LLDP, length 82 [|LLDP] 19:42:50.428574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.428579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26cd 12df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.428580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.428585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.428587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.428592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.438552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.438563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.438567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.438571 LLDP, length 82 [|LLDP] 19:42:50.438573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.438577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26d4 b3ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.438579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.438583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.438586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.438591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.448552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.448562 LLDP, length 82 [|LLDP] 19:42:50.448564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.448568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26dc 551f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.448570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.448574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.448577 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.448581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.448586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.448591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.458552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.458565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.458569 LLDP, length 82 [|LLDP] 19:42:50.458571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.458575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26e3 f63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.458577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.458581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.458584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.458588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.458592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.468553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.468564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.468569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.468573 LLDP, length 82 [|LLDP] 19:42:50.468574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.468579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26eb 975f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.468581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.468585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.468587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.468592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.478551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.478561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.478566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.478570 LLDP, length 82 [|LLDP] 19:42:50.478572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.478576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26f3 387f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.478578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.478582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.478585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.478589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.488555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.488566 LLDP, length 82 [|LLDP] 19:42:50.488567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.488571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26fa d99f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.488573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.488577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.488580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.488584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.488588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.488593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.498555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.498567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.498572 LLDP, length 82 [|LLDP] 19:42:50.498573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.498578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2702 7abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.498579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.498584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.498586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.498591 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.498595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.508570 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.508587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.508592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.508597 LLDP, length 82 [|LLDP] 19:42:50.508598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.508602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 270a 1bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.508605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.508609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.508612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.508617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.518561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.518576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.518581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.518585 LLDP, length 82 [|LLDP] 19:42:50.518586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.518591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2711 bcff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.518593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.518597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.518600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.518604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.528556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.528569 LLDP, length 82 [|LLDP] 19:42:50.528570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.528575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2719 5e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.528577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.528581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.528584 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.528588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.528592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.528597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.538553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.538564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.538569 LLDP, length 82 [|LLDP] 19:42:50.538570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.538574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2720 ff3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.538576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.538580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.538583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.538588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.538592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.548552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.548563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.548567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.548572 LLDP, length 82 [|LLDP] 19:42:50.548573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.548577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2728 a05f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.548579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.548583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.548586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.548591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.558558 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.558570 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.558575 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.558579 LLDP, length 82 [|LLDP] 19:42:50.558580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.558585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2730 417f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.558587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.558591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.558593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.558598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.568556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.568568 LLDP, length 82 [|LLDP] 19:42:50.568570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.568575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2737 e29f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.568576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.568581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.568583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.568587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.568592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.568596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.578554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.578565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.578570 LLDP, length 82 [|LLDP] 19:42:50.578571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.578576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 273f 83bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.578577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.578582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.578584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.578588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.578593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.588554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.588566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.588571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.588575 LLDP, length 82 [|LLDP] 19:42:50.588576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.588581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2747 24df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.588583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.588587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.588589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.588594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.598570 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.598588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.598592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.598597 LLDP, length 82 [|LLDP] 19:42:50.598598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.598603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 274e c5ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.598605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.598609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.598612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.598617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.608563 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.608577 LLDP, length 82 [|LLDP] 19:42:50.608579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.608583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2756 671f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.608585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.608589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.608592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.608597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.608601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.608606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.618556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.618567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.618572 LLDP, length 82 [|LLDP] 19:42:50.618573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.618578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 275e 083f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.618579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.618584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.618586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.618590 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.618595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.628554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.628565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.628569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.628574 LLDP, length 82 [|LLDP] 19:42:50.628575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.628580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2765 a95f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.628581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.628586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.628588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.628593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.638553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.638563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.638568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.638572 LLDP, length 82 [|LLDP] 19:42:50.638574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.638578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 276d 4a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.638580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.638584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.638587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.638591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.648556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.648568 LLDP, length 82 [|LLDP] 19:42:50.648569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.648573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2774 eb9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.648575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.648579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.648582 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.648586 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.648591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.648595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.658551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.658561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.658565 LLDP, length 82 [|LLDP] 19:42:50.658567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.658571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 277c 8cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.658573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.658577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.658579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.658583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.658588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.668552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.668562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.668566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.668570 LLDP, length 82 [|LLDP] 19:42:50.668572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.668576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2784 2ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.668578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.668582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.668585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.668590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.678553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.678561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.678566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.678570 LLDP, length 82 [|LLDP] 19:42:50.678571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.678575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 278b ceff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.678577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.678582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.678585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.678589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.688552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.688560 LLDP, length 82 [|LLDP] 19:42:50.688562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.688566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2793 701f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.688568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.688572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.688575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.688579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.688583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.688588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.698554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.698563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.698567 LLDP, length 82 [|LLDP] 19:42:50.698568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.698573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 279b 113f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.698574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.698579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.698581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.698585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.698590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.708554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.708566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.708570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.708575 LLDP, length 82 [|LLDP] 19:42:50.708576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.708581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27a2 b25f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.708583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.708588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.708590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.708595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.718552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.718561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.718565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.718570 LLDP, length 82 [|LLDP] 19:42:50.718571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.718575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27aa 537f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.718577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.718581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.718584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.718588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.728552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.728561 LLDP, length 82 [|LLDP] 19:42:50.728563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.728567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27b1 f49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.728569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.728573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.728576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.728580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.728584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.728589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.738553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.738562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.738566 LLDP, length 82 [|LLDP] 19:42:50.738567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.738572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27b9 95bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.738573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.738578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.738580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.738584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.738589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.748552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.748561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.748565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.748569 LLDP, length 82 [|LLDP] 19:42:50.748571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.748575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27c1 36df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.748577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.748581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.748583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.748588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.758552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.758561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.758565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.758569 LLDP, length 82 [|LLDP] 19:42:50.758571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.758575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27c8 d7ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.758577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.758581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.758584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.758588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.768555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.768565 LLDP, length 82 [|LLDP] 19:42:50.768566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.768571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27d0 791f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.768573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.768577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.768580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.768584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.768588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.768593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.778559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.778571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.778576 LLDP, length 82 [|LLDP] 19:42:50.778577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.778582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27d8 1a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.778583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.778588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.778590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.778594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.778599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.788557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.788567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.788572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.788576 LLDP, length 82 [|LLDP] 19:42:50.788578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.788582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27df bb5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.788584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.788588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.788590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.788595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.798556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.798565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.798570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.798574 LLDP, length 82 [|LLDP] 19:42:50.798576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.798580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27e7 5c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.798582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.798586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.798589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.798593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.808557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.808568 LLDP, length 82 [|LLDP] 19:42:50.808570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.808574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27ee fd9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.808576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.808580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.808583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.808587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.808591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.808596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.818555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.818564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.818569 LLDP, length 82 [|LLDP] 19:42:50.818570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.818574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27f6 9ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.818576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.818580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.818583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.818587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.818592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.828553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.828562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.828567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.828571 LLDP, length 82 [|LLDP] 19:42:50.828572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.828577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27fe 3fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.828578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.828583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.828586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.828590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.838552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.838566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.838571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.838576 LLDP, length 82 [|LLDP] 19:42:50.838577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.838581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2805 e0ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.838583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.838588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.838590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.838595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.848553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.848562 LLDP, length 82 [|LLDP] 19:42:50.848563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.848568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 280d 821f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.848570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.848574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.848576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.848580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.848585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.848589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.858554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.858563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.858567 LLDP, length 82 [|LLDP] 19:42:50.858569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.858573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2815 233f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.858575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.858579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.858581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.858585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.858590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.868555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.868564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.868568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.868572 LLDP, length 82 [|LLDP] 19:42:50.868574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.868578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 281c c45f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.868580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.868584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.868586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.868591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.878558 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.878567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.878572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.878576 LLDP, length 82 [|LLDP] 19:42:50.878577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.878582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2824 657f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.878584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.878588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.878590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.878595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.888555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.888564 LLDP, length 82 [|LLDP] 19:42:50.888566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.888570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 282c 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.888572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.888576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.888578 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.888583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.888587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.888591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.898552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.898560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.898565 LLDP, length 82 [|LLDP] 19:42:50.898566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.898570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2833 a7bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.898572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.898577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.898579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.898583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.898588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.908555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.908565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.908569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.908574 LLDP, length 82 [|LLDP] 19:42:50.908575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.908579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 283b 48df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.908581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.908585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.908588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.908592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.918559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.918568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.918573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.918577 LLDP, length 82 [|LLDP] 19:42:50.918579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.918583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2842 e9ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.918585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.918589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.918592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.918597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.928557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.928566 LLDP, length 82 [|LLDP] 19:42:50.928567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.928572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 284a 8b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.928574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.928578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.928580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.928585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.928589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.928594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.938596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.938617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.938622 LLDP, length 82 [|LLDP] 19:42:50.938624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.938629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2852 2c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.938631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.938635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.938638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.938643 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.938648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.948579 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.948600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.948605 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.948610 LLDP, length 82 [|LLDP] 19:42:50.948611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.948616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2859 cd5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.948618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.948623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.948626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.948631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.958563 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.958575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.958579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.958584 LLDP, length 82 [|LLDP] 19:42:50.958585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.958590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2861 6e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.958592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.958596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.958599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.958603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.968557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.968572 LLDP, length 82 [|LLDP] 19:42:50.968574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.968579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2869 0f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.968581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.968585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.968588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.968592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.968596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.968601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.978561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.978571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.978576 LLDP, length 82 [|LLDP] 19:42:50.978577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.978582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2870 b0bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.978583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.978588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.978590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.978594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.978599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.988560 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.988570 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.988574 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.988578 LLDP, length 82 [|LLDP] 19:42:50.988580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.988584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2878 51df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.988586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.988590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.988593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.988597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.998557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.998565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.998570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.998574 LLDP, length 82 [|LLDP] 19:42:50.998576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.998580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 287f f2ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.998582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.998586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.998588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.998593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.008555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.008564 LLDP, length 82 [|LLDP] 19:42:51.008566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.008570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2887 941f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.008572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.008576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.008578 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.008583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.008587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.008592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.018565 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.018577 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.018582 LLDP, length 82 [|LLDP] 19:42:51.018583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.018588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 288f 353f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.018590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.018594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.018597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.018601 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.018605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.028559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.028568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.028573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.028577 LLDP, length 82 [|LLDP] 19:42:51.028579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.028583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2896 d65f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.028585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.028589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.028592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.028596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.038559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.038568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.038572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.038577 LLDP, length 82 [|LLDP] 19:42:51.038578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.038583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 289e 777f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.038585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.038589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.038591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.038596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.048557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.048566 LLDP, length 82 [|LLDP] 19:42:51.048567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.048572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28a6 189f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.048574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.048578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.048580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.048584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.048594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.048599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.058561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.058570 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.058575 LLDP, length 82 [|LLDP] 19:42:51.058576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.058580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28ad b9bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.058582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.058586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.058589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.058593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.058598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.068557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.068566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.068571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.068575 LLDP, length 82 [|LLDP] 19:42:51.068577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.068581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28b5 5adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.068582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.068587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.068589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.068593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.078556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.078565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.078569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.078574 LLDP, length 82 [|LLDP] 19:42:51.078575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.078579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28bc fbff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.078581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.078585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.078588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.078592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.088559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.088568 LLDP, length 82 [|LLDP] 19:42:51.088570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.088575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28c4 9d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.088577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.088581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.088584 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.088588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.088593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.088597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.098561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.098569 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.098574 LLDP, length 82 [|LLDP] 19:42:51.098575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.098579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28cc 3e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.098581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.098585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.098588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.098592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.098597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.108559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.108567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.108572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.108576 LLDP, length 82 [|LLDP] 19:42:51.108577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.108582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28d3 df5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.108584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.108588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.108590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.108595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.118572 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.118583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.118588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.118592 LLDP, length 82 [|LLDP] 19:42:51.118593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.118598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28db 807f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.118600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.118604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.118607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.118612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.128569 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.128582 LLDP, length 82 [|LLDP] 19:42:51.128584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.128589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28e3 219f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.128591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.128595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.128598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.128602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.128607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.128611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.138576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.138593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.138598 LLDP, length 82 [|LLDP] 19:42:51.138599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.138604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28ea c2bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.138606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.138610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.138613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.138618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.138622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.148593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.148618 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.148623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.148627 LLDP, length 82 [|LLDP] 19:42:51.148629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.148634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28f2 63df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.148636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.148641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.148644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.148649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.158605 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.158636 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.158641 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.158646 LLDP, length 82 [|LLDP] 19:42:51.158648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.158653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28fa 04ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.158656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.158660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.158663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.158668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.168589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.168610 LLDP, length 82 [|LLDP] 19:42:51.168612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.168617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2901 a61f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.168619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.168624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.168627 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.168632 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.168636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.168641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.178577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.178595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.178599 LLDP, length 82 [|LLDP] 19:42:51.178601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.178605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2909 473f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.178607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.178611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.178614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.178618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.178623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.188578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.188595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.188600 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.188604 LLDP, length 82 [|LLDP] 19:42:51.188606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.188610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2910 e85f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.188612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.188617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.188619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.188624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.198573 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.198589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.198594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.198598 LLDP, length 82 [|LLDP] 19:42:51.198600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.198604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2918 897f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.198606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.198610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.198613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.198618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.208615 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.208646 LLDP, length 82 [|LLDP] 19:42:51.208648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.208653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2920 2a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.208656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.208661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.208664 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.208669 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.208674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.208679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.218613 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.218645 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.218650 LLDP, length 82 [|LLDP] 19:42:51.218653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.218658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2927 cbbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.218660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.218664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.218668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.218672 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.218677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.228607 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.228637 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.228643 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.228647 LLDP, length 82 [|LLDP] 19:42:51.228649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.228654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 292f 6cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.228656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.228661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.228665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.228670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.238596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.238624 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.238629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.238634 LLDP, length 82 [|LLDP] 19:42:51.238636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.238640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2937 0dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.238643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.238647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.238651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.238656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.248614 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.248649 LLDP, length 82 [|LLDP] 19:42:51.248651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.248656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 293e af1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.248659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.248663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.248667 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.248672 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.248678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.248683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.258626 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.258658 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.258663 LLDP, length 82 [|LLDP] 19:42:51.258665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.258670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2946 503f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.258672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.258677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.258681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.258686 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.258691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.268603 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.268635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.268640 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.268645 LLDP, length 82 [|LLDP] 19:42:51.268647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.268651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 294d f15f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.268654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.268659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.268663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.268668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.278610 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.278641 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.278646 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.278651 LLDP, length 82 [|LLDP] 19:42:51.278653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.278657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2955 927f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.278660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.278665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.278668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.278673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.288587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.288608 LLDP, length 82 [|LLDP] 19:42:51.288610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.288615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 295d 339f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.288617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.288622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.288625 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.288629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.288633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.288638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.298580 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.298598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.298602 LLDP, length 82 [|LLDP] 19:42:51.298604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.298608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2964 d4bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.298610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.298614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.298617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.298622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.298626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.308578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.308595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.308599 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.308604 LLDP, length 82 [|LLDP] 19:42:51.308606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.308610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 296c 75df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.308612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.308616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.308620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.308625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.318577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.318593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.318597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.318602 LLDP, length 82 [|LLDP] 19:42:51.318603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.318608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2974 16ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.318610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.318614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.318617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.318622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.328575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.328592 LLDP, length 82 [|LLDP] 19:42:51.328593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.328598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 297b b81f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.328600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.328604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.328607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.328611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.328615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.328620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.341771 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.341788 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.341792 LLDP, length 82 [|LLDP] 19:42:51.341794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.341798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2983 593f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.341800 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.341804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.341807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.341812 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.341817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.348574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.348590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.348595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.348599 LLDP, length 82 [|LLDP] 19:42:51.348601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.348606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 298a fa5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.348608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.348612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.348615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.348619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.358575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.358590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.358595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.358599 LLDP, length 82 [|LLDP] 19:42:51.358601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.358605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2992 9b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.358607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.358612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.358614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.358619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.368575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.368590 LLDP, length 82 [|LLDP] 19:42:51.368592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.368596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 299a 3c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.368598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.368602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.368605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.368610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.368614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.368618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.378574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.378587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.378591 LLDP, length 82 [|LLDP] 19:42:51.378593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.378597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29a1 ddbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.378599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.378604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.378607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.378611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.378616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.388577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.388593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.388598 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.388602 LLDP, length 82 [|LLDP] 19:42:51.388604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.388608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29a9 7edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.388610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.388615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.388618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.388622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.402435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.402450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.402454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.402459 LLDP, length 82 [|LLDP] 19:42:51.402460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.402465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29b1 1fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.402467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.402471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.402474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.402479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.408574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.408587 LLDP, length 82 [|LLDP] 19:42:51.408589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.408594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29b8 c11f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.408596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.408600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.408603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.408607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.408612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.408616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.418571 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.418584 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.418589 LLDP, length 82 [|LLDP] 19:42:51.418591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.418595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29c0 623f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.418597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.418601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.418604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.418608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.418613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.428575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.428592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.428596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.428601 LLDP, length 82 [|LLDP] 19:42:51.428602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.428607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29c8 035f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.428609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.428613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.428616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.428620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.438576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.438592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.438596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.438600 LLDP, length 82 [|LLDP] 19:42:51.438602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.438607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29cf a47f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.438609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.438613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.438616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.438622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.448575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.448590 LLDP, length 82 [|LLDP] 19:42:51.448591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.448595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29d7 459f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.448598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.448602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.448605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.448609 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.448614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.448618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.458575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.458589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.458594 LLDP, length 82 [|LLDP] 19:42:51.458595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.458600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29de e6bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.458602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.458606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.458609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.458613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.458618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.468575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.468589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.468594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.468598 LLDP, length 82 [|LLDP] 19:42:51.468599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.468604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29e6 87df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.468606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.468610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.468613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.468617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.478570 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.478585 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.478589 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.478593 LLDP, length 82 [|LLDP] 19:42:51.478595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.478600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29ee 28ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.478602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.478606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.478608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.478613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.488572 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.488587 LLDP, length 82 [|LLDP] 19:42:51.488588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.488593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29f5 ca1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.488595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.488599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.488602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.488606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.488610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.488615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.498574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.498589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.498594 LLDP, length 82 [|LLDP] 19:42:51.498595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.498600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29fd 6b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.498601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.498605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.498608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.498612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.498617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.508574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.508589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.508593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.508598 LLDP, length 82 [|LLDP] 19:42:51.508599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.508603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a05 0c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.508605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.508609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.508612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.508616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.518574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.518589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.518593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.518597 LLDP, length 82 [|LLDP] 19:42:51.518599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.518604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a0c ad7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.518606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.518610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.518613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.518617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.528574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.528588 LLDP, length 82 [|LLDP] 19:42:51.528589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.528594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a14 4e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.528596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.528600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.528603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.528607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.528612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.528616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.538574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.538588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.538593 LLDP, length 82 [|LLDP] 19:42:51.538594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.538599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a1b efbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.538600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.538605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.538607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.538612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.538616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.548572 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.548586 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.548591 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.548595 LLDP, length 82 [|LLDP] 19:42:51.548596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.548601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a23 90df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.548603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.548607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.548610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.548614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.558575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.558589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.558594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.558599 LLDP, length 82 [|LLDP] 19:42:51.558600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.558604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a2b 31ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.558606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.558611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.558613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.558618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.568590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.568608 LLDP, length 82 [|LLDP] 19:42:51.568609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.568614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a32 d31f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.568616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.568621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.568624 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.568628 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.568633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.568637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.578579 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.578595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.578599 LLDP, length 82 [|LLDP] 19:42:51.578601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.578605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a3a 743f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.578607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.578611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.578614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.578618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.578623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.588578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.588592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.588597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.588601 LLDP, length 82 [|LLDP] 19:42:51.588603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.588607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a42 155f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.588609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.588614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.588616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.588621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.598585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.598603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.598608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.598612 LLDP, length 82 [|LLDP] 19:42:51.598613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.598618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a49 b67f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.598620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.598624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.598627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.598632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.608585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.608600 LLDP, length 82 [|LLDP] 19:42:51.608602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.608607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a51 579f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.608609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.608613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.608616 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.608620 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.608625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.608629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.618575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.618590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.618594 LLDP, length 82 [|LLDP] 19:42:51.618596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.618600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a58 f8bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.618602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.618606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.618609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.618613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.618618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.628575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.628589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.628593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.628598 LLDP, length 82 [|LLDP] 19:42:51.628599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.628604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a60 99df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.628606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.628610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.628613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.628618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.638574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.638588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.638593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.638597 LLDP, length 82 [|LLDP] 19:42:51.638599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.638603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a68 3aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.638605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.638610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.638612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.638617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.648576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.648591 LLDP, length 82 [|LLDP] 19:42:51.648592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.648597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a6f dc1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.648599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.648604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.648606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.648611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.648615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.648619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.658575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.658590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.658594 LLDP, length 82 [|LLDP] 19:42:51.658595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.658600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a77 7d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.658602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.658606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.658609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.658613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.658618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.668578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.668592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.668596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.668601 LLDP, length 82 [|LLDP] 19:42:51.668602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.668606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a7f 1e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.668608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.668613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.668616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.668621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.678574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.678587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.678592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.678596 LLDP, length 82 [|LLDP] 19:42:51.678597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.678602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a86 bf7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.678604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.678608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.678611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.678615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.688577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.688591 LLDP, length 82 [|LLDP] 19:42:51.688592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.688597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a8e 609f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.688599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.688603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.688606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.688610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.688615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.688620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.698577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.698591 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.698596 LLDP, length 82 [|LLDP] 19:42:51.698597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.698601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a96 01bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.698603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.698608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.698610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.698615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.698619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.708578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.708592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.708596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.708600 LLDP, length 82 [|LLDP] 19:42:51.708602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.708606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a9d a2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.708608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.708612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.708615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.708620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.718575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.718589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.718593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.718598 LLDP, length 82 [|LLDP] 19:42:51.718599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.718604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2aa5 43ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.718606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.718610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.718613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.718617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.728577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.728590 LLDP, length 82 [|LLDP] 19:42:51.728591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.728596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2aac e51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.728598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.728602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.728605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.728609 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.728613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.728618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.738576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.738590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.738595 LLDP, length 82 [|LLDP] 19:42:51.738596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.738601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ab4 863f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.738603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.738607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.738610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.738614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.738619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.748575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.748590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.748594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.748599 LLDP, length 82 [|LLDP] 19:42:51.748600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.748604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2abc 275f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.748606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.748611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.748613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.748618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.758590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.758608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.758612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.758617 LLDP, length 82 [|LLDP] 19:42:51.758618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.758623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ac3 c87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.758625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.758629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.758632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.758637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.768583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.768598 LLDP, length 82 [|LLDP] 19:42:51.768600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.768605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2acb 699f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.768607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.768611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.768614 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.768618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.768623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.768627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.778581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.778595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.778600 LLDP, length 82 [|LLDP] 19:42:51.778602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.778606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ad3 0abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.778608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.778612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.778615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.778620 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.778625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.788581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.788596 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.788601 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.788605 LLDP, length 82 [|LLDP] 19:42:51.788607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.788611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ada abdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.788613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.788617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.788620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.788624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.798581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.798595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.798600 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.798604 LLDP, length 82 [|LLDP] 19:42:51.798606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.798610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ae2 4cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.798612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.798616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.798619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.798624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.808581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.808595 LLDP, length 82 [|LLDP] 19:42:51.808597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.808601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ae9 ee1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.808603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.808608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.808610 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.808615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.808619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.808624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.818582 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.818596 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.818600 LLDP, length 82 [|LLDP] 19:42:51.818602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.818607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2af1 8f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.818608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.818613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.818615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.818620 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.818624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.828584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.828598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.828603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.828608 LLDP, length 82 [|LLDP] 19:42:51.828609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.828613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2af9 305f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.828615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.828620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.828622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.828627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.838583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.838597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.838602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.838606 LLDP, length 82 [|LLDP] 19:42:51.838608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.838612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b00 d17f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.838614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.838618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.838621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.838626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.848583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.848598 LLDP, length 82 [|LLDP] 19:42:51.848599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.848604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b08 729f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.848606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.848610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.848613 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.848618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.848622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.848627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.858581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.858597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.858601 LLDP, length 82 [|LLDP] 19:42:51.858603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.858607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b10 13bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.858609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.858613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.858616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.858621 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.858625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.868584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.868598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.868603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.868607 LLDP, length 82 [|LLDP] 19:42:51.868608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.868613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b17 b4df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.868615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.868620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.868622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.868627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.878584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.878599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.878604 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.878608 LLDP, length 82 [|LLDP] 19:42:51.878609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.878614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b1f 55ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.878615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.878620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.878622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.878627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.888584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.888598 LLDP, length 82 [|LLDP] 19:42:51.888599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.888604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b26 f71f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.888606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.888610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.888613 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.888617 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.888622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.888627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.898586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.898601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.898606 LLDP, length 82 [|LLDP] 19:42:51.898607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.898612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b2e 983f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.898614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.898618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.898621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.898625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.898629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.908583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.908598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.908602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.908607 LLDP, length 82 [|LLDP] 19:42:51.908608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.908613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b36 395f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.908615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.908619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.908622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.908627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.918583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.918597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.918602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.918606 LLDP, length 82 [|LLDP] 19:42:51.918608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.918612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b3d da7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.918614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.918619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.918622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.918627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.928582 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.928596 LLDP, length 82 [|LLDP] 19:42:51.928598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.928602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b45 7b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.928604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.928609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.928611 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.928616 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.928620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.928625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.938583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.938597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.938602 LLDP, length 82 [|LLDP] 19:42:51.938604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.938608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b4d 1cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.938610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.938614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.938617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.938622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.938626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.948606 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.948621 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.948626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.948630 LLDP, length 82 [|LLDP] 19:42:51.948632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.948636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b54 bddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.948638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.948643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.948645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.948650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.958583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.958599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.958603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.958608 LLDP, length 82 [|LLDP] 19:42:51.958610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.958614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b5c 5eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.958616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.958621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.958624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.958628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.968606 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.968630 LLDP, length 82 [|LLDP] 19:42:51.968633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.968637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b64 001f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.968640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.968645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.968649 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.968653 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.968658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.968662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.978593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.978609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.978614 LLDP, length 82 [|LLDP] 19:42:51.978616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.978620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b6b a13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.978622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.978626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.978629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.978634 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.978639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.988586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.988601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.988606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.988610 LLDP, length 82 [|LLDP] 19:42:51.988612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.988616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b73 425f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.988618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.988623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.988625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.988630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.998585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.998600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.998604 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.998609 LLDP, length 82 [|LLDP] 19:42:51.998610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.998614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b7a e37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.998616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.998620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.998623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.998628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.008585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.008599 LLDP, length 82 [|LLDP] 19:42:52.008601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.008605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b82 849f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.008607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.008612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.008615 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.008619 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.008623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.008628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.018587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.018601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.018606 LLDP, length 82 [|LLDP] 19:42:52.018607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.018612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b8a 25bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.018613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.018618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.018620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.018625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.018629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.028587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.028602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.028607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.028611 LLDP, length 82 [|LLDP] 19:42:52.028612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.028617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b91 c6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.028618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.028623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.028625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.028630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.038584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.038599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.038603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.038608 LLDP, length 82 [|LLDP] 19:42:52.038609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.038614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b99 67ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.038616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.038621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.038623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.038628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.048589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.048603 LLDP, length 82 [|LLDP] 19:42:52.048605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.048609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ba1 091f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.048611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.048616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.048619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.048623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.048627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.048632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.058584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.058600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.058604 LLDP, length 82 [|LLDP] 19:42:52.058606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.058610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ba8 aa3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.058612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.058617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.058620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.058624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.058629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.068584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.068599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.068604 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.068609 LLDP, length 82 [|LLDP] 19:42:52.068610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.068615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bb0 4b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.068617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.068621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.068624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.068629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.078587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.078602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.078606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.078611 LLDP, length 82 [|LLDP] 19:42:52.078613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.078617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bb7 ec7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.078619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.078624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.078627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.078631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.088587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.088604 LLDP, length 82 [|LLDP] 19:42:52.088605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.088610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bbf 8d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.088612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.088616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.088619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.088623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.088628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.088632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.098590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.098606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.098610 LLDP, length 82 [|LLDP] 19:42:52.098612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.098617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bc7 2ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.098619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.098623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.098626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.098630 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.098635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.108586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.108601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.108606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.108611 LLDP, length 82 [|LLDP] 19:42:52.108612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.108616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bce cfdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.108618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.108622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.108626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.108630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.118588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.118602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.118607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.118611 LLDP, length 82 [|LLDP] 19:42:52.118613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.118618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bd6 70ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.118620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.118624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.118626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.118631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.128584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.128599 LLDP, length 82 [|LLDP] 19:42:52.128601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.128605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bde 121f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.128607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.128611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.128614 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.128618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.128623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.128627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.138587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.138601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.138606 LLDP, length 82 [|LLDP] 19:42:52.138607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.138611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2be5 b33f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.138613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.138618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.138620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.138625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.138630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.148590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.148605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.148610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.148614 LLDP, length 82 [|LLDP] 19:42:52.148616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.148620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bed 545f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.148622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.148626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.148629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.148634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.158611 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.158635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.158640 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.158645 LLDP, length 82 [|LLDP] 19:42:52.158647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.158652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bf4 f57f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.158654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.158658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.158661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.158666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.168593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.168609 LLDP, length 82 [|LLDP] 19:42:52.168611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.168615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bfc 969f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.168618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.168622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.168625 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.168629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.168634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.168639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.178592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.178606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.178611 LLDP, length 82 [|LLDP] 19:42:52.178613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.178617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c04 37bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.178619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.178623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.178626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.178631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.178635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.188605 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.188635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.188640 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.188644 LLDP, length 82 [|LLDP] 19:42:52.188647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.188651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c0b d8df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.188654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.188658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.188661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.188666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.198601 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.198619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.198624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.198629 LLDP, length 82 [|LLDP] 19:42:52.198630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.198635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c13 79ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.198636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.198641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.198643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.198648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.208591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.208606 LLDP, length 82 [|LLDP] 19:42:52.208608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.208612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c1b 1b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.208614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.208619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.208622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.208626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.208631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.208635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.218589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.218605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.218609 LLDP, length 82 [|LLDP] 19:42:52.218611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.218615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c22 bc3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.218617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.218622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.218625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.218629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.218634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.228594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.228611 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.228616 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.228620 LLDP, length 82 [|LLDP] 19:42:52.228622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.228626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c2a 5d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.228629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.228633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.228636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.228640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.238592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.238608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.238613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.238617 LLDP, length 82 [|LLDP] 19:42:52.238618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.238623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c31 fe7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.238625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.238629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.238632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.238637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.248589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.248603 LLDP, length 82 [|LLDP] 19:42:52.248605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.248609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c39 9f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.248612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.248616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.248619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.248623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.248628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.248632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.258591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.258608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.258613 LLDP, length 82 [|LLDP] 19:42:52.258615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.258620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c41 40bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.258621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.258626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.258629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.258633 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.258638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.268587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.268601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.268606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.268610 LLDP, length 82 [|LLDP] 19:42:52.268612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.268616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c48 e1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.268618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.268623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.268625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.268630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.278611 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.278640 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.278645 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.278649 LLDP, length 82 [|LLDP] 19:42:52.278652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.278656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c50 82ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.278659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.278664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.278667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.278672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.288633 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.288664 LLDP, length 82 [|LLDP] 19:42:52.288666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.288671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c58 241f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.288674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.288679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.288683 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.288687 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.288692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.288697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.298612 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.298635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.298639 LLDP, length 82 [|LLDP] 19:42:52.298641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.298646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c5f c53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.298648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.298652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.298655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.298660 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.298665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.308589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.308604 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.308609 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.308613 LLDP, length 82 [|LLDP] 19:42:52.308615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.308619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c67 665f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.308621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.308626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.308628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.308633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.318591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.318606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.318610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.318614 LLDP, length 82 [|LLDP] 19:42:52.318616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.318620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c6f 077f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.318622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.318627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.318629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.318634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.328587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.328601 LLDP, length 82 [|LLDP] 19:42:52.328603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.328607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c76 a89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.328609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.328614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.328617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.328621 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.328626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.328630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.338585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.338599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.338603 LLDP, length 82 [|LLDP] 19:42:52.338605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.338609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c7e 49bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.338611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.338615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.338618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.338622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.338627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.348589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.348603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.348608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.348612 LLDP, length 82 [|LLDP] 19:42:52.348614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.348618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c85 eadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.348620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.348625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.348628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.348632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.358588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.358601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.358606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.358610 LLDP, length 82 [|LLDP] 19:42:52.358612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.358616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c8d 8bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.358618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.358622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.358625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.358629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.368588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.368602 LLDP, length 82 [|LLDP] 19:42:52.368603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.368608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c95 2d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.368610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.368614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.368617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.368621 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.368625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.368630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.378586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.378601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.378605 LLDP, length 82 [|LLDP] 19:42:52.378607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.378611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c9c ce3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.378613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.378617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.378620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.378625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.378629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.388588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.388602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.388607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.388611 LLDP, length 82 [|LLDP] 19:42:52.388612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.388616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ca4 6f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.388619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.388623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.388626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.388630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.398587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.398601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.398605 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.398610 LLDP, length 82 [|LLDP] 19:42:52.398611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.398616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cac 107f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.398617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.398622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.398624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.398629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.408589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.408602 LLDP, length 82 [|LLDP] 19:42:52.408604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.408608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cb3 b19f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.408610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.408615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.408617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.408622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.408626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.408631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.418586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.418601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.418605 LLDP, length 82 [|LLDP] 19:42:52.418607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.418611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cbb 52bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.418613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.418617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.418620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.418624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.418629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.428588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.428601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.428606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.428610 LLDP, length 82 [|LLDP] 19:42:52.428611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.428616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cc2 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.428618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.428622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.428624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.428629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.438589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.438603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.438608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.438612 LLDP, length 82 [|LLDP] 19:42:52.438613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.438618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cca 94ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.438620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.438624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.438627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.438632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.448591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.448604 LLDP, length 82 [|LLDP] 19:42:52.448606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.448610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cd2 361f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.448612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.448617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.448619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.448623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.448628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.448632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.458588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.458601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.458606 LLDP, length 82 [|LLDP] 19:42:52.458607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.458612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cd9 d73f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.458613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.458618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.458620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.458624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.458629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.468589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.468603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.468608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.468612 LLDP, length 82 [|LLDP] 19:42:52.468614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.468618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ce1 785f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.468620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.468624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.468627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.468632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.478590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.478603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.478607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.478612 LLDP, length 82 [|LLDP] 19:42:52.478613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.478618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ce9 197f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.478620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.478624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.478627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.478631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.488587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.488601 LLDP, length 82 [|LLDP] 19:42:52.488603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.488608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cf0 ba9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.488610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.488615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.488617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.488622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.488627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.488632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.498589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.498603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.498607 LLDP, length 82 [|LLDP] 19:42:52.498608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.498613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cf8 5bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.498615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.498619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.498622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.498626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.498630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.508596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.508609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.508614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.508618 LLDP, length 82 [|LLDP] 19:42:52.508620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.508624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cff fcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.508626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.508630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.508633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.508637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.518593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.518611 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.518616 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.518620 LLDP, length 82 [|LLDP] 19:42:52.518622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.518626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d07 9dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.518628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.518633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.518636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.518641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.528590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.528604 LLDP, length 82 [|LLDP] 19:42:52.528606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.528610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d0f 3f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.528612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.528617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.528619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.528623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.528628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.528633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.538589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.538603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.538607 LLDP, length 82 [|LLDP] 19:42:52.538609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.538613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d16 e03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.538615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.538619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.538622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.538626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.538631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.548589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.548602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.548607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.548611 LLDP, length 82 [|LLDP] 19:42:52.548612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.548617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d1e 815f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.548619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.548623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.548626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.548630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.558595 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.558609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.558614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.558618 LLDP, length 82 [|LLDP] 19:42:52.558620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.558624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d26 227f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.558626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.558630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.558633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.558637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.568592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.568605 LLDP, length 82 [|LLDP] 19:42:52.568607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.568612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d2d c39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.568613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.568618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.568620 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.568624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.568628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.568633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.578588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.578603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.578607 LLDP, length 82 [|LLDP] 19:42:52.578609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.578613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d35 64bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.578615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.578619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.578622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.578627 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.578632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.588591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.588605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.588610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.588614 LLDP, length 82 [|LLDP] 19:42:52.588616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.588620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d3d 05df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.588622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.588626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.588630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.588634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.598607 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.598624 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.598629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.598634 LLDP, length 82 [|LLDP] 19:42:52.598635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.598640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d44 a6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.598642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.598646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.598649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.598654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.608598 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.608615 LLDP, length 82 [|LLDP] 19:42:52.608616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.608621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d4c 481f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.608623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.608628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.608631 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.608635 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.608640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.608645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.618594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.618609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.618614 LLDP, length 82 [|LLDP] 19:42:52.618615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.618620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d53 e93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.618621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.618626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.618629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.618633 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.618638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.628593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.628606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.628611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.628615 LLDP, length 82 [|LLDP] 19:42:52.628616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.628621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d5b 8a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.628623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.628627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.628630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.628634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.638592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.638607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.638611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.638616 LLDP, length 82 [|LLDP] 19:42:52.638617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.638621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d63 2b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.638623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.638628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.638630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.638635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.648590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.648604 LLDP, length 82 [|LLDP] 19:42:52.648605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.648610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d6a cc9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.648612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.648617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.648619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.648624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.648628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.648632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.658593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.658606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.658610 LLDP, length 82 [|LLDP] 19:42:52.658612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.658616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d72 6dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.658618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.658622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.658625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.658629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.658634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.668590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.668603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.668608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.668612 LLDP, length 82 [|LLDP] 19:42:52.668614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.668618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d7a 0edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.668620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.668625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.668627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.668632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.678593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.678607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.678612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.678616 LLDP, length 82 [|LLDP] 19:42:52.678617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.678622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d81 afff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.678624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.678628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.678630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.678635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.688593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.688607 LLDP, length 82 [|LLDP] 19:42:52.688609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.688613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d89 511f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.688615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.688619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.688622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.688626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.688630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.688635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.698590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.698604 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.698609 LLDP, length 82 [|LLDP] 19:42:52.698610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.698615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d90 f23f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.698616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.698620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.698623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.698627 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.698632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.708592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.708607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.708611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.708615 LLDP, length 82 [|LLDP] 19:42:52.708617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.708621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d98 935f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.708623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.708627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.708630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.708635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.718594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.718608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.718613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.718617 LLDP, length 82 [|LLDP] 19:42:52.718618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.718623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2da0 347f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.718625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.718629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.718632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.718637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.728591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.728605 LLDP, length 82 [|LLDP] 19:42:52.728607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.728611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2da7 d59f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.728613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.728618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.728620 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.728625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.728629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.728634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.738594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.738607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.738612 LLDP, length 82 [|LLDP] 19:42:52.738613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.738618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2daf 76bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.738620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.738624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.738626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.738631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.738635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.748593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.748607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.748612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.748616 LLDP, length 82 [|LLDP] 19:42:52.748618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.748622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2db7 17df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.748624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.748628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.748631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.748636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.758592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.758606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.758611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.758615 LLDP, length 82 [|LLDP] 19:42:52.758617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.758621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dbe b8ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.758623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.758627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.758630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.758635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.768591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.768605 LLDP, length 82 [|LLDP] 19:42:52.768606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.768611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dc6 5a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.768613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.768617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.768620 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.768624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.768628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.768633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.778593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.778607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.778612 LLDP, length 82 [|LLDP] 19:42:52.778614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.778618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dcd fb3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.778620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.778624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.778627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.778631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.778636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.788592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.788606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.788611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.788615 LLDP, length 82 [|LLDP] 19:42:52.788617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.788621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dd5 9c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.788623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.788627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.788630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.788635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.801549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.801562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.801566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.801571 LLDP, length 82 [|LLDP] 19:42:52.801572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.801577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ddd 3d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.801579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.801583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.801586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.801590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.808596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.808610 LLDP, length 82 [|LLDP] 19:42:52.808612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.808616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2de4 de9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.808618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.808622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.808625 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.808630 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.808634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.808638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.818593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.818607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.818612 LLDP, length 82 [|LLDP] 19:42:52.818613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.818618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dec 7fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.818620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.818624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.818626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.818631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.818635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.828593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.828607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.828611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.828616 LLDP, length 82 [|LLDP] 19:42:52.828617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.828621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2df4 20df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.828623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.828627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.828630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.828635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.838594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.838608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.838613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.838617 LLDP, length 82 [|LLDP] 19:42:52.838618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.838623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dfb c1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.838625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.838629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.838631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.838636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.848593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.848607 LLDP, length 82 [|LLDP] 19:42:52.848609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.848613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e03 631f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.848615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.848619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.848622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.848626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.848631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.848635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.862160 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.862174 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.862178 LLDP, length 82 [|LLDP] 19:42:52.862180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.862184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e0b 043f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.862186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.862190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.862193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.862198 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.862202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.868594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.868607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.868612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.868616 LLDP, length 82 [|LLDP] 19:42:52.868618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.868622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e12 a55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.868624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.868628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.868631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.868635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.878595 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.878608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.878613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.878617 LLDP, length 82 [|LLDP] 19:42:52.878618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.878623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e1a 467f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.878625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.878629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.878632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.878636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.888593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.888607 LLDP, length 82 [|LLDP] 19:42:52.888608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.888613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e21 e79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.888615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.888619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.888622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.888626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.888631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.888635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.898594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.898607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.898612 LLDP, length 82 [|LLDP] 19:42:52.898613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.898618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e29 88bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.898620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.898624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.898626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.898631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.898635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 10152 packets captured 10162 packets received by filter 0 packets dropped by kernel 1018 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 19:42:42.758455 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.758477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.758482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.758487 LLDP, length 82 [|LLDP] 19:42:42.758489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.758494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff1 53ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.758496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.758501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.758504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.758510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.768448 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.768465 LLDP, length 82 [|LLDP] 19:42:42.768467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.768472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff8 f51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.768474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.768478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.768481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.768485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.768489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.768494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.778443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.778459 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.778464 LLDP, length 82 [|LLDP] 19:42:42.778465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.778470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 963f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.778472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.778476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.778479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.778483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.778488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.788437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.788451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.788455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.788460 LLDP, length 82 [|LLDP] 19:42:42.788461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.788466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1008 375f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.788468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.788472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.788475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.788479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.798435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.798449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.798453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.798458 LLDP, length 82 [|LLDP] 19:42:42.798459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.798463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f d87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.798465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.798469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.798472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.798477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.808437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.808451 LLDP, length 82 [|LLDP] 19:42:42.808452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.808456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 799f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.808458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.808463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.808465 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.808470 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.808474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.808478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.818435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.818448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.818453 LLDP, length 82 [|LLDP] 19:42:42.818454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.818458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101f 1abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.818460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.818465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.818467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.818471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.818476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.828435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.828449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.828453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.828457 LLDP, length 82 [|LLDP] 19:42:42.828459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.828463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 bbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.828465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.828469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.828472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.828477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.838438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.838452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.838456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.838461 LLDP, length 82 [|LLDP] 19:42:42.838462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.838467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102e 5cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.838469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.838473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.838475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.838480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.848438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.848452 LLDP, length 82 [|LLDP] 19:42:42.848453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.848458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1035 fe1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.848460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.848464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.848466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.848471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.848475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.848479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.858437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.858450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.858455 LLDP, length 82 [|LLDP] 19:42:42.858456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.858461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 9f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.858463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.858467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.858470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.858474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.858479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.868434 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.868448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.868453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.868457 LLDP, length 82 [|LLDP] 19:42:42.868458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.868463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1045 405f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.868465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.868469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.868471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.868476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.878435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.878450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.878455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.878459 LLDP, length 82 [|LLDP] 19:42:42.878461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.878466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104c e17f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.878468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.878472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.878475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.878479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.888436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.888450 LLDP, length 82 [|LLDP] 19:42:42.888452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.888456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 829f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.888458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.888462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.888465 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.888469 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.888473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.888478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.898436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.898450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.898454 LLDP, length 82 [|LLDP] 19:42:42.898456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.898460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105c 23bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.898462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.898466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.898469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.898473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.898477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.908439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.908452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.908457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.908461 LLDP, length 82 [|LLDP] 19:42:42.908462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.908467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 c4df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.908468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.908472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.908475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.908480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.918437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.918450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.918455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.918459 LLDP, length 82 [|LLDP] 19:42:42.918461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.918465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 65ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.918467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.918471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.918474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.918479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.928437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.928452 LLDP, length 82 [|LLDP] 19:42:42.928453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.928458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1073 071f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.928460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.928464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.928467 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.928471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.928475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.928480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.938436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.938449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.938454 LLDP, length 82 [|LLDP] 19:42:42.938455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.938460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a a83f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.938462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.938466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.938469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.938473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.938478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.948438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.948451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.948456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.948461 LLDP, length 82 [|LLDP] 19:42:42.948462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.948467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1082 495f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.948469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.948473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.948475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.948480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.958439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.958453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.958458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.958462 LLDP, length 82 [|LLDP] 19:42:42.958463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.958468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1089 ea7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.958470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.958474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.958477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.958482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.968439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.968454 LLDP, length 82 [|LLDP] 19:42:42.968455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.968460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 8b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.968462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.968466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.968469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.968473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.968477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.968482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.978440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.978454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.978458 LLDP, length 82 [|LLDP] 19:42:42.978460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.978464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1099 2cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.978466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.978470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.978473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.978477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.978482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.988435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.988449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.988453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.988458 LLDP, length 82 [|LLDP] 19:42:42.988459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.988463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a0 cddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.988465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.988469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.988472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.988477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:42.998436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.998452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:42.998456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:42.998461 LLDP, length 82 [|LLDP] 19:42:42.998462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:42.998467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 6eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:42.998469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:42.998473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:42.998476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:42.998480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.008439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.008453 LLDP, length 82 [|LLDP] 19:42:43.008455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.008459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b0 101f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.008461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.008465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.008468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.008472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.008476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.008481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.018436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.018450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.018454 LLDP, length 82 [|LLDP] 19:42:43.018456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.018460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 b13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.018462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.018467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.018469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.018474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.018478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.028440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.028454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.028458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.028462 LLDP, length 82 [|LLDP] 19:42:43.028464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.028468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bf 525f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.028470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.028475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.028477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.028482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.038437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.038452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.038456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.038460 LLDP, length 82 [|LLDP] 19:42:43.038462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.038466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c6 f37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.038468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.038472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.038475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.038480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.048437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.048451 LLDP, length 82 [|LLDP] 19:42:43.048453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.048458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 949f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.048460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.048464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.048466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.048471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.048475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.048480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.058447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.058469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.058474 LLDP, length 82 [|LLDP] 19:42:43.058475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.058480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d6 35bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.058482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.058486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.058489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.058493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.058498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.068442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.068457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.068462 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.068466 LLDP, length 82 [|LLDP] 19:42:43.068467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.068472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dd d6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.068474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.068478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.068481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.068486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.078441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.078456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.078460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.078465 LLDP, length 82 [|LLDP] 19:42:43.078466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.078470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 77ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.078473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.078477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.078480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.078485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.088445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.088462 LLDP, length 82 [|LLDP] 19:42:43.088464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.088468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ed 191f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.088471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.088475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.088478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.088482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.088486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.088492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.098448 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.098467 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.098472 LLDP, length 82 [|LLDP] 19:42:43.098473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.098478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f4 ba3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.098480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.098484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.098487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.098492 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.098496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.108438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.108452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.108456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.108460 LLDP, length 82 [|LLDP] 19:42:43.108462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.108466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 5b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.108468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.108472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.108475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.108480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.118436 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.118447 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.118451 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.118456 LLDP, length 82 [|LLDP] 19:42:43.118457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.118462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 fc7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.118464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.118468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.118471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.118475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.128446 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.128464 LLDP, length 82 [|LLDP] 19:42:43.128466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.128471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 9d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.128473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.128477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.128479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.128484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.128488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.128493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.138441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.138457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.138461 LLDP, length 82 [|LLDP] 19:42:43.138463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.138467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1113 3ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.138469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.138474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.138476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.138481 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.138485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.148438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.148452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.148456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.148461 LLDP, length 82 [|LLDP] 19:42:43.148462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.148466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111a dfdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.148468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.148472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.148475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.148479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.158444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.158460 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.158464 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.158469 LLDP, length 82 [|LLDP] 19:42:43.158470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.158480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 80ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.158483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.158487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.158490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.158494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.168449 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.168463 LLDP, length 82 [|LLDP] 19:42:43.168464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.168469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112a 221f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.168471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.168475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.168478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.168482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.168486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.168491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.178439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.178452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.178456 LLDP, length 82 [|LLDP] 19:42:43.178457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.178462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1131 c33f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.178464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.178468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.178471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.178475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.178480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.188437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.188450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.188454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.188459 LLDP, length 82 [|LLDP] 19:42:43.188460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.188465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 645f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.188467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.188471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.188473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.188478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.198458 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.198482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.198487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.198491 LLDP, length 82 [|LLDP] 19:42:43.198493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.198497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1141 057f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.198500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.198504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.198508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.198512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.208442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.208456 LLDP, length 82 [|LLDP] 19:42:43.208457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.208461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1148 a69f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.208463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.208467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.208470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.208475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.208479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.208483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.218440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.218452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.218456 LLDP, length 82 [|LLDP] 19:42:43.218458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.218462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 47bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.218464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.218468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.218471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.218475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.218480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.228437 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.228448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.228453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.228457 LLDP, length 82 [|LLDP] 19:42:43.228459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.228463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 e8df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.228465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.228469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.228471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.228476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.238438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.238449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.238453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.238457 LLDP, length 82 [|LLDP] 19:42:43.238459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.238463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 89ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.238465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.238469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.238472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.238477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.248439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.248451 LLDP, length 82 [|LLDP] 19:42:43.248453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.248457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1167 2b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.248459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.248463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.248466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.248470 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.248474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.248479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.258438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.258449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.258454 LLDP, length 82 [|LLDP] 19:42:43.258455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.258459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116e cc3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.258461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.258466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.258468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.258473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.258477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.268439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.268451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.268455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.268459 LLDP, length 82 [|LLDP] 19:42:43.268461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.268465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 6d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.268467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.268471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.268473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.268478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.278462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.278480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.278485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.278490 LLDP, length 82 [|LLDP] 19:42:43.278491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.278496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117e 0e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.278498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.278502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.278505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.278511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.288450 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.288465 LLDP, length 82 [|LLDP] 19:42:43.288466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.288471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1185 af9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.288473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.288477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.288480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.288484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.288489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.288493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.298441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.298453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.298458 LLDP, length 82 [|LLDP] 19:42:43.298459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.298464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 50bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.298466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.298470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.298473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.298477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.298481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.308444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.308457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.308462 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.308466 LLDP, length 82 [|LLDP] 19:42:43.308467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.308472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 f1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.308474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.308478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.308480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.308485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.318439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.318451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.318455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.318459 LLDP, length 82 [|LLDP] 19:42:43.318461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.318465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119c 92ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.318467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.318471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.318473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.318478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.328442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.328453 LLDP, length 82 [|LLDP] 19:42:43.328455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.328459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a4 341f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.328461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.328465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.328468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.328472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.328476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.328480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.338441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.338453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.338457 LLDP, length 82 [|LLDP] 19:42:43.338459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.338463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ab d53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.338465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.338469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.338472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.338476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.338481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.348440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.348453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.348458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.348462 LLDP, length 82 [|LLDP] 19:42:43.348463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.348468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 765f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.348470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.348474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.348477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.348482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.358439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.358452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.358456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.358461 LLDP, length 82 [|LLDP] 19:42:43.358462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.358466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bb 177f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.358469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.358473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.358476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.358480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.368440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.368451 LLDP, length 82 [|LLDP] 19:42:43.368453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.368457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c2 b89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.368459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.368463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.368465 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.368469 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.368474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.368478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.378438 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.378449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.378453 LLDP, length 82 [|LLDP] 19:42:43.378455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.378459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 59bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.378461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.378465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.378467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.378472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.378476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.388445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.388457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.388462 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.388466 LLDP, length 82 [|LLDP] 19:42:43.388468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.388472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 fadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.388474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.388478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.388481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.388485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.398440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.398451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.398455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.398460 LLDP, length 82 [|LLDP] 19:42:43.398461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.398465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d9 9bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.398467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.398471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.398474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.398479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.408441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.408453 LLDP, length 82 [|LLDP] 19:42:43.408455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.408459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 3d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.408461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.408465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.408468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.408472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.408477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.408481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.418440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.418453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.418458 LLDP, length 82 [|LLDP] 19:42:43.418459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.418463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 de3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.418465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.418469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.418472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.418476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.418481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.428443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.428454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.428459 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.428463 LLDP, length 82 [|LLDP] 19:42:43.428464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.428468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f0 7f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.428470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.428474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.428477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.428482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.438440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.438452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.438457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.438461 LLDP, length 82 [|LLDP] 19:42:43.438463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.438467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f8 207f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.438469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.438473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.438476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.438480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.448443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.448456 LLDP, length 82 [|LLDP] 19:42:43.448457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.448461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ff c19f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.448463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.448467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.448470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.448474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.448478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.448483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.458443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.458455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.458459 LLDP, length 82 [|LLDP] 19:42:43.458460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.458465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 62bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.458467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.458471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.458474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.458478 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.458483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.468441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.468453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.468457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.468461 LLDP, length 82 [|LLDP] 19:42:43.468463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.468467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120f 03df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.468469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.468473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.468476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.468480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.478440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.478451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.478455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.478459 LLDP, length 82 [|LLDP] 19:42:43.478461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.478465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1216 a4ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.478467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.478471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.478473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.478478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.488442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.488454 LLDP, length 82 [|LLDP] 19:42:43.488456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.488460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 461f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.488462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.488467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.488469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.488473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.488478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.488482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.498441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.498452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.498456 LLDP, length 82 [|LLDP] 19:42:43.498458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.498462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 e73f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.498464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.498468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.498471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.498475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.498480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.510619 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.510630 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.510634 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.510638 LLDP, length 82 [|LLDP] 19:42:43.510640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.510644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122d 885f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.510646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.510650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.510653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.510658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.518444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.518457 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.518461 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.518465 LLDP, length 82 [|LLDP] 19:42:43.518467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.518471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1235 297f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.518473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.518477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.518480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.518485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.528444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.528456 LLDP, length 82 [|LLDP] 19:42:43.528457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.528462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123c ca9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.528464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.528468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.528470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.528474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.528479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.528483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.538441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.538452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.538456 LLDP, length 82 [|LLDP] 19:42:43.538458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.538462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1244 6bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.538464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.538468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.538471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.538475 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.538479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.548440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.548451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.548455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.548460 LLDP, length 82 [|LLDP] 19:42:43.548461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.548466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124c 0cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.548468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.548471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.548474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.548478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.558442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.558455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.558459 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.558464 LLDP, length 82 [|LLDP] 19:42:43.558465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.558470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1253 adff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.558471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.558476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.558478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.558483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.571310 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.571322 LLDP, length 82 [|LLDP] 19:42:43.571323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.571328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 4f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.571330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.571334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.571337 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.571342 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.571346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.571351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.578445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.578459 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.578463 LLDP, length 82 [|LLDP] 19:42:43.578464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.578469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1262 f03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.578471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.578475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.578478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.578482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.578486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.588444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.588455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.588460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.588464 LLDP, length 82 [|LLDP] 19:42:43.588466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.588470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126a 915f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.588472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.588476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.588479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.588483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.598443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.598455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.598460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.598464 LLDP, length 82 [|LLDP] 19:42:43.598466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.598470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 327f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.598472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.598476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.598479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.598483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.608443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.608454 LLDP, length 82 [|LLDP] 19:42:43.608456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.608460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1279 d39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.608462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.608465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.608468 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.608472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.608476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.608481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.618447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.618460 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.618464 LLDP, length 82 [|LLDP] 19:42:43.618466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.618470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1281 74bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.618472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.618476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.618479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.618483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.618487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.631978 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.631989 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.631994 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.631998 LLDP, length 82 [|LLDP] 19:42:43.631999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.632004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1289 15df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.632005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.632009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.632012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.632017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.638442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.638452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.638457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.638461 LLDP, length 82 [|LLDP] 19:42:43.638462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.638467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1290 b6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.638468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.638472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.638475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.638479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.648444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.648455 LLDP, length 82 [|LLDP] 19:42:43.648456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.648460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1298 581f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.648462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.648466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.648469 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.648473 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.648477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.648482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.658442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.658454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.658459 LLDP, length 82 [|LLDP] 19:42:43.658460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.658464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129f f93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.658466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.658470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.658473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.658477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.658482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.668444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.668456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.668460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.668465 LLDP, length 82 [|LLDP] 19:42:43.668466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.668470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12a7 9a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.668472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.668476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.668479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.668483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.678444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.678455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.678460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.678464 LLDP, length 82 [|LLDP] 19:42:43.678465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.678470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12af 3b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.678472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.678476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.678478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.678483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.688442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.688453 LLDP, length 82 [|LLDP] 19:42:43.688455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.688459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12b6 dc9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.688461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.688465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.688467 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.688472 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.688476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.688480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.698445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.698456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.698460 LLDP, length 82 [|LLDP] 19:42:43.698461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.698466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12be 7dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.698468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.698472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.698474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.698479 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.698483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.708444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.708455 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.708459 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.708463 LLDP, length 82 [|LLDP] 19:42:43.708464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.708469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12c6 1edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.708470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.708475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.708477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.708482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.718443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.718453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.718458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.718462 LLDP, length 82 [|LLDP] 19:42:43.718463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.718468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12cd bfff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.718470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.718474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.718476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.718481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.728447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.728459 LLDP, length 82 [|LLDP] 19:42:43.728461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.728465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12d5 611f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.728467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.728471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.728473 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.728478 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.728482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.728487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.738443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.738454 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.738459 LLDP, length 82 [|LLDP] 19:42:43.738460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.738464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12dd 023f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.738466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.738470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.738473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.738477 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.738482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.748445 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.748456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.748461 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.748465 LLDP, length 82 [|LLDP] 19:42:43.748466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.748471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12e4 a35f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.748473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.748477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.748480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.748484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.758441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.758449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.758453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.758458 LLDP, length 82 [|LLDP] 19:42:43.758459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.758463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12ec 447f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.758465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.758469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.758472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.758476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.768469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.768488 LLDP, length 82 [|LLDP] 19:42:43.768490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.768495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12f3 e59f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.768497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.768501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.768505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.768510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.768514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.768519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.778459 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.778476 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.778480 LLDP, length 82 [|LLDP] 19:42:43.778482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.778486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12fb 86bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.778489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.778493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.778496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.778500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.778505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.788442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.788450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.788454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.788458 LLDP, length 82 [|LLDP] 19:42:43.788460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.788464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1303 27df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.788466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.788470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.788473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.788477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.798442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.798450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.798454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.798459 LLDP, length 82 [|LLDP] 19:42:43.798460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.798464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 130a c8ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.798467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.798471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.798473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.798477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.808441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.808448 LLDP, length 82 [|LLDP] 19:42:43.808450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.808454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1312 6a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.808456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.808460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.808463 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.808467 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.808472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.808476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.818443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.818451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.818455 LLDP, length 82 [|LLDP] 19:42:43.818457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.818461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 131a 0b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.818463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.818467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.818469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.818474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.818478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.828444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.828453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.828458 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.828462 LLDP, length 82 [|LLDP] 19:42:43.828463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.828467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1321 ac5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.828469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.828473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.828475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.828480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.838442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.838449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.838454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.838458 LLDP, length 82 [|LLDP] 19:42:43.838459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.838464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1329 4d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.838465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.838469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.838472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.838476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.848441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.848448 LLDP, length 82 [|LLDP] 19:42:43.848450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.848454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1330 ee9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.848456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.848460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.848462 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.848467 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.848471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.848475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.858440 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.858448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.858452 LLDP, length 82 [|LLDP] 19:42:43.858453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.858458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1338 8fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.858460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.858464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.858467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.858471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.858475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.868442 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.868450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.868455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.868459 LLDP, length 82 [|LLDP] 19:42:43.868461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.868465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1340 30df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.868467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.868471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.868473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.868478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.878444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.878452 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.878456 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.878460 LLDP, length 82 [|LLDP] 19:42:43.878462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.878466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1347 d1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.878468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.878472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.878474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.878479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.888451 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.888458 LLDP, length 82 [|LLDP] 19:42:43.888460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.888464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 134f 731f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.888466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.888470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.888472 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.888476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.888481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.888485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.898439 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.898448 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.898452 LLDP, length 82 [|LLDP] 19:42:43.898453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.898458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1357 143f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.898460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.898464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.898466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.898471 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.898476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.908443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.908450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.908455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.908459 LLDP, length 82 [|LLDP] 19:42:43.908461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.908465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 135e b55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.908467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.908471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.908473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.908478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.918441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.918449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.918453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.918458 LLDP, length 82 [|LLDP] 19:42:43.918459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.918463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1366 567f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.918465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.918470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.918472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.918476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.928441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.928449 LLDP, length 82 [|LLDP] 19:42:43.928451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.928455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 136d f79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.928457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.928461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.928463 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.928468 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.928472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.928476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.938443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.938451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.938456 LLDP, length 82 [|LLDP] 19:42:43.938457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.938462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1375 98bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.938463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.938467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.938470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.938474 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.938478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.948443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.948451 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.948455 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.948459 LLDP, length 82 [|LLDP] 19:42:43.948461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.948465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 137d 39df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.948467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.948471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.948473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.948478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.958441 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.958449 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.958453 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.958457 LLDP, length 82 [|LLDP] 19:42:43.958459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.958463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1384 daff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.958465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.958469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.958471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.958476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.968443 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.968450 LLDP, length 82 [|LLDP] 19:42:43.968452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.968456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 138c 7c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.968458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.968462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.968464 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.968469 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.968473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.968478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.978446 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.978453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.978458 LLDP, length 82 [|LLDP] 19:42:43.978459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.978464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1394 1d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.978466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.978470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.978472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.978476 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.978481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.988444 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.988453 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.988457 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.988461 LLDP, length 82 [|LLDP] 19:42:43.988463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.988467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 139b be5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.988469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.988473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.988475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.988479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:43.998447 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.998456 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:43.998460 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:43.998465 LLDP, length 82 [|LLDP] 19:42:43.998466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:43.998471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13a3 5f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:43.998472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:43.998476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:43.998479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:43.998483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.008476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.008497 LLDP, length 82 [|LLDP] 19:42:44.008499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.008503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13ab 009f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.008506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.008510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.008513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.008518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.008522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.008527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.018456 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.018470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.018475 LLDP, length 82 [|LLDP] 19:42:44.018476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.018481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13b2 a1bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.018483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.018487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.018490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.018494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.018499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.028453 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.028466 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.028470 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.028474 LLDP, length 82 [|LLDP] 19:42:44.028476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.028480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13ba 42df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.028482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.028486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.028489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.028494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.038451 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.038464 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.038468 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.038473 LLDP, length 82 [|LLDP] 19:42:44.038474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.038479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13c1 e3ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.038481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.038485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.038487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.038492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.048453 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.048467 LLDP, length 82 [|LLDP] 19:42:44.048468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.048473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13c9 851f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.048475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.048479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.048482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.048486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.048490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.048495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.058456 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.058470 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.058474 LLDP, length 82 [|LLDP] 19:42:44.058476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.058480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13d1 263f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.058482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.058486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.058489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.058493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.058498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.068452 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.068464 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.068468 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.068473 LLDP, length 82 [|LLDP] 19:42:44.068474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.068478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13d8 c75f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.068480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.068484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.068487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.068491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.078449 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.078459 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.078464 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.078468 LLDP, length 82 [|LLDP] 19:42:44.078469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.078474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13e0 687f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.078475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.078480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.078483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.078487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.088453 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.088465 LLDP, length 82 [|LLDP] 19:42:44.088466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.088471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13e8 099f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.088473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.088477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.088480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.088484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.088488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.088493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.098450 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.098462 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.098467 LLDP, length 82 [|LLDP] 19:42:44.098468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.098472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13ef aabf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.098474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.098479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.098481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.098485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.098490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.108472 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.108493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.108498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.108502 LLDP, length 82 [|LLDP] 19:42:44.108504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.108509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13f7 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.108511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.108515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.108518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.108523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.118467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.118483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.118487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.118492 LLDP, length 82 [|LLDP] 19:42:44.118494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.118498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 13fe ecff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.118500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.118504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.118507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.118512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.128461 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.128476 LLDP, length 82 [|LLDP] 19:42:44.128478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.128482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1406 8e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.128484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.128489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.128491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.128496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.128500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.128505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.138460 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.138474 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.138479 LLDP, length 82 [|LLDP] 19:42:44.138481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.138485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 140e 2f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.138487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.138492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.138495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.138499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.138504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.148461 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.148479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.148483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.148487 LLDP, length 82 [|LLDP] 19:42:44.148489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.148493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1415 d05f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.148495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.148500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.148503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.148507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.158463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.158478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.158483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.158488 LLDP, length 82 [|LLDP] 19:42:44.158489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.158494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 141d 717f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.158496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.158500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.158503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.158508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.168462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.168478 LLDP, length 82 [|LLDP] 19:42:44.168479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.168484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1425 129f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.168486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.168491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.168494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.168498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.168503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.168508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.179796 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.179811 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.179815 LLDP, length 82 [|LLDP] 19:42:44.179817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.179821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 142c b3bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.179823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.179827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.179830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.179834 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.179839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.188461 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.188477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.188482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.188486 LLDP, length 82 [|LLDP] 19:42:44.188488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.188492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1434 54df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.188494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.188498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.188501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.188506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.198477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.198498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.198503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.198507 LLDP, length 82 [|LLDP] 19:42:44.198509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.198514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 143b f5ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.198516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.198520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.198523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.198528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.208466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.208481 LLDP, length 82 [|LLDP] 19:42:44.208483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.208487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1443 971f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.208490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.208494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.208497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.208501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.208506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.208511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.218460 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.218474 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.218478 LLDP, length 82 [|LLDP] 19:42:44.218480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.218484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 144b 383f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.218486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.218491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.218493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.218498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.218502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.228478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.228498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.228503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.228507 LLDP, length 82 [|LLDP] 19:42:44.228509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.228513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1452 d95f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.228515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.228520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.228523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.228528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.240422 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.240438 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.240443 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.240447 LLDP, length 82 [|LLDP] 19:42:44.240449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.240453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 145a 7a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.240455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.240460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.240463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.240467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.248465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.248481 LLDP, length 82 [|LLDP] 19:42:44.248482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.248487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1462 1b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.248489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.248493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.248496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.248500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.248504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.248509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.258464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.258478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.258482 LLDP, length 82 [|LLDP] 19:42:44.258484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.258488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1469 bcbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.258490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.258495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.258498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.258502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.258507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.268470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.268490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.268495 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.268500 LLDP, length 82 [|LLDP] 19:42:44.268501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.268506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1471 5ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.268508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.268512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.268515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.268520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.278466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.278481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.278485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.278490 LLDP, length 82 [|LLDP] 19:42:44.278492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.278496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1478 feff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.278498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.278502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.278505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.278510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.288465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.288479 LLDP, length 82 [|LLDP] 19:42:44.288481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.288486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1480 a01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.288488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.288492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.288495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.288499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.288504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.288508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.301096 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.301116 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.301121 LLDP, length 82 [|LLDP] 19:42:44.301122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.301127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1488 413f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.301129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.301133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.301136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.301140 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.301145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.308466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.308482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.308487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.308491 LLDP, length 82 [|LLDP] 19:42:44.308493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.308498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 148f e25f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.308500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.308504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.308506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.308511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.318467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.318482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.318487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.318491 LLDP, length 82 [|LLDP] 19:42:44.318493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.318497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1497 837f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.318499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.318503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.318506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.318511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.328466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.328484 LLDP, length 82 [|LLDP] 19:42:44.328486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.328490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 149f 249f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.328492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.328496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.328499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.328504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.328508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.328513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.338486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.338510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.338514 LLDP, length 82 [|LLDP] 19:42:44.338517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.338521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14a6 c5bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.338524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.338528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.338532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.338536 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.338541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.348465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.348482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.348487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.348491 LLDP, length 82 [|LLDP] 19:42:44.348493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.348498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14ae 66df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.348500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.348504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.348507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.348512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.358463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.358478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.358483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.358488 LLDP, length 82 [|LLDP] 19:42:44.358489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.358494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14b6 07ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.358495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.358500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.358503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.358507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.368467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.368481 LLDP, length 82 [|LLDP] 19:42:44.368483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.368487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14bd a91f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.368489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.368493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.368496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.368500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.368504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.368509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.378465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.378480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.378484 LLDP, length 82 [|LLDP] 19:42:44.378486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.378490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14c5 4a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.378492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.378496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.378499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.378503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.378508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.388464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.388478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.388483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.388487 LLDP, length 82 [|LLDP] 19:42:44.388488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.388493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14cc eb5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.388495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.388499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.388501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.388506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.398462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.398476 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.398481 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.398485 LLDP, length 82 [|LLDP] 19:42:44.398486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.398491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14d4 8c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.398493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.398497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.398500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.398505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.399745 LLDP, length 226: localhost 19:42:44.408462 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.408478 LLDP, length 82 [|LLDP] 19:42:44.408480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.408484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14dc 2d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.408486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.408490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.408493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.408498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.408502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.408507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.418470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.418486 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.418491 LLDP, length 82 [|LLDP] 19:42:44.418492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.418497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14e3 cebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.418499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.418503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.418506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.418510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.418515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.428469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.428486 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.428491 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.428495 LLDP, length 82 [|LLDP] 19:42:44.428497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.428501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14eb 6fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.428503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.428507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.428510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.428515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.438464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.438478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.438482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.438487 LLDP, length 82 [|LLDP] 19:42:44.438488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.438493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14f3 10ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.438495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.438499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.438502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.438506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.448465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.448480 LLDP, length 82 [|LLDP] 19:42:44.448482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.448487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 14fa b21f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.448489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.448493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.448496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.448500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.448504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.448509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.458463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.458477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.458481 LLDP, length 82 [|LLDP] 19:42:44.458483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.458488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1502 533f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.458490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.458494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.458496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.458501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.458505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.468466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.468481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.468485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.468490 LLDP, length 82 [|LLDP] 19:42:44.468491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.468496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1509 f45f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.468498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.468502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.468505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.468509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.478463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.478478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.478482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.478487 LLDP, length 82 [|LLDP] 19:42:44.478489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.478493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1511 957f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.478495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.478499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.478502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.478507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.488468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.488483 LLDP, length 82 [|LLDP] 19:42:44.488484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.488489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1519 369f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.488491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.488495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.488497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.488502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.488506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.488511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.498466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.498480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.498485 LLDP, length 82 [|LLDP] 19:42:44.498486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.498491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1520 d7bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.498493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.498497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.498500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.498504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.498509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.508463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.508477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.508482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.508486 LLDP, length 82 [|LLDP] 19:42:44.508488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.508493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1528 78df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.508495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.508499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.508502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.508506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.518463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.518476 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.518481 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.518485 LLDP, length 82 [|LLDP] 19:42:44.518487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.518491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1530 19ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.518493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.518497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.518500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.518505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.528465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.528481 LLDP, length 82 [|LLDP] 19:42:44.528483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.528487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1537 bb1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.528489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.528493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.528496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.528500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.528505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.528510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.538466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.538481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.538485 LLDP, length 82 [|LLDP] 19:42:44.538487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.538492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 153f 5c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.538493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.538498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.538501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.538505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.538509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.548467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.548481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.548486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.548490 LLDP, length 82 [|LLDP] 19:42:44.548492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.548496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1546 fd5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.548498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.548502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.548504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.548509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.558465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.558480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.558484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.558488 LLDP, length 82 [|LLDP] 19:42:44.558490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.558494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 154e 9e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.558496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.558500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.558503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.558508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.568466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.568479 LLDP, length 82 [|LLDP] 19:42:44.568481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.568485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1556 3f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.568487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.568491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.568494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.568499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.568503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.568508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.578466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.578479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.578484 LLDP, length 82 [|LLDP] 19:42:44.578485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.578490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 155d e0bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.578492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.578496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.578499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.578504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.578508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.588463 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.588478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.588482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.588487 LLDP, length 82 [|LLDP] 19:42:44.588488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.588493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1565 81df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.588495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.588499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.588501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.588506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.598468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.598485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.598489 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.598494 LLDP, length 82 [|LLDP] 19:42:44.598495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.598500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 156d 22ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.598502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.598506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.598509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.598513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.608470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.608485 LLDP, length 82 [|LLDP] 19:42:44.608486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.608491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1574 c41f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.608493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.608497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.608500 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.608504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.608509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.608514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.618466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.618481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.618485 LLDP, length 82 [|LLDP] 19:42:44.618486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.618491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 157c 653f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.618493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.618497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.618500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.618504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.618509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.628464 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.628477 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.628482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.628486 LLDP, length 82 [|LLDP] 19:42:44.628488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.628492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1584 065f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.628494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.628498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.628501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.628506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.638465 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.638479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.638483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.638488 LLDP, length 82 [|LLDP] 19:42:44.638489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.638493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 158b a77f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.638495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.638499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.638502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.638507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.648467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.648480 LLDP, length 82 [|LLDP] 19:42:44.648482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.648486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1593 489f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.648488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.648492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.648495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.648500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.648504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.648509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.658478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.658496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.658501 LLDP, length 82 [|LLDP] 19:42:44.658503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.658507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 159a e9bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.658509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.658513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.658516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.658521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.658525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.668473 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.668489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.668494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.668498 LLDP, length 82 [|LLDP] 19:42:44.668500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.668504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15a2 8adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.668506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.668510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.668513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.668518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.678466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.678481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.678485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.678490 LLDP, length 82 [|LLDP] 19:42:44.678492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.678496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15aa 2bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.678498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.678503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.678506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.678510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.688467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.688480 LLDP, length 82 [|LLDP] 19:42:44.688482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.688487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15b1 cd1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.688489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.688493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.688496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.688500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.688504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.688509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.698468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.698483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.698488 LLDP, length 82 [|LLDP] 19:42:44.698490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.698494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15b9 6e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.698496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.698501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.698503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.698508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.698512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.708469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.708483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.708488 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.708493 LLDP, length 82 [|LLDP] 19:42:44.708494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.708498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15c1 0f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.708500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.708504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.708507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.708512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.718469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.718484 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.718489 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.718493 LLDP, length 82 [|LLDP] 19:42:44.718495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.718499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15c8 b07f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.718502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.718506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.718509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.718513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.728471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.728485 LLDP, length 82 [|LLDP] 19:42:44.728487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.728492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15d0 519f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.728494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.728498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.728501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.728505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.728509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.728514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.738470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.738485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.738489 LLDP, length 82 [|LLDP] 19:42:44.738491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.738496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15d7 f2bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.738497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.738502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.738505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.738509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.738514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.748468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.748482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.748486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.748491 LLDP, length 82 [|LLDP] 19:42:44.748492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.748497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15df 93df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.748499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.748503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.748506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.748510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.758466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.758480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.758485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.758489 LLDP, length 82 [|LLDP] 19:42:44.758491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.758495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15e7 34ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.758497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.758501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.758504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.758508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.768469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.768483 LLDP, length 82 [|LLDP] 19:42:44.768485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.768490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15ee d61f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.768492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.768496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.768499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.768503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.768507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.768512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.778468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.778483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.778487 LLDP, length 82 [|LLDP] 19:42:44.778489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.778493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15f6 773f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.778495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.778499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.778502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.778507 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.778511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.788474 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.788489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.788493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.788498 LLDP, length 82 [|LLDP] 19:42:44.788499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.788504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 15fe 185f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.788506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.788510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.788513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.788517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.798613 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.798634 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.798639 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.798644 LLDP, length 82 [|LLDP] 19:42:44.798646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.798651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1605 b97f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.798653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.798657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.798660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.798666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.808482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.808499 LLDP, length 82 [|LLDP] 19:42:44.808501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.808506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 160d 5a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.808508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.808512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.808515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.808520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.808524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.808529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.818471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.818485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.818490 LLDP, length 82 [|LLDP] 19:42:44.818492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.818497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1614 fbbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.818498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.818503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.818505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.818510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.818514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.828474 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.828488 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.828493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.828497 LLDP, length 82 [|LLDP] 19:42:44.828499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.828503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 161c 9cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.828505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.828509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.828512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.828517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.838473 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.838489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.838494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.838498 LLDP, length 82 [|LLDP] 19:42:44.838500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.838504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1624 3dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.838506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.838511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.838513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.838518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.848475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.848490 LLDP, length 82 [|LLDP] 19:42:44.848492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.848496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 162b df1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.848498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.848503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.848505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.848510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.848514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.848518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.858467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.858480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.858485 LLDP, length 82 [|LLDP] 19:42:44.858486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.858491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1633 803f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.858493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.858497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.858500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.858504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.858509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.868468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.868480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.868485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.868489 LLDP, length 82 [|LLDP] 19:42:44.868490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.868495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 163b 215f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.868497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.868501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.868503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.868508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.878472 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.878485 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.878489 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.878493 LLDP, length 82 [|LLDP] 19:42:44.878495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.878499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1642 c27f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.878501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.878505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.878508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.878513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.888468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.888480 LLDP, length 82 [|LLDP] 19:42:44.888482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.888487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 164a 639f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.888489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.888493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.888496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.888500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.888504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.888509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.898467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.898479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.898484 LLDP, length 82 [|LLDP] 19:42:44.898485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.898490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1652 04bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.898491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.898496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.898498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.898503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.898507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.908471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.908484 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.908488 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.908493 LLDP, length 82 [|LLDP] 19:42:44.908494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.908499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1659 a5df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.908501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.908505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.908508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.908513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.918466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.918478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.918482 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.918487 LLDP, length 82 [|LLDP] 19:42:44.918488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.918493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1661 46ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.918495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.918499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.918501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.918506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.928466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.928479 LLDP, length 82 [|LLDP] 19:42:44.928481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.928485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1668 e81f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.928487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.928492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.928494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.928498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.928503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.928507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.938466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.938478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.938482 LLDP, length 82 [|LLDP] 19:42:44.938484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.938488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1670 893f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.938490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.938494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.938497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.938501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.938505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.948468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.948481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.948485 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.948490 LLDP, length 82 [|LLDP] 19:42:44.948491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.948496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1678 2a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.948498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.948502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.948504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.948509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.958466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.958479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.958483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.958488 LLDP, length 82 [|LLDP] 19:42:44.958489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.958493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 167f cb7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.958495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.958499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.958502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.958507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.968468 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.968481 LLDP, length 82 [|LLDP] 19:42:44.968483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.968487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1687 6c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.968489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.968493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.968496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.968500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.968504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.968509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.978467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.978479 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.978483 LLDP, length 82 [|LLDP] 19:42:44.978485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.978489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 168f 0dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.978491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.978495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.978498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.978502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.978507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.988467 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.988480 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.988484 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.988489 LLDP, length 82 [|LLDP] 19:42:44.988490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.988495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1696 aedf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.988497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.988501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.988504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.988508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:44.998471 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.998483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:44.998487 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:44.998491 LLDP, length 82 [|LLDP] 19:42:44.998493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:44.998497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 169e 4fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:44.998499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:44.998503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:44.998506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:44.998510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.008466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.008479 LLDP, length 82 [|LLDP] 19:42:45.008480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.008485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16a5 f11f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.008487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.008491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.008494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.008498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.008502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.008507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.018466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.018481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.018485 LLDP, length 82 [|LLDP] 19:42:45.018487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.018491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16ad 923f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.018493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.018497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.018500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.018504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.018509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.029090 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.029104 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.029108 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.029112 LLDP, length 82 [|LLDP] 19:42:45.029114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.029118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16b5 335f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.029120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.029124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.029126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.029131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.038469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.038481 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.038486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.038490 LLDP, length 82 [|LLDP] 19:42:45.038491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.038496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16bc d47f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.038498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.038502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.038505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.038510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.048469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.048482 LLDP, length 82 [|LLDP] 19:42:45.048484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.048488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16c4 759f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.048490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.048494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.048497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.048501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.048505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.048510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.058469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.058482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.058486 LLDP, length 82 [|LLDP] 19:42:45.058488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.058492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16cc 16bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.058494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.058498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.058501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.058505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.058510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.068466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.068478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.068483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.068487 LLDP, length 82 [|LLDP] 19:42:45.068489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.068493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16d3 b7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.068495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.068499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.068502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.068506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.078466 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.078478 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.078483 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.078487 LLDP, length 82 [|LLDP] 19:42:45.078489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.078493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16db 58ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.078495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.078499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.078502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.078506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.089765 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.089781 LLDP, length 82 [|LLDP] 19:42:45.089782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.089787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16e2 fa1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.089789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.089793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.089796 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.089800 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.089805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.089809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.098470 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.098483 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.098487 LLDP, length 82 [|LLDP] 19:42:45.098489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.098493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16ea 9b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.098495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.098499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.098502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.098506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.098511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.108469 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.108482 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.108486 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.108491 LLDP, length 82 [|LLDP] 19:42:45.108492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.108496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16f2 3c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.108498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.108502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.108505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.108509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.118476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.118490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.118494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.118498 LLDP, length 82 [|LLDP] 19:42:45.118500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.118504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 16f9 dd7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.118506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.118510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.118513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.118518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.128481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.128501 LLDP, length 82 [|LLDP] 19:42:45.128503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.128507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1701 7e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.128509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.128514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.128517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.128521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.128526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.128531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.138492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.138512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.138517 LLDP, length 82 [|LLDP] 19:42:45.138518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.138523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1709 1fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.138526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.138530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.138533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.138538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.138543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.150752 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.150769 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.150774 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.150778 LLDP, length 82 [|LLDP] 19:42:45.150780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.150784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1710 c0df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.150786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.150791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.150794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.150798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.158477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.158493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.158498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.158502 LLDP, length 82 [|LLDP] 19:42:45.158504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.158508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1718 61ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.158511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.158515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.158518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.158523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.168477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.168492 LLDP, length 82 [|LLDP] 19:42:45.168494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.168499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1720 031f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.168501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.168505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.168508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.168512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.168517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.168521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.178475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.178491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.178496 LLDP, length 82 [|LLDP] 19:42:45.178497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.178502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1727 a43f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.178504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.178508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.178511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.178515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.178520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.188478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.188495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.188499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.188504 LLDP, length 82 [|LLDP] 19:42:45.188505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.188509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 172f 455f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.188511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.188515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.188518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.188523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.198486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.198503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.198508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.198513 LLDP, length 82 [|LLDP] 19:42:45.198514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.198519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1736 e67f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.198521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.198525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.198528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.198533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.208552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.208570 LLDP, length 82 [|LLDP] 19:42:45.208571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.208576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 173e 879f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.208578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.208583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.208585 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.208590 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.208594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.208599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.218491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.218508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.218512 LLDP, length 82 [|LLDP] 19:42:45.218514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.218518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1746 28bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.218520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.218524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.218527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.218532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.218536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.228485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.228501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.228505 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.228509 LLDP, length 82 [|LLDP] 19:42:45.228511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.228516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 174d c9df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.228518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.228522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.228525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.228530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.238479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.238496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.238500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.238505 LLDP, length 82 [|LLDP] 19:42:45.238506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.238511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1755 6aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.238513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.238518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.238521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.238525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.248483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.248501 LLDP, length 82 [|LLDP] 19:42:45.248503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.248507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 175d 0c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.248509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.248513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.248516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.248521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.248525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.248530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.258482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.258498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.258502 LLDP, length 82 [|LLDP] 19:42:45.258504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.258508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1764 ad3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.258510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.258514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.258517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.258522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.258527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.268483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.268499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.268503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.268507 LLDP, length 82 [|LLDP] 19:42:45.268509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.268513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 176c 4e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.268515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.268520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.268522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.268527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.278483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.278499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.278504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.278508 LLDP, length 82 [|LLDP] 19:42:45.278510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.278515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1773 ef7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.278517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.278521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.278524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.278529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.288484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.288503 LLDP, length 82 [|LLDP] 19:42:45.288504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.288509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 177b 909f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.288511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.288515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.288518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.288522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.288527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.288532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.298485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.298503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.298508 LLDP, length 82 [|LLDP] 19:42:45.298510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.298514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1783 31bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.298516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.298520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.298524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.298528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.298533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.308482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.308498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.308503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.308507 LLDP, length 82 [|LLDP] 19:42:45.308508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.308513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 178a d2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.308515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.308519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.308522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.308527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.318487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.318502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.318506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.318511 LLDP, length 82 [|LLDP] 19:42:45.318512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.318517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1792 73ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.318519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.318523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.318526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.318531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.328483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.328501 LLDP, length 82 [|LLDP] 19:42:45.328503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.328507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 179a 151f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.328509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.328513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.328516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.328521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.328525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.328530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.338499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.338522 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.338527 LLDP, length 82 [|LLDP] 19:42:45.338528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.338533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17a1 b63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.338535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.338539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.338542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.338547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.338551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.348488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.348505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.348510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.348514 LLDP, length 82 [|LLDP] 19:42:45.348516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.348520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17a9 575f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.348523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.348527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.348530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.348534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.358486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.358503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.358508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.358512 LLDP, length 82 [|LLDP] 19:42:45.358514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.358518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17b0 f87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.358520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.358524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.358527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.358532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.368495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.368517 LLDP, length 82 [|LLDP] 19:42:45.368519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.368524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17b8 999f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.368526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.368530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.368533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.368537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.368542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.368547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.378483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.378499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.378503 LLDP, length 82 [|LLDP] 19:42:45.378505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.378510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17c0 3abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.378512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.378516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.378519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.378523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.378528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.388481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.388497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.388501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.388506 LLDP, length 82 [|LLDP] 19:42:45.388507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.388511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17c7 dbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.388513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.388517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.388520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.388525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.398491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.398511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.398515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.398520 LLDP, length 82 [|LLDP] 19:42:45.398521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.398525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17cf 7cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.398528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.398532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.398536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.398540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.408488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.408506 LLDP, length 82 [|LLDP] 19:42:45.408508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.408513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17d7 1e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.408515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.408519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.408522 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.408526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.408531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.408535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.418480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.418495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.418500 LLDP, length 82 [|LLDP] 19:42:45.418502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.418506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17de bf3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.418508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.418512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.418515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.418520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.418525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.428478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.428491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.428496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.428500 LLDP, length 82 [|LLDP] 19:42:45.428502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.428506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17e6 605f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.428508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.428512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.428515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.428519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.438488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.438508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.438513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.438518 LLDP, length 82 [|LLDP] 19:42:45.438519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.438524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17ee 017f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.438526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.438530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.438533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.438537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.448479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.448494 LLDP, length 82 [|LLDP] 19:42:45.448496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.448500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17f5 a29f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.448502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.448506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.448509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.448513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.448518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.448523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.458478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.458492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.458496 LLDP, length 82 [|LLDP] 19:42:45.458498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.458502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 17fd 43bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.458504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.458508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.458511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.458515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.458520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.468496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.468519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.468525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.468529 LLDP, length 82 [|LLDP] 19:42:45.468531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.468535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1804 e4df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.468537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.468542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.468544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.468549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.478480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.478495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.478499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.478504 LLDP, length 82 [|LLDP] 19:42:45.478505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.478510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 180c 85ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.478512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.478516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.478519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.478524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.488475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.488487 LLDP, length 82 [|LLDP] 19:42:45.488489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.488493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1814 271f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.488495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.488499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.488502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.488506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.488511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.488515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.498492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.498511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.498516 LLDP, length 82 [|LLDP] 19:42:45.498517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.498522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 181b c83f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.498524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.498528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.498531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.498535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.498540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.508485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.508501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.508506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.508510 LLDP, length 82 [|LLDP] 19:42:45.508512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.508516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1823 695f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.508518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.508522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.508525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.508531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.518480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.518493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.518498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.518502 LLDP, length 82 [|LLDP] 19:42:45.518504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.518508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 182b 0a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.518510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.518515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.518517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.518523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.528477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.528489 LLDP, length 82 [|LLDP] 19:42:45.528491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.528495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1832 ab9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.528497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.528501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.528504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.528508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.528512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.528517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.538476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.538487 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.538492 LLDP, length 82 [|LLDP] 19:42:45.538493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.538498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 183a 4cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.538499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.538504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.538507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.538511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.538515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.548475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.548487 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.548491 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.548496 LLDP, length 82 [|LLDP] 19:42:45.548497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.548502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1841 eddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.548503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.548508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.548510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.548515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.558475 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.558486 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.558491 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.558495 LLDP, length 82 [|LLDP] 19:42:45.558497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.558501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1849 8eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.558503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.558507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.558509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.558514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.568485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.568499 LLDP, length 82 [|LLDP] 19:42:45.568500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.568505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1851 301f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.568507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.568511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.568514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.568518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.568523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.568527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.578484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.578499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.578504 LLDP, length 82 [|LLDP] 19:42:45.578505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.578510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1858 d13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.578511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.578516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.578518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.578523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.578527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.588477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.588490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.588495 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.588499 LLDP, length 82 [|LLDP] 19:42:45.588500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.588505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1860 725f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.588507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.588511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.588514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.588519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.598478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.598491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.598495 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.598499 LLDP, length 82 [|LLDP] 19:42:45.598501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.598505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1868 137f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.598507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.598511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.598514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.598518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.608476 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.608487 LLDP, length 82 [|LLDP] 19:42:45.608488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.608493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 186f b49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.608495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.608499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.608502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.608506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.608510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.608515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.618480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.618491 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.618496 LLDP, length 82 [|LLDP] 19:42:45.618497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.618501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1877 55bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.618503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.618508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.618510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.618515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.618519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.628480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.628492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.628496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.628500 LLDP, length 82 [|LLDP] 19:42:45.628502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.628506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 187e f6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.628508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.628513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.628515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.628520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.638478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.638490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.638494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.638499 LLDP, length 82 [|LLDP] 19:42:45.638500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.638505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1886 97ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.638507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.638511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.638514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.638519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.648479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.648490 LLDP, length 82 [|LLDP] 19:42:45.648491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.648496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 188e 391f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.648498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.648502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.648504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.648509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.648513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.648518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.658477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.658489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.658493 LLDP, length 82 [|LLDP] 19:42:45.658495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.658499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1895 da3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.658501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.658506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.658508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.658512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.658517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.668478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.668492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.668496 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.668500 LLDP, length 82 [|LLDP] 19:42:45.668502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.668507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 189d 7b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.668509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.668513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.668515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.668520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.678481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.678494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.678498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.678503 LLDP, length 82 [|LLDP] 19:42:45.678504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.678509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18a5 1c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.678511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.678515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.678518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.678522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.688478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.688491 LLDP, length 82 [|LLDP] 19:42:45.688492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.688496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18ac bd9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.688498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.688502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.688505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.688509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.688514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.688518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.698479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.698490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.698495 LLDP, length 82 [|LLDP] 19:42:45.698496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.698501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18b4 5ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.698503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.698507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.698510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.698514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.698519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.708477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.708489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.708493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.708498 LLDP, length 82 [|LLDP] 19:42:45.708499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.708504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18bb ffdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.708506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.708510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.708513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.708517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.718478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.718490 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.718494 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.718499 LLDP, length 82 [|LLDP] 19:42:45.718500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.718504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18c3 a0ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.718506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.718510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.718513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.718517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.728479 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.728491 LLDP, length 82 [|LLDP] 19:42:45.728492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.728497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18cb 421f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.728499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.728503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.728505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.728509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.728514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.728518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.738477 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.738489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.738493 LLDP, length 82 [|LLDP] 19:42:45.738495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.738499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18d2 e33f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.738501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.738505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.738508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.738512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.738517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.748478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.748489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.748493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.748498 LLDP, length 82 [|LLDP] 19:42:45.748499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.748504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18da 845f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.748505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.748510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.748512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.748517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.758478 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.758489 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.758493 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.758498 LLDP, length 82 [|LLDP] 19:42:45.758499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.758504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18e2 257f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.758506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.758510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.758512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.758517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.768480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.768491 LLDP, length 82 [|LLDP] 19:42:45.768493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.768497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18e9 c69f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.768499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.768503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.768506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.768510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.768514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.768519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.778484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.778500 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.778505 LLDP, length 82 [|LLDP] 19:42:45.778506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.778511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18f1 67bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.778513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.778517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.778520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.778524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.778529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.788482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.788496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.788500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.788505 LLDP, length 82 [|LLDP] 19:42:45.788506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.788510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 18f9 08df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.788512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.788516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.788520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.788524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.798482 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.798494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.798498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.798503 LLDP, length 82 [|LLDP] 19:42:45.798504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.798509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1900 a9ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.798511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.798515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.798517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.798522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.808480 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.808492 LLDP, length 82 [|LLDP] 19:42:45.808493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.808498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1908 4b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.808500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.808504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.808506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.808511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.808515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.808520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.818503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.818525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.818530 LLDP, length 82 [|LLDP] 19:42:45.818532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.818537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 190f ec3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.818539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.818543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.818546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.818551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.818556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.828498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.828517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.828521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.828526 LLDP, length 82 [|LLDP] 19:42:45.828528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.828533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1917 8d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.828535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.828539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.828543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.828548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.838500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.838517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.838521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.838526 LLDP, length 82 [|LLDP] 19:42:45.838527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.838532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 191f 2e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.838534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.838539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.838541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.838546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.848487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.848500 LLDP, length 82 [|LLDP] 19:42:45.848502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.848506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1926 cf9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.848508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.848512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.848515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.848519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.848523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.848528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.858483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.858496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.858500 LLDP, length 82 [|LLDP] 19:42:45.858502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.858506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 192e 70bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.858508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.858512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.858515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.858519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.858524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.868483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.868496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.868500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.868505 LLDP, length 82 [|LLDP] 19:42:45.868506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.868510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1936 11df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.868512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.868516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.868519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.868524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.878484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.878498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.878502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.878507 LLDP, length 82 [|LLDP] 19:42:45.878509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.878513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 193d b2ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.878515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.878519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.878522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.878526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.888980 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.888995 LLDP, length 82 [|LLDP] 19:42:45.888996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.889000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1945 541f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.889002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.889007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.889009 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.889014 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.889018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.889023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.898483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.898497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.898501 LLDP, length 82 [|LLDP] 19:42:45.898503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.898507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 194c f53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.898509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.898513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.898516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.898520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.898525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.908484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.908496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.908500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.908505 LLDP, length 82 [|LLDP] 19:42:45.908506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.908510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1954 965f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.908512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.908516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.908519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.908523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.918483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.918495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.918500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.918504 LLDP, length 82 [|LLDP] 19:42:45.918505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.918510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 195c 377f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.918512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.918516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.918519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.918523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.928481 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.928495 LLDP, length 82 [|LLDP] 19:42:45.928496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.928501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1963 d89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.928503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.928507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.928509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.928514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.928518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.928523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.939532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.939544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.939549 LLDP, length 82 [|LLDP] 19:42:45.939550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.939555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 196b 79bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.939556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.939561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.939563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.939568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.939572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.948484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.948498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.948502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.948507 LLDP, length 82 [|LLDP] 19:42:45.948508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.948513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1973 1adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.948514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.948518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.948521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.948525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.958484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.958497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.958502 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.958506 LLDP, length 82 [|LLDP] 19:42:45.958508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.958512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 197a bbff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.958514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.958518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.958521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.958526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.968485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.968497 LLDP, length 82 [|LLDP] 19:42:45.968498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.968502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1982 5d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.968505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.968509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.968511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.968515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.968520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.968525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.978483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.978497 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.978501 LLDP, length 82 [|LLDP] 19:42:45.978503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.978507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1989 fe3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.978509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.978513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.978516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.978520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.978525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:45.988485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.988498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:45.988503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:45.988507 LLDP, length 82 [|LLDP] 19:42:45.988509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:45.988513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1991 9f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:45.988515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:45.988519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:45.988522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:45.988527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.000202 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.000215 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.000219 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.000224 LLDP, length 82 [|LLDP] 19:42:46.000225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.000229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1999 407f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.000231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.000236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.000238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.000243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.008484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.008496 LLDP, length 82 [|LLDP] 19:42:46.008497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.008502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19a0 e19f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.008504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.008508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.008511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.008515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.008519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.008524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.018485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.018498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.018502 LLDP, length 82 [|LLDP] 19:42:46.018503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.018508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19a8 82bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.018510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.018514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.018516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.018521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.018525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.028483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.028495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.028499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.028504 LLDP, length 82 [|LLDP] 19:42:46.028505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.028510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19b0 23df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.028512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.028516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.028519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.028523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.038497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.038510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.038514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.038519 LLDP, length 82 [|LLDP] 19:42:46.038520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.038524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19b7 c4ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.038526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.038530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.038533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.038537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.048484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.048497 LLDP, length 82 [|LLDP] 19:42:46.048499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.048504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19bf 661f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.048506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.048510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.048512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.048517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.048521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.048526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.060544 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.060557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.060562 LLDP, length 82 [|LLDP] 19:42:46.060563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.060568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19c7 073f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.060570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.060574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.060577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.060581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.060586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.068485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.068499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.068503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.068508 LLDP, length 82 [|LLDP] 19:42:46.068509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.068513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19ce a85f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.068515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.068519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.068522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.068526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.078485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.078499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.078503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.078507 LLDP, length 82 [|LLDP] 19:42:46.078509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.078513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19d6 497f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.078515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.078519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.078522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.078526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.088486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.088500 LLDP, length 82 [|LLDP] 19:42:46.088502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.088507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19dd ea9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.088509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.088513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.088516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.088520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.088524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.088529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.098488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.098502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.098507 LLDP, length 82 [|LLDP] 19:42:46.098508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.098512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19e5 8bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.098514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.098519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.098521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.098525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.098530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.108487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.108501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.108506 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.108510 LLDP, length 82 [|LLDP] 19:42:46.108511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.108516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19ed 2cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.108517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.108522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.108524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.108529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.118487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.118499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.118504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.118508 LLDP, length 82 [|LLDP] 19:42:46.118510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.118514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19f4 cdff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.118516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.118520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.118523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.118527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.128487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.128500 LLDP, length 82 [|LLDP] 19:42:46.128502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.128506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 19fc 6f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.128508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.128512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.128515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.128519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.128523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.128528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.138507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.138525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.138530 LLDP, length 82 [|LLDP] 19:42:46.138532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.138537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a04 103f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.138538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.138543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.138546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.138550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.138555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.148509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.148531 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.148536 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.148541 LLDP, length 82 [|LLDP] 19:42:46.148542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.148547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a0b b15f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.148549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.148554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.148557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.148562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.158501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.158521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.158526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.158530 LLDP, length 82 [|LLDP] 19:42:46.158532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.158537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a13 527f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.158539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.158543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.158546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.158551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.168491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.168504 LLDP, length 82 [|LLDP] 19:42:46.168506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.168510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a1a f39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.168512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.168516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.168519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.168523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.168528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.168532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.178487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.178501 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.178505 LLDP, length 82 [|LLDP] 19:42:46.178507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.178511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a22 94bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.178513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.178517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.178520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.178524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.178529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.188492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.188507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.188512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.188516 LLDP, length 82 [|LLDP] 19:42:46.188518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.188522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a2a 35df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.188524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.188528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.188531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.188535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.198502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.198520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.198525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.198529 LLDP, length 82 [|LLDP] 19:42:46.198531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.198536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a31 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.198538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.198542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.198545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.198549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.208524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.208553 LLDP, length 82 [|LLDP] 19:42:46.208556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.208560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a39 781f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.208563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.208567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.208571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.208575 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.208579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.208584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.218523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.218555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.218560 LLDP, length 82 [|LLDP] 19:42:46.218561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.218566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a41 193f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.218569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.218573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.218576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.218581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.218586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.228521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.228551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.228556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.228560 LLDP, length 82 [|LLDP] 19:42:46.228562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.228567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a48 ba5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.228569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.228574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.228577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.228583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.238529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.238561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.238567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.238572 LLDP, length 82 [|LLDP] 19:42:46.238574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.238579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a50 5b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.238582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.238587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.238590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.238595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.248521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.248550 LLDP, length 82 [|LLDP] 19:42:46.248552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.248557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a57 fc9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.248560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.248564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.248567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.248572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.248577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.248581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.258520 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.258549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.258554 LLDP, length 82 [|LLDP] 19:42:46.258556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.258561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a5f 9dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.258563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.258568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.258571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.258575 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.258580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.268541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.268573 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.268578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.268583 LLDP, length 82 [|LLDP] 19:42:46.268585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.268590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a67 3edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.268592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.268597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.268600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.268605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.278524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.278551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.278556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.278560 LLDP, length 82 [|LLDP] 19:42:46.278563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.278567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a6e dfff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.278570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.278574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.278577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.278582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.288493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.288505 LLDP, length 82 [|LLDP] 19:42:46.288506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.288511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a76 811f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.288513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.288517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.288520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.288524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.288528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.288533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.298489 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.298502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.298507 LLDP, length 82 [|LLDP] 19:42:46.298508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.298513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a7e 223f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.298515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.298519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.298522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.298526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.298531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.308486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.308496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.308501 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.308505 LLDP, length 82 [|LLDP] 19:42:46.308506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.308511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a85 c35f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.308513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.308517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.308519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.308524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.318484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.318494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.318498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.318503 LLDP, length 82 [|LLDP] 19:42:46.318504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.318508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a8d 647f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.318510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.318515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.318517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.318522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.328484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.328492 LLDP, length 82 [|LLDP] 19:42:46.328494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.328499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a95 059f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.328500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.328505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.328507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.328511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.328516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.328520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.338487 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.338498 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.338502 LLDP, length 82 [|LLDP] 19:42:46.338504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.338508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1a9c a6bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.338510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.338514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.338517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.338521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.338525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.348485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.348495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.348499 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.348503 LLDP, length 82 [|LLDP] 19:42:46.348505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.348509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aa4 47df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.348511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.348515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.348518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.348522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.358483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.358499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.358503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.358508 LLDP, length 82 [|LLDP] 19:42:46.358509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.358514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aab e8ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.358515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.358519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.358522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.358526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.368484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.368493 LLDP, length 82 [|LLDP] 19:42:46.368495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.368499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ab3 8a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.368501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.368505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.368508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.368512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.368516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.368521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.378483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.378492 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.378496 LLDP, length 82 [|LLDP] 19:42:46.378497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.378502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1abb 2b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.378503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.378507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.378510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.378514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.378518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.388485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.388494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.388498 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.388502 LLDP, length 82 [|LLDP] 19:42:46.388504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.388508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ac2 cc5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.388510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.388514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.388516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.388521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.398485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.398496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.398500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.398505 LLDP, length 82 [|LLDP] 19:42:46.398506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.398510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aca 6d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.398512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.398516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.398519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.398524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.408488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.408497 LLDP, length 82 [|LLDP] 19:42:46.408499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.408503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ad2 0e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.408505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.408509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.408511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.408516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.408520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.408524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.418485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.418493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.418498 LLDP, length 82 [|LLDP] 19:42:46.418499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.418503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ad9 afbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.418505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.418509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.418512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.418516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.418520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.428486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.428496 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.428500 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.428504 LLDP, length 82 [|LLDP] 19:42:46.428506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.428510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ae1 50df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.428512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.428516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.428519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.428523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.438484 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.438493 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.438497 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.438501 LLDP, length 82 [|LLDP] 19:42:46.438503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.438507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ae8 f1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.438509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.438513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.438516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.438520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.448483 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.448492 LLDP, length 82 [|LLDP] 19:42:46.448494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.448498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1af0 931f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.448500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.448504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.448506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.448510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.448514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.448519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.458485 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.458494 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.458498 LLDP, length 82 [|LLDP] 19:42:46.458500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.458504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1af8 343f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.458506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.458510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.458512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.458517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.458521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.468497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.468518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.468523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.468527 LLDP, length 82 [|LLDP] 19:42:46.468529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.468534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1aff d55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.468536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.468540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.468543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.468547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.478493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.478505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.478510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.478514 LLDP, length 82 [|LLDP] 19:42:46.478516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.478520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b07 767f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.478522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.478526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.478529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.478533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.488489 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.488499 LLDP, length 82 [|LLDP] 19:42:46.488501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.488505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b0f 179f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.488508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.488512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.488514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.488519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.488523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.488528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.498486 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.498495 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.498500 LLDP, length 82 [|LLDP] 19:42:46.498501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.498506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b16 b8bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.498507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.498511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.498514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.498518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.498523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.508496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.508513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.508517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.508522 LLDP, length 82 [|LLDP] 19:42:46.508523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.508528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b1e 59df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.508530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.508534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.508537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.508541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.518488 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.518505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.518509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.518514 LLDP, length 82 [|LLDP] 19:42:46.518515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.518519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b25 faff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.518521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.518526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.518528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.518533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.528489 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.528498 LLDP, length 82 [|LLDP] 19:42:46.528499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.528504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b2d 9c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.528506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.528510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.528512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.528517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.528521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.528525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.538495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.538510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.538515 LLDP, length 82 [|LLDP] 19:42:46.538516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.538521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b35 3d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.538523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.538527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.538530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.538534 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.538538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.548492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.548503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.548507 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.548511 LLDP, length 82 [|LLDP] 19:42:46.548513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.548517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b3c de5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.548519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.548523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.548526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.548530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.558490 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.558499 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.558503 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.558508 LLDP, length 82 [|LLDP] 19:42:46.558509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.558513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b44 7f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.558515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.558519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.558522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.558526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.568494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.568507 LLDP, length 82 [|LLDP] 19:42:46.568509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.568519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b4c 209f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.568521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.568526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.568528 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.568532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.568537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.568541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.578499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.578515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.578519 LLDP, length 82 [|LLDP] 19:42:46.578521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.578525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b53 c1bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.578527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.578531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.578534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.578538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.578543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.588494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.588505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.588510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.588514 LLDP, length 82 [|LLDP] 19:42:46.588515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.588520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b5b 62df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.588522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.588526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.588528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.588533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.598491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.598500 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.598504 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.598509 LLDP, length 82 [|LLDP] 19:42:46.598511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.598515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b63 03ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.598516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.598521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.598523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.598528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.608521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.608545 LLDP, length 82 [|LLDP] 19:42:46.608547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.608552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b6a a51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.608554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.608559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.608562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.608566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.608570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.608575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.618497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.618510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.618515 LLDP, length 82 [|LLDP] 19:42:46.618516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.618521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b72 463f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.618523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.618527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.618530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.618534 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.618538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.628497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.628510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.628514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.628519 LLDP, length 82 [|LLDP] 19:42:46.628520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.628525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b79 e75f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.628527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.628531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.628534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.628538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.638494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.638506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.638511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.638515 LLDP, length 82 [|LLDP] 19:42:46.638517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.638521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b81 887f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.638523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.638527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.638530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.638534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.648494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.648505 LLDP, length 82 [|LLDP] 19:42:46.648507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.648512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b89 299f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.648513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.648518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.648520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.648525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.648529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.648533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.658491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.658502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.658507 LLDP, length 82 [|LLDP] 19:42:46.658508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.658512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b90 cabf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.658514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.658518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.658521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.658525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.658530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.668495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.668505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.668509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.668514 LLDP, length 82 [|LLDP] 19:42:46.668515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.668519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1b98 6bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.668521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.668525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.668528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.668532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.678495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.678506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.678510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.678514 LLDP, length 82 [|LLDP] 19:42:46.678516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.678520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ba0 0cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.678522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.678526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.678529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.678533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.688495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.688506 LLDP, length 82 [|LLDP] 19:42:46.688508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.688512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ba7 ae1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.688514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.688518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.688521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.688525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.688529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.688534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.698491 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.698502 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.698507 LLDP, length 82 [|LLDP] 19:42:46.698508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.698512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1baf 4f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.698514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.698519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.698521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.698525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.698530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.708497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.708509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.708514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.708518 LLDP, length 82 [|LLDP] 19:42:46.708520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.708524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bb6 f05f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.708526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.708530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.708533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.708538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.718496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.718508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.718512 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.718517 LLDP, length 82 [|LLDP] 19:42:46.718518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.718523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bbe 917f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.718525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.718529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.718532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.718536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.728495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.728507 LLDP, length 82 [|LLDP] 19:42:46.728508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.728513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bc6 329f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.728515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.728519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.728522 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.728526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.728530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.728535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.738493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.738504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.738508 LLDP, length 82 [|LLDP] 19:42:46.738510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.738514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bcd d3bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.738516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.738520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.738523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.738527 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.738531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.748494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.748505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.748510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.748514 LLDP, length 82 [|LLDP] 19:42:46.748516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.748520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bd5 74df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.748522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.748526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.748529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.748533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.758496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.758508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.758513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.758517 LLDP, length 82 [|LLDP] 19:42:46.758518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.758523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bdd 15ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.758525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.758529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.758531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.758536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.768495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.768506 LLDP, length 82 [|LLDP] 19:42:46.768507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.768512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1be4 b71f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.768514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.768518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.768521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.768525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.768529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.768534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.778493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.778505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.778510 LLDP, length 82 [|LLDP] 19:42:46.778511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.778515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bec 583f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.778517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.778521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.778524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.778528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.778533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.788495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.788506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.788510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.788515 LLDP, length 82 [|LLDP] 19:42:46.788516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.788520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bf3 f95f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.788522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.788526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.788529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.788533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.798494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.798504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.798509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.798513 LLDP, length 82 [|LLDP] 19:42:46.798515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.798519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1bfb 9a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.798521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.798525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.798527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.798532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.808494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.808506 LLDP, length 82 [|LLDP] 19:42:46.808507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.808511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c03 3b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.808513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.808518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.808520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.808525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.808529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.808534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.818496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.818509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.818513 LLDP, length 82 [|LLDP] 19:42:46.818515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.818519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c0a dcbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.818521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.818525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.818528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.818532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.818536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.828497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.828509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.828514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.828518 LLDP, length 82 [|LLDP] 19:42:46.828520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.828524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c12 7ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.828526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.828530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.828533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.828537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.838493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.838511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.838516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.838520 LLDP, length 82 [|LLDP] 19:42:46.838522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.838526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c1a 1eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.838528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.838533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.838535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.838540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.848523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.848545 LLDP, length 82 [|LLDP] 19:42:46.848547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.848552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c21 c01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.848554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.848558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.848561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.848566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.848571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.848576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.858505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.858519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.858523 LLDP, length 82 [|LLDP] 19:42:46.858525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.858529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c29 613f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.858531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.858536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.858539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.858544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.858548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.868501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.868513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.868517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.868522 LLDP, length 82 [|LLDP] 19:42:46.868524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.868528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c31 025f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.868530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.868534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.868537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.868541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.878495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.878506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.878510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.878514 LLDP, length 82 [|LLDP] 19:42:46.878516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.878520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c38 a37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.878522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.878527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.878529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.878534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.888499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.888511 LLDP, length 82 [|LLDP] 19:42:46.888512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.888517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c40 449f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.888519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.888523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.888525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.888529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.888534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.888538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.898502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.898512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.898517 LLDP, length 82 [|LLDP] 19:42:46.898518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.898523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c47 e5bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.898524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.898528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.898531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.898535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.898540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.908499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.908510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.908515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.908519 LLDP, length 82 [|LLDP] 19:42:46.908520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.908525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c4f 86df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.908526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.908530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.908533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.908537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.918498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.918512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.918516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.918520 LLDP, length 82 [|LLDP] 19:42:46.918522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.918526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c57 27ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.918528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.918532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.918535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.918539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.928501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.928514 LLDP, length 82 [|LLDP] 19:42:46.928515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.928520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c5e c91f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.928522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.928526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.928529 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.928533 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.928537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.928541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.938497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.938509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.938513 LLDP, length 82 [|LLDP] 19:42:46.938515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.938519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c66 6a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.938521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.938525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.938528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.938532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.938537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.948497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.948510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.948514 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.948518 LLDP, length 82 [|LLDP] 19:42:46.948520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.948524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c6e 0b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.948526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.948530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.948533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.948537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.958499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.958511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.958516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.958520 LLDP, length 82 [|LLDP] 19:42:46.958521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.958526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c75 ac7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.958528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.958532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.958535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.958539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.968499 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.968512 LLDP, length 82 [|LLDP] 19:42:46.968513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.968518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c7d 4d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.968520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.968524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.968526 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.968531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.968535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.968540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.978496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.978507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.978511 LLDP, length 82 [|LLDP] 19:42:46.978513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.978517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c84 eebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.978519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.978524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.978527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.978531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.978535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.988496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.988505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.988510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.988514 LLDP, length 82 [|LLDP] 19:42:46.988515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.988520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c8c 8fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.988521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.988525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.988528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.988532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:46.998494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.998503 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:46.998507 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:46.998512 LLDP, length 82 [|LLDP] 19:42:46.998513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:46.998518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c94 30ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:46.998520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:46.998524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:46.998526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:46.998531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.008494 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.008503 LLDP, length 82 [|LLDP] 19:42:47.008504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.008508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1c9b d21f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.008510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.008514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.008517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.008521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.008525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.008530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.018492 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.018507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.018512 LLDP, length 82 [|LLDP] 19:42:47.018513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.018517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ca3 733f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.018519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.018523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.018526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.018530 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.018535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.028496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.028507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.028511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.028515 LLDP, length 82 [|LLDP] 19:42:47.028517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.028521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cab 145f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.028523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.028527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.028529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.028534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.038495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.038504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.038509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.038513 LLDP, length 82 [|LLDP] 19:42:47.038514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.038519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cb2 b57f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.038521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.038525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.038528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.038532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.048496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.048504 LLDP, length 82 [|LLDP] 19:42:47.048506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.048510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cba 569f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.048512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.048516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.048518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.048523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.048527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.048532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.058495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.058504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.058509 LLDP, length 82 [|LLDP] 19:42:47.058510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.058515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cc1 f7bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.058516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.058520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.058523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.058527 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.058532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.068496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.068507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.068511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.068516 LLDP, length 82 [|LLDP] 19:42:47.068517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.068521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cc9 98df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.068523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.068528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.068530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.068535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.078496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.078505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.078510 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.078514 LLDP, length 82 [|LLDP] 19:42:47.078515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.078520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cd1 39ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.078522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.078526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.078528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.078533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.088496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.088504 LLDP, length 82 [|LLDP] 19:42:47.088505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.088510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cd8 db1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.088512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.088516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.088518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.088523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.088527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.088531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.098495 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.098504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.098508 LLDP, length 82 [|LLDP] 19:42:47.098510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.098514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ce0 7c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.098516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.098519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.098522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.098526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.098531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.108496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.108504 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.108508 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.108513 LLDP, length 82 [|LLDP] 19:42:47.108514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.108518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ce8 1d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.108520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.108524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.108526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.108531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.118497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.118505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.118509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.118514 LLDP, length 82 [|LLDP] 19:42:47.118515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.118519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cef be7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.118521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.118525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.118528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.118532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.128523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.128535 LLDP, length 82 [|LLDP] 19:42:47.128537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.128541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cf7 5f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.128543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.128547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.128550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.128554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.128558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.128563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.138506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.138519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.138524 LLDP, length 82 [|LLDP] 19:42:47.138525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.138530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1cff 00bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.138532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.138536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.138539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.138544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.138549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.148498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.148507 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.148511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.148516 LLDP, length 82 [|LLDP] 19:42:47.148517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.148521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d06 a1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.148523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.148527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.148530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.148535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.158496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.158505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.158509 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.158513 LLDP, length 82 [|LLDP] 19:42:47.158515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.158519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d0e 42ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.158521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.158525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.158528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.158532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.168498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.168507 LLDP, length 82 [|LLDP] 19:42:47.168508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.168512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d15 e41f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.168514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.168518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.168521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.168525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.168529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.168534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.178493 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.178509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.178513 LLDP, length 82 [|LLDP] 19:42:47.178515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.178519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d1d 853f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.178521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.178525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.178527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.178531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.178536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.188500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.188511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.188516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.188520 LLDP, length 82 [|LLDP] 19:42:47.188521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.188526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d25 265f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.188528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.188532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.188535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.188539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.198498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.198508 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.198513 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.198517 LLDP, length 82 [|LLDP] 19:42:47.198519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.198523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d2c c77f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.198525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.198529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.198531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.198536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.208498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.208507 LLDP, length 82 [|LLDP] 19:42:47.208508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.208512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d34 689f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.208514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.208518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.208521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.208525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.208530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.208534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.218497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.218506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.218510 LLDP, length 82 [|LLDP] 19:42:47.218512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.218516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d3c 09bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.218518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.218522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.218525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.218529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.218534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.228500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.228512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.228516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.228520 LLDP, length 82 [|LLDP] 19:42:47.228522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.228526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d43 aadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.228528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.228532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.228535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.228539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.238502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.238513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.238517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.238522 LLDP, length 82 [|LLDP] 19:42:47.238523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.238527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d4b 4bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.238529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.238533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.238536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.238541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.248498 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.248507 LLDP, length 82 [|LLDP] 19:42:47.248509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.248513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d52 ed1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.248515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.248519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.248521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.248526 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.248530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.248535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.258496 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.258505 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.258509 LLDP, length 82 [|LLDP] 19:42:47.258511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.258515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d5a 8e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.258517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.258521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.258524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.258528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.258532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.268497 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.268506 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.268511 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.268515 LLDP, length 82 [|LLDP] 19:42:47.268516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.268521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d62 2f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.268523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.268527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.268529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.268534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.278564 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.278600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.278605 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.278611 LLDP, length 82 [|LLDP] 19:42:47.278613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.278618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d69 d07f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.278620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.278625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.278628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.278633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.288545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.288574 LLDP, length 82 [|LLDP] 19:42:47.288577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.288581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d71 719f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.288584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.288588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.288592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.288596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.288601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.288606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.298507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.298518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.298523 LLDP, length 82 [|LLDP] 19:42:47.298524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.298529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d79 12bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.298530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.298535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.298538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.298542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.298546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.308503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.308514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.308519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.308523 LLDP, length 82 [|LLDP] 19:42:47.308525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.308529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d80 b3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.308531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.308535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.308538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.308542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.318501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.318511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.318516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.318520 LLDP, length 82 [|LLDP] 19:42:47.318522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.318526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d88 54ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.318528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.318532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.318535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.318539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.328501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.328510 LLDP, length 82 [|LLDP] 19:42:47.328512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.328516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d8f f61f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.328518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.328522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.328525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.328529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.328534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.328538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.338506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.338517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.338522 LLDP, length 82 [|LLDP] 19:42:47.338523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.338528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d97 973f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.338530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.338534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.338536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.338541 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.338545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.348502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.348512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.348516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.348521 LLDP, length 82 [|LLDP] 19:42:47.348522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.348527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1d9f 385f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.348529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.348533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.348535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.348540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.358501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.358511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.358515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.358520 LLDP, length 82 [|LLDP] 19:42:47.358521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.358525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1da6 d97f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.358527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.358532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.358534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.358539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.368502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.368512 LLDP, length 82 [|LLDP] 19:42:47.368514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.368519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dae 7a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.368521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.368525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.368527 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.368531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.368536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.368540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.378500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.378509 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.378514 LLDP, length 82 [|LLDP] 19:42:47.378515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.378520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1db6 1bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.378521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.378525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.378528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.378532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.378537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.388501 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.388511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.388515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.388519 LLDP, length 82 [|LLDP] 19:42:47.388521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.388525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dbd bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.388527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.388531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.388534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.388538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.398502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.398511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.398516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.398520 LLDP, length 82 [|LLDP] 19:42:47.398521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.398526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dc5 5dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.398528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.398532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.398534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.398539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.408502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.408511 LLDP, length 82 [|LLDP] 19:42:47.408512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.408517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dcc ff1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.408518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.408522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.408525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.408529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.408533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.408538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.418500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.418510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.418514 LLDP, length 82 [|LLDP] 19:42:47.418515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.418520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dd4 a03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.418521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.418526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.418528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.418532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.418537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.428502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.428511 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.428516 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.428520 LLDP, length 82 [|LLDP] 19:42:47.428521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.428526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ddc 415f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.428528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.428532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.428535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.428539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.438502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.438512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.438517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.438521 LLDP, length 82 [|LLDP] 19:42:47.438523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.438527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1de3 e27f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.438529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.438533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.438536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.438540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.448506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.448518 LLDP, length 82 [|LLDP] 19:42:47.448520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.448525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1deb 839f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.448527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.448531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.448534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.448538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.448543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.448547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.458505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.458516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.458520 LLDP, length 82 [|LLDP] 19:42:47.458522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.458526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1df3 24bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.458527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.458532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.458534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.458539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.458544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.468500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.468510 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.468515 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.468519 LLDP, length 82 [|LLDP] 19:42:47.468520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.468525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1dfa c5df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.468526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.468530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.468533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.468537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.478500 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.478516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.478521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.478525 LLDP, length 82 [|LLDP] 19:42:47.478527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.478531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e02 66ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.478533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.478537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.478540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.478544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.488502 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.488513 LLDP, length 82 [|LLDP] 19:42:47.488514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.488519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e0a 081f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.488521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.488525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.488527 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.488531 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.488536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.488540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.498503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.498512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.498516 LLDP, length 82 [|LLDP] 19:42:47.498518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.498522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e11 a93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.498524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.498528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.498530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.498535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.498539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.508504 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.508513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.508517 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.508522 LLDP, length 82 [|LLDP] 19:42:47.508523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.508527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e19 4a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.508529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.508533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.508536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.508540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.518514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.518527 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.518532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.518537 LLDP, length 82 [|LLDP] 19:42:47.518538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.518543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e20 eb7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.518545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.518549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.518552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.518557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.528503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.528513 LLDP, length 82 [|LLDP] 19:42:47.528515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.528519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e28 8c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.528521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.528525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.528528 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.528532 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.528537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.528541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.538503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.538513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.538517 LLDP, length 82 [|LLDP] 19:42:47.538518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.538523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e30 2dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.538524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.538529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.538531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.538535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.538540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.548505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.548516 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.548521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.548525 LLDP, length 82 [|LLDP] 19:42:47.548526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.548531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e37 cedf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.548533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.548537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.548539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.548544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.558504 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.558513 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.558518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.558522 LLDP, length 82 [|LLDP] 19:42:47.558523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.558528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e3f 6fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.558530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.558534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.558537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.558541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.568505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.568520 LLDP, length 82 [|LLDP] 19:42:47.568522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.568526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e47 111f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.568528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.568532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.568535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.568539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.568544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.568548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.578503 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.578512 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.578517 LLDP, length 82 [|LLDP] 19:42:47.578518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.578522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e4e b23f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.578524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.578528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.578531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.578535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.578540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.588505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.588514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.588518 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.588523 LLDP, length 82 [|LLDP] 19:42:47.588524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.588528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e56 535f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.588530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.588534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.588536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.588541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.598507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.598515 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.598520 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.598524 LLDP, length 82 [|LLDP] 19:42:47.598526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.598530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e5d f47f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.598532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.598536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.598539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.598543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.608516 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.608533 LLDP, length 82 [|LLDP] 19:42:47.608535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.608539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e65 959f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.608542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.608546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.608549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.608553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.608557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.608561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.618506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.618523 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.618528 LLDP, length 82 [|LLDP] 19:42:47.618529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.618534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e6d 36bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.618536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.618541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.618543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.618548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.618552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.628508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.628518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.628523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.628527 LLDP, length 82 [|LLDP] 19:42:47.628528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.628533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e74 d7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.628535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.628539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.628542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.628546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.638512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.638525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.638530 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.638534 LLDP, length 82 [|LLDP] 19:42:47.638535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.638540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e7c 78ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.638542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.638563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.638566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.638572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.648524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.648544 LLDP, length 82 [|LLDP] 19:42:47.648545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.648550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e84 1a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.648552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.648556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.648559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.648563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.648568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.648572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.658508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.658520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.658525 LLDP, length 82 [|LLDP] 19:42:47.658526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.658531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e8b bb3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.658533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.658537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.658539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.658544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.658549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.668507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.668517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.668521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.668526 LLDP, length 82 [|LLDP] 19:42:47.668527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.668531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e93 5c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.668533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.668537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.668540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.668544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.678517 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.678534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.678538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.678543 LLDP, length 82 [|LLDP] 19:42:47.678544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.678548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1e9a fd7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.678550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.678555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.678557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.678562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.688509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.688519 LLDP, length 82 [|LLDP] 19:42:47.688521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.688525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ea2 9e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.688527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.688531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.688534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.688538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.688543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.688547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.698509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.698518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.698523 LLDP, length 82 [|LLDP] 19:42:47.698524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.698528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eaa 3fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.698530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.698534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.698537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.698541 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.698545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.708514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.708530 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.708535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.708539 LLDP, length 82 [|LLDP] 19:42:47.708540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.708545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eb1 e0df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.708547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.708551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.708553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.708558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.718510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.718520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.718525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.718529 LLDP, length 82 [|LLDP] 19:42:47.718531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.718535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eb9 81ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.718537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.718541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.718544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.718548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.728506 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.728516 LLDP, length 82 [|LLDP] 19:42:47.728518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.728522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ec1 231f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.728524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.728528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.728531 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.728535 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.728540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.728544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.738515 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.738528 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.738533 LLDP, length 82 [|LLDP] 19:42:47.738534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.738539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ec8 c43f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.738540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.738545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.738547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.738551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.738556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.748526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.748548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.748553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.748557 LLDP, length 82 [|LLDP] 19:42:47.748559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.748563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ed0 655f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.748566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.748570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.748573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.748578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.758512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.758524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.758528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.758533 LLDP, length 82 [|LLDP] 19:42:47.758534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.758539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ed8 067f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.758541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.758545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.758548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.758552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.768512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.768524 LLDP, length 82 [|LLDP] 19:42:47.768525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.768530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1edf a79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.768532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.768536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.768539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.768543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.768548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.768552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.778510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.778521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.778526 LLDP, length 82 [|LLDP] 19:42:47.778527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.778532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ee7 48bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.778533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.778538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.778540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.778545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.778549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.788507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.788517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.788521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.788526 LLDP, length 82 [|LLDP] 19:42:47.788527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.788531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1eee e9df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.788534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.788538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.788540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.788545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.798505 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.798514 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.798519 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.798523 LLDP, length 82 [|LLDP] 19:42:47.798525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.798529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ef6 8aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.798531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.798535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.798538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.798542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.808508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.808518 LLDP, length 82 [|LLDP] 19:42:47.808520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.808524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1efe 2c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.808526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.808530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.808533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.808537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.808541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.808546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.818507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.818517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.818521 LLDP, length 82 [|LLDP] 19:42:47.818522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.818527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f05 cd3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.818529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.818533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.818535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.818540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.818544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.828508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.828518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.828522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.828526 LLDP, length 82 [|LLDP] 19:42:47.828528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.828532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f0d 6e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.828534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.828538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.828541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.828545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.838509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.838518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.838523 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.838528 LLDP, length 82 [|LLDP] 19:42:47.838529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.838533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f15 0f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.838535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.838540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.838542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.838546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.848508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.848517 LLDP, length 82 [|LLDP] 19:42:47.848519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.848523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f1c b09f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.848525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.848529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.848532 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.848536 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.848540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.848544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.858510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.858520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.858525 LLDP, length 82 [|LLDP] 19:42:47.858526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.858531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f24 51bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.858533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.858537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.858539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.858544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.858548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.868543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.868568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.868573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.868577 LLDP, length 82 [|LLDP] 19:42:47.868579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.868584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f2b f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.868586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.868591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.868595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.868599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.878533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.878550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.878555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.878559 LLDP, length 82 [|LLDP] 19:42:47.878561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.878566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f33 93ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.878568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.878572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.878575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.878580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.888516 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.888528 LLDP, length 82 [|LLDP] 19:42:47.888529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.888534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f3b 351f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.888536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.888540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.888543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.888547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.888551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.888556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.898507 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.898517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.898522 LLDP, length 82 [|LLDP] 19:42:47.898523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.898527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f42 d63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.898529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.898533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.898536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.898540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.898545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.908510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.908519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.908524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.908528 LLDP, length 82 [|LLDP] 19:42:47.908529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.908533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f4a 775f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.908535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.908539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.908542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.908546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.918509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.918518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.918522 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.918526 LLDP, length 82 [|LLDP] 19:42:47.918528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.918532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f52 187f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.918534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.918538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.918541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.918545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.928509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.928518 LLDP, length 82 [|LLDP] 19:42:47.928519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.928524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f59 b99f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.928525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.928530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.928532 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.928537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.928541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.928545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.938509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.938518 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.938523 LLDP, length 82 [|LLDP] 19:42:47.938524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.938528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f61 5abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.938530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.938534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.938537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.938541 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.938545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.948510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.948520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.948524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.948528 LLDP, length 82 [|LLDP] 19:42:47.948530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.948534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f68 fbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.948536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.948540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.948543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.948547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.958510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.958521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.958525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.958529 LLDP, length 82 [|LLDP] 19:42:47.958531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.958535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f70 9cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.958537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.958541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.958543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.958547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.968512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.968522 LLDP, length 82 [|LLDP] 19:42:47.968524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.968528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f78 3e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.968530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.968534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.968537 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.968542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.968546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.968550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.978510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.978520 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.978524 LLDP, length 82 [|LLDP] 19:42:47.978526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.978530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f7f df3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.978531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.978536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.978538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.978542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.978547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.988514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.988524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.988528 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.988532 LLDP, length 82 [|LLDP] 19:42:47.988534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.988538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f87 805f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.988540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.988544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.988546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.988551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:47.998511 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.998521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:47.998525 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:47.998529 LLDP, length 82 [|LLDP] 19:42:47.998531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:47.998535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f8f 217f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:47.998537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:47.998541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:47.998544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:47.998548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.008510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.008518 LLDP, length 82 [|LLDP] 19:42:48.008520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.008524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f96 c29f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.008526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.008530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.008533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.008537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.008541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.008545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.018509 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.018517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.018522 LLDP, length 82 [|LLDP] 19:42:48.018523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.018528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1f9e 63bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.018529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.018533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.018536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.018540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.018545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.028510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.028519 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.028524 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.028528 LLDP, length 82 [|LLDP] 19:42:48.028529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.028534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fa6 04df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.028536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.028540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.028542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.028546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.038508 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.038517 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.038521 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.038525 LLDP, length 82 [|LLDP] 19:42:48.038527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.038531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fad a5ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.038533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.038537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.038539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.038544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.048510 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.048519 LLDP, length 82 [|LLDP] 19:42:48.048520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.048524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fb5 471f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.048526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.048530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.048533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.048537 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.048541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.048546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.058512 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.058521 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.058525 LLDP, length 82 [|LLDP] 19:42:48.058527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.058532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fbc e83f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.058533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.058537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.058540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.058544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.058548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.068514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.068526 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.068530 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.068535 LLDP, length 82 [|LLDP] 19:42:48.068536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.068540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fc4 895f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.068542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.068546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.068549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.068553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.078523 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.078538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.078543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.078547 LLDP, length 82 [|LLDP] 19:42:48.078549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.078553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fcc 2a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.078555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.078560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.078562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.078567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.088521 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.088534 LLDP, length 82 [|LLDP] 19:42:48.088536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.088540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fd3 cb9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.088542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.088546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.088549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.088553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.088558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.088562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.098514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.098525 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.098529 LLDP, length 82 [|LLDP] 19:42:48.098531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.098535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fdb 6cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.098537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.098541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.098544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.098548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.098553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.108514 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.108524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.108529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.108533 LLDP, length 82 [|LLDP] 19:42:48.108534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.108539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fe3 0ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.108541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.108545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.108547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.108552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.118515 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.118524 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.118529 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.118533 LLDP, length 82 [|LLDP] 19:42:48.118535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.118539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1fea aeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.118541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.118545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.118548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.118553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.128517 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.128526 LLDP, length 82 [|LLDP] 19:42:48.128528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.128532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ff2 501f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.128534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.128538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.128541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.128545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.128549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.128554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.138529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.138549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.138554 LLDP, length 82 [|LLDP] 19:42:48.138555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.138560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1ff9 f13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.138562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.138566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.138569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.138574 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.138578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.148526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.148542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.148547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.148551 LLDP, length 82 [|LLDP] 19:42:48.148553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.148557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2001 925f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.148559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.148563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.148567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.148571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.158526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.158543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.158548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.158552 LLDP, length 82 [|LLDP] 19:42:48.158553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.158558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2009 337f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.158560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.158565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.158568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.158573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.168525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.168542 LLDP, length 82 [|LLDP] 19:42:48.168544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.168548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2010 d49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.168551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.168555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.168557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.168562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.168566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.168571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.178525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.178542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.178546 LLDP, length 82 [|LLDP] 19:42:48.178548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.178552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2018 75bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.178554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.178558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.178561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.178565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.178570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.188528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.188545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.188550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.188554 LLDP, length 82 [|LLDP] 19:42:48.188556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.188560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2020 16df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.188562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.188566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.188569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.188574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.198524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.198539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.198544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.198549 LLDP, length 82 [|LLDP] 19:42:48.198550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.198554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2027 b7ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.198556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.198561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.198563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.198569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.208524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.208538 LLDP, length 82 [|LLDP] 19:42:48.208540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.208545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 202f 591f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.208547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.208551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.208554 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.208558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.208562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.208567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.218525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.218539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.218544 LLDP, length 82 [|LLDP] 19:42:48.218545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.218550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2036 fa3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.218552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.218556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.218559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.218563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.218568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.228525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.228539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.228543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.228548 LLDP, length 82 [|LLDP] 19:42:48.228549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.228554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 203e 9b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.228556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.228560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.228563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.228567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.238532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.238547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.238552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.238556 LLDP, length 82 [|LLDP] 19:42:48.238557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.238562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2046 3c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.238564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.238568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.238571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.238576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.248529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.248544 LLDP, length 82 [|LLDP] 19:42:48.248545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.248550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 204d dd9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.248552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.248556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.248559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.248563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.248567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.248572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.258527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.258543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.258548 LLDP, length 82 [|LLDP] 19:42:48.258549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.258553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2055 7ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.258555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.258560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.258562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.258567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.258572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.268526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.268541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.268546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.268550 LLDP, length 82 [|LLDP] 19:42:48.268552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.268556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 205d 1fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.268558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.268562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.268565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.268569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.278531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.278550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.278554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.278559 LLDP, length 82 [|LLDP] 19:42:48.278561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.278565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2064 c0ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.278568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.278572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.278575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.278580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.288531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.288548 LLDP, length 82 [|LLDP] 19:42:48.288549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.288554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 206c 621f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.288556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.288561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.288564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.288568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.288572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.288577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.298526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.298541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.298546 LLDP, length 82 [|LLDP] 19:42:48.298548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.298552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2074 033f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.298554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.298558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.298561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.298565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.298570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.308527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.308543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.308547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.308552 LLDP, length 82 [|LLDP] 19:42:48.308553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.308558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 207b a45f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.308560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.308564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.308567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.308572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.318524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.318539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.318543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.318547 LLDP, length 82 [|LLDP] 19:42:48.318549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.318554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2083 457f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.318556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.318560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.318563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.318567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.328526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.328540 LLDP, length 82 [|LLDP] 19:42:48.328542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.328546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 208a e69f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.328549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.328553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.328555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.328560 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.328564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.328568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.338527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.338542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.338547 LLDP, length 82 [|LLDP] 19:42:48.338548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.338553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2092 87bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.338555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.338559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.338562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.338566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.338571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.348524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.348540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.348545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.348549 LLDP, length 82 [|LLDP] 19:42:48.348551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.348555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 209a 28df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.348558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.348561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.348564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.348569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.358526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.358541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.358545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.358550 LLDP, length 82 [|LLDP] 19:42:48.358551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.358555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20a1 c9ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.358558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.358562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.358565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.358569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.368529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.368543 LLDP, length 82 [|LLDP] 19:42:48.368545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.368550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20a9 6b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.368552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.368556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.368559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.368563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.368567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.368572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.378528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.378544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.378549 LLDP, length 82 [|LLDP] 19:42:48.378551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.378555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20b1 0c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.378558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.378562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.378565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.378569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.378574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.388531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.388547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.388552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.388556 LLDP, length 82 [|LLDP] 19:42:48.388557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.388562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20b8 ad5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.388564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.388568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.388571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.388575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.398526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.398540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.398545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.398549 LLDP, length 82 [|LLDP] 19:42:48.398550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.398555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20c0 4e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.398557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.398561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.398564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.398568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.408531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.408547 LLDP, length 82 [|LLDP] 19:42:48.408549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.408554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20c7 ef9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.408556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.408560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.408563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.408568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.408572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.408577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.418534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.418551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.418556 LLDP, length 82 [|LLDP] 19:42:48.418558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.418563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20cf 90bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.418565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.418569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.418572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.418576 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.418581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.428533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.428549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.428553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.428558 LLDP, length 82 [|LLDP] 19:42:48.428559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.428564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20d7 31df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.428566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.428570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.428573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.428578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.438528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.438544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.438548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.438552 LLDP, length 82 [|LLDP] 19:42:48.438554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.438558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20de d2ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.438560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.438564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.438567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.438571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.448529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.448543 LLDP, length 82 [|LLDP] 19:42:48.448544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.448549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20e6 741f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.448551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.448555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.448558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.448562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.448566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.448571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.458528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.458542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.458547 LLDP, length 82 [|LLDP] 19:42:48.458548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.458553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20ee 153f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.458555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.458559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.458562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.458566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.458571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.468531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.468546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.468550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.468555 LLDP, length 82 [|LLDP] 19:42:48.468556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.468561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20f5 b65f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.468563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.468567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.468570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.468574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.478529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.478545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.478550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.478554 LLDP, length 82 [|LLDP] 19:42:48.478556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.478560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 20fd 577f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.478562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.478566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.478569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.478574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.488530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.488546 LLDP, length 82 [|LLDP] 19:42:48.488547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.488552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2104 f89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.488554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.488558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.488560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.488565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.488569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.488574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.498529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.498543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.498548 LLDP, length 82 [|LLDP] 19:42:48.498549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.498554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 210c 99bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.498555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.498560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.498563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.498567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.498572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.508531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.508546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.508551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.508555 LLDP, length 82 [|LLDP] 19:42:48.508557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.508561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2114 3adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.508563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.508567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.508570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.508575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.518531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.518548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.518552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.518557 LLDP, length 82 [|LLDP] 19:42:48.518558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.518563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 211b dbff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.518565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.518569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.518572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.518577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.528534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.528549 LLDP, length 82 [|LLDP] 19:42:48.528551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.528556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2123 7d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.528558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.528562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.528565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.528569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.528574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.528579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.538529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.538544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.538548 LLDP, length 82 [|LLDP] 19:42:48.538550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.538555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 212b 1e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.538557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.538561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.538564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.538568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.538572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.548531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.548545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.548550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.548554 LLDP, length 82 [|LLDP] 19:42:48.548555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.548560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2132 bf5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.548562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.548566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.548568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.548573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.558532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.558546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.558551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.558555 LLDP, length 82 [|LLDP] 19:42:48.558556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.558561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 213a 607f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.558563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.558567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.558570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.558574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.568531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.568545 LLDP, length 82 [|LLDP] 19:42:48.568547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.568551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2142 019f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.568553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.568557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.568560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.568564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.568569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.568573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.578529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.578545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.578550 LLDP, length 82 [|LLDP] 19:42:48.578551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.578555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2149 a2bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.578557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.578562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.578565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.578569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.578574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.588533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.588550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.588554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.588559 LLDP, length 82 [|LLDP] 19:42:48.588560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.588565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2151 43df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.588567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.588571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.588574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.588579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.598532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.598548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.598553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.598557 LLDP, length 82 [|LLDP] 19:42:48.598558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.598563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2158 e4ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.598565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.598569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.598572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.598577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.608533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.608549 LLDP, length 82 [|LLDP] 19:42:48.608550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.608555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2160 861f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.608557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.608561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.608564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.608568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.608572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.608577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.618530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.618544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.618548 LLDP, length 82 [|LLDP] 19:42:48.618549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.618554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2168 273f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.618556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.618560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.618563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.618567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.618572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.628529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.628545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.628549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.628553 LLDP, length 82 [|LLDP] 19:42:48.628555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.628559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 216f c85f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.628561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.628565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.628568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.628573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.638532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.638548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.638553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.638557 LLDP, length 82 [|LLDP] 19:42:48.638559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.638563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2177 697f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.638565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.638569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.638572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.638577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.648533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.648548 LLDP, length 82 [|LLDP] 19:42:48.648550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.648555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 217f 0a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.648557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.648561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.648564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.648568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.648573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.648577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.658532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.658547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.658551 LLDP, length 82 [|LLDP] 19:42:48.658553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.658558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2186 abbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.658560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.658564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.658566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.658571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.658576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.668531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.668546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.668550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.668555 LLDP, length 82 [|LLDP] 19:42:48.668556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.668561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 218e 4cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.668563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.668567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.668570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.668574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.678531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.678546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.678551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.678555 LLDP, length 82 [|LLDP] 19:42:48.678556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.678561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2195 edff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.678563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.678567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.678570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.678574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.688531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.688546 LLDP, length 82 [|LLDP] 19:42:48.688548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.688552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 219d 8f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.688554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.688559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.688561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.688566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.688570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.688574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.698532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.698546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.698551 LLDP, length 82 [|LLDP] 19:42:48.698553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.698557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21a5 303f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.698559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.698564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.698566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.698571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.698575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.708531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.708546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.708550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.708554 LLDP, length 82 [|LLDP] 19:42:48.708556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.708560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21ac d15f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.708562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.708567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.708569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.708574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.718534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.718549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.718553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.718558 LLDP, length 82 [|LLDP] 19:42:48.718560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.718564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21b4 727f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.718566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.718570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.718573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.718578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.728533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.728548 LLDP, length 82 [|LLDP] 19:42:48.728550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.728555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21bc 139f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.728557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.728561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.728563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.728567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.728572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.728576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.738535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.738551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.738555 LLDP, length 82 [|LLDP] 19:42:48.738556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.738561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21c3 b4bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.738563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.738567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.738570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.738574 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.738579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.748547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.748568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.748573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.748577 LLDP, length 82 [|LLDP] 19:42:48.748579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.748583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21cb 55df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.748585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.748590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.748593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.748598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.758538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.758553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.758558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.758563 LLDP, length 82 [|LLDP] 19:42:48.758564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.758569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21d2 f6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.758571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.758575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.758578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.758583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.768533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.768547 LLDP, length 82 [|LLDP] 19:42:48.768549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.768554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21da 981f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.768556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.768560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.768562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.768567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.768571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.768576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.778542 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.778560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.778564 LLDP, length 82 [|LLDP] 19:42:48.778566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.778570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21e2 393f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.778572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.778576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.778579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.778583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.778588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.788537 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.788553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.788557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.788561 LLDP, length 82 [|LLDP] 19:42:48.788563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.788568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21e9 da5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.788570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.788574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.788577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.788582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.798535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.798550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.798554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.798558 LLDP, length 82 [|LLDP] 19:42:48.798560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.798564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21f1 7b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.798566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.798570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.798573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.798578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.808543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.808559 LLDP, length 82 [|LLDP] 19:42:48.808561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.808565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 21f9 1c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.808567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.808571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.808574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.808579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.808583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.808588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.818541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.818560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.818565 LLDP, length 82 [|LLDP] 19:42:48.818566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.818571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2200 bdbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.818573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.818577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.818580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.818585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.818589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.828540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.828557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.828561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.828565 LLDP, length 82 [|LLDP] 19:42:48.828567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.828571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2208 5edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.828573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.828577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.828580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.828585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.838536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.838552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.838556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.838561 LLDP, length 82 [|LLDP] 19:42:48.838562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.838566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 220f ffff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.838568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.838573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.838575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.838580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.848543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.848562 LLDP, length 82 [|LLDP] 19:42:48.848563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.848568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2217 a11f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.848570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.848574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.848577 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.848581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.848586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.848590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.858538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.858553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.858557 LLDP, length 82 [|LLDP] 19:42:48.858559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.858563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 221f 423f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.858565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.858570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.858572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.858577 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.858581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.868535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.868550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.868555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.868559 LLDP, length 82 [|LLDP] 19:42:48.868561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.868565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2226 e35f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.868567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.868571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.868574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.868578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.878555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.878580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.878585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.878589 LLDP, length 82 [|LLDP] 19:42:48.878591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.878596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 222e 847f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.878598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.878603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.878606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.878610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.888560 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.888582 LLDP, length 82 [|LLDP] 19:42:48.888584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.888589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2236 259f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.888591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.888595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.888598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.888603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.888608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.888613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.898561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.898587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.898592 LLDP, length 82 [|LLDP] 19:42:48.898594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.898599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 223d c6bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.898601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.898606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.898609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.898614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.898618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.908532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.908543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.908547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.908552 LLDP, length 82 [|LLDP] 19:42:48.908553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.908558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2245 67df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.908560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.908564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.908567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.908572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.918531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.918541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.918546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.918550 LLDP, length 82 [|LLDP] 19:42:48.918552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.918556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 224d 08ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.918558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.918562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.918565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.918569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.928527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.928536 LLDP, length 82 [|LLDP] 19:42:48.928537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.928542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2254 aa1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.928544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.928548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.928550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.928555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.928559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.928563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.938527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.938538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.938542 LLDP, length 82 [|LLDP] 19:42:48.938544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.938548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 225c 4b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.938550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.938554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.938557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.938561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.938566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.948526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.948535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.948540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.948544 LLDP, length 82 [|LLDP] 19:42:48.948545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.948550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2263 ec5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.948552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.948556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.948559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.948563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.958526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.958534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.958539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.958543 LLDP, length 82 [|LLDP] 19:42:48.958545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.958549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 226b 8d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.958551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.958555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.958558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.958562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.968525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.968534 LLDP, length 82 [|LLDP] 19:42:48.968535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.968540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2273 2e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.968542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.968546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.968549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.968553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.968557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.968562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.978526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.978535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.978539 LLDP, length 82 [|LLDP] 19:42:48.978541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.978545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 227a cfbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.978547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.978551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.978553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.978557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.978562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.988524 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.988533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.988538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.988542 LLDP, length 82 [|LLDP] 19:42:48.988543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.988548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2282 70df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.988549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.988553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.988556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.988560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:48.998525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.998533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:48.998538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:48.998542 LLDP, length 82 [|LLDP] 19:42:48.998543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:48.998548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 228a 11ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:48.998550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:48.998554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:48.998556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:48.998561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.008526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.008536 LLDP, length 82 [|LLDP] 19:42:49.008537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.008542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2291 b31f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.008544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.008548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.008550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.008555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.008559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.008564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.018526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.018535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.018540 LLDP, length 82 [|LLDP] 19:42:49.018541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.018545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2299 543f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.018547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.018551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.018554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.018558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.018563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.028525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.028534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.028539 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.028543 LLDP, length 82 [|LLDP] 19:42:49.028545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.028549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22a0 f55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.028551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.028555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.028557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.028562 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.038529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.038539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.038543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.038548 LLDP, length 82 [|LLDP] 19:42:49.038549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.038553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22a8 967f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.038555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.038559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.038562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.038566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.048525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.048535 LLDP, length 82 [|LLDP] 19:42:49.048536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.048541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22b0 379f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.048542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.048547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.048549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.048554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.048558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.048563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.058526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.058535 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.058540 LLDP, length 82 [|LLDP] 19:42:49.058541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.058545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22b7 d8bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.058547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.058551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.058554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.058558 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.058563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.068525 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.068533 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.068538 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.068542 LLDP, length 82 [|LLDP] 19:42:49.068543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.068547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22bf 79df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.068549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.068553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.068556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.068560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.078527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.078536 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.078540 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.078545 LLDP, length 82 [|LLDP] 19:42:49.078546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.078550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22c7 1aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.078552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.078557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.078559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.078564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.088527 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.088536 LLDP, length 82 [|LLDP] 19:42:49.088538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.088542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22ce bc1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.088545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.088549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.088551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.088556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.088560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.088564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.098526 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.098534 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.098539 LLDP, length 82 [|LLDP] 19:42:49.098540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.098544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22d6 5d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.098546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.098550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.098553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.098557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.098561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.108528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.108544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.108549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.108553 LLDP, length 82 [|LLDP] 19:42:49.108554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.108559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22dd fe5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.108561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.108565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.108568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.108572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.118536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.118549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.118554 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.118559 LLDP, length 82 [|LLDP] 19:42:49.118560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.118565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22e5 9f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.118566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.118570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.118573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.118578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.128531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.128540 LLDP, length 82 [|LLDP] 19:42:49.128542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.128546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22ed 409f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.128548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.128552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.128555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.128559 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.128563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.128568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.138530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.138539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.138543 LLDP, length 82 [|LLDP] 19:42:49.138545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.138549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22f4 e1bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.138551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.138555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.138558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.138562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.138567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.148532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.148543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.148548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.148552 LLDP, length 82 [|LLDP] 19:42:49.148553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.148557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 22fc 82df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.148559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.148563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.148566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.148570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.158531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.158540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.158544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.158549 LLDP, length 82 [|LLDP] 19:42:49.158550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.158554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2304 23ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.158556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.158560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.158563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.158567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.168528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.168537 LLDP, length 82 [|LLDP] 19:42:49.168538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.168543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 230b c51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.168545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.168549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.168551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.168556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.168560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.168564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.178529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.178538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.178542 LLDP, length 82 [|LLDP] 19:42:49.178544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.178548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2313 663f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.178550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.178554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.178557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.178561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.178565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.188532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.188542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.188547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.188551 LLDP, length 82 [|LLDP] 19:42:49.188552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.188557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 231b 075f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.188558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.188562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.188565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.188569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.198530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.198540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.198544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.198549 LLDP, length 82 [|LLDP] 19:42:49.198550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.198555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2322 a87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.198557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.198560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.198563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.198567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.208531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.208542 LLDP, length 82 [|LLDP] 19:42:49.208543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.208548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 232a 499f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.208550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.208554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.208557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.208561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.208565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.208569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.218530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.218539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.218543 LLDP, length 82 [|LLDP] 19:42:49.218545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.218549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2331 eabf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.218551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.218555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.218558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.218562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.218567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.228529 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.228538 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.228542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.228547 LLDP, length 82 [|LLDP] 19:42:49.228548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.228552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2339 8bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.228555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.228559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.228561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.228566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.238528 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.238537 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.238542 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.238546 LLDP, length 82 [|LLDP] 19:42:49.238547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.238552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2341 2cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.238554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.238558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.238561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.238565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.248532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.248543 LLDP, length 82 [|LLDP] 19:42:49.248544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.248548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2348 ce1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.248550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.248554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.248557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.248561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.248565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.248570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.258531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.258541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.258545 LLDP, length 82 [|LLDP] 19:42:49.258547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.258551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2350 6f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.258553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.258557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.258559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.258563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.258568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.268531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.268540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.268545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.268549 LLDP, length 82 [|LLDP] 19:42:49.268551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.268555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2358 105f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.268557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.268561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.268563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.268568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.278530 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.278540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.278544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.278549 LLDP, length 82 [|LLDP] 19:42:49.278550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.278554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 235f b17f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.278556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.278561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.278563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.278567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.288533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.288544 LLDP, length 82 [|LLDP] 19:42:49.288546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.288550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2367 529f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.288552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.288556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.288559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.288563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.288567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.288572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.298533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.298543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.298547 LLDP, length 82 [|LLDP] 19:42:49.298549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.298553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 236e f3bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.298555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.298559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.298561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.298565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.298570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.308531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.308540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.308545 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.308549 LLDP, length 82 [|LLDP] 19:42:49.308550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.308554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2376 94df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.308556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.308560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.308563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.308567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.318531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.318542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.318546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.318551 LLDP, length 82 [|LLDP] 19:42:49.318552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.318557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 237e 35ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.318559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.318563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.318566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.318570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.328533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.328542 LLDP, length 82 [|LLDP] 19:42:49.328543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.328548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2385 d71f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.328549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.328554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.328556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.328561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.328565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.328570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.338531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.338540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.338545 LLDP, length 82 [|LLDP] 19:42:49.338546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.338550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 238d 783f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.338552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.338556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.338559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.338563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.338568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.348532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.348543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.348548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.348552 LLDP, length 82 [|LLDP] 19:42:49.348554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.348558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2395 195f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.348560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.348564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.348567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.348571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.358533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.358543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.358548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.358552 LLDP, length 82 [|LLDP] 19:42:49.358554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.358558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 239c ba7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.358560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.358565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.358567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.358572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.368533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.368543 LLDP, length 82 [|LLDP] 19:42:49.368544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.368549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23a4 5b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.368550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.368554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.368557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.368561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.368565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.368570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.378532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.378541 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.378546 LLDP, length 82 [|LLDP] 19:42:49.378548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.378552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23ab fcbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.378554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.378558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.378560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.378564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.378569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.388533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.388542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.388546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.388550 LLDP, length 82 [|LLDP] 19:42:49.388552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.388556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23b3 9ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.388558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.388562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.388565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.388569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.398531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.398539 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.398543 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.398548 LLDP, length 82 [|LLDP] 19:42:49.398549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.398553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23bb 3eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.398556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.398560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.398562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.398567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.408535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.408544 LLDP, length 82 [|LLDP] 19:42:49.408545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.408550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23c2 e01f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.408552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.408556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.408558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.408563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.408567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.408571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.418532 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.418543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.418547 LLDP, length 82 [|LLDP] 19:42:49.418548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.418553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23ca 813f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.418555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.418559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.418561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.418566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.418570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.428533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.428543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.428547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.428551 LLDP, length 82 [|LLDP] 19:42:49.428553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.428557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23d2 225f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.428559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.428563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.428565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.428570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.438534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.438543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.438547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.438551 LLDP, length 82 [|LLDP] 19:42:49.438553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.438557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23d9 c37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.438559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.438563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.438565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.438570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.448531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.448539 LLDP, length 82 [|LLDP] 19:42:49.448540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.448545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23e1 649f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.448547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.448551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.448553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.448557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.448562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.448566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.458535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.458545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.458549 LLDP, length 82 [|LLDP] 19:42:49.458551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.458555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23e9 05bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.458557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.458561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.458564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.458568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.458573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.468533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.468542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.468546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.468550 LLDP, length 82 [|LLDP] 19:42:49.468552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.468557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23f0 a6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.468558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.468562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.468565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.468570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.478531 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.478540 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.478544 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.478548 LLDP, length 82 [|LLDP] 19:42:49.478550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.478554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23f8 47ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.478556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.478560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.478563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.478567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.488533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.488541 LLDP, length 82 [|LLDP] 19:42:49.488543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.488547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 23ff e91f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.488549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.488553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.488556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.488560 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.488564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.488569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.498533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.498542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.498546 LLDP, length 82 [|LLDP] 19:42:49.498548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.498552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2407 8a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.498554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.498558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.498561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.498565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.498570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.508534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.508542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.508547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.508551 LLDP, length 82 [|LLDP] 19:42:49.508552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.508557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 240f 2b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.508559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.508563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.508566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.508570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.518534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.518542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.518546 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.518551 LLDP, length 82 [|LLDP] 19:42:49.518552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.518557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2416 cc7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.518558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.518563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.518565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.518570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.528535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.528546 LLDP, length 82 [|LLDP] 19:42:49.528547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.528552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 241e 6d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.528553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.528558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.528560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.528564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.528569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.528573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.538534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.538543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.538547 LLDP, length 82 [|LLDP] 19:42:49.538548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.538552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2426 0ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.538554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.538559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.538561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.538565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.538570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.548534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.548543 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.548547 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.548551 LLDP, length 82 [|LLDP] 19:42:49.548553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.548557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 242d afdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.548559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.548563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.548565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.548570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.558535 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.558545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.558549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.558553 LLDP, length 82 [|LLDP] 19:42:49.558554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.558559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2435 50ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.558561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.558565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.558568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.558572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.568540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.568552 LLDP, length 82 [|LLDP] 19:42:49.568553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.568557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 243c f21f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.568559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.568563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.568566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.568570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.568575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.568579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.578536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.578546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.578550 LLDP, length 82 [|LLDP] 19:42:49.578552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.578556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2444 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.578558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.578562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.578564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.578568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.578573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.588534 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.588544 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.588548 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.588552 LLDP, length 82 [|LLDP] 19:42:49.588554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.588558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 244c 345f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.588560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.588564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.588567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.588571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.598557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.598574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.598578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.598583 LLDP, length 82 [|LLDP] 19:42:49.598584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.598589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2453 d57f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.598591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.598595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.598598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.598602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.608538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.608548 LLDP, length 82 [|LLDP] 19:42:49.608549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.608553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 245b 769f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.608555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.608559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.608562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.608567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.608571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.608576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.618538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.618547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.618551 LLDP, length 82 [|LLDP] 19:42:49.618553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.618557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2463 17bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.618559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.618563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.618566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.618570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.618574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.628539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.628550 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.628555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.628559 LLDP, length 82 [|LLDP] 19:42:49.628561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.628565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 246a b8df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.628567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.628571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.628573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.628578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.638536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.638545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.638549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.638554 LLDP, length 82 [|LLDP] 19:42:49.638555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.638560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2472 59ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.638562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.638566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.638568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.638573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.648537 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.648545 LLDP, length 82 [|LLDP] 19:42:49.648547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.648551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2479 fb1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.648553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.648557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.648559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.648564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.648568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.648573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.658533 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.658542 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.658546 LLDP, length 82 [|LLDP] 19:42:49.658547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.658552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2481 9c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.658554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.658558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.658560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.658564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.658569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.668538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.668548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.668553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.668557 LLDP, length 82 [|LLDP] 19:42:49.668558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.668563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2489 3d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.668564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.668568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.668571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.668575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.678538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.678547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.678552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.678556 LLDP, length 82 [|LLDP] 19:42:49.678557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.678562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2490 de7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.678563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.678568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.678571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.678575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.688536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.688546 LLDP, length 82 [|LLDP] 19:42:49.688547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.688552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2498 7f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.688553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.688557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.688560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.688564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.688568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.688573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.698537 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.698546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.698550 LLDP, length 82 [|LLDP] 19:42:49.698552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.698556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24a0 20bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.698558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.698562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.698565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.698569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.698574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.708540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.708549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.708553 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.708558 LLDP, length 82 [|LLDP] 19:42:49.708559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.708563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24a7 c1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.708566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.708570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.708572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.708576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.718538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.718546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.718551 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.718555 LLDP, length 82 [|LLDP] 19:42:49.718557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.718561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24af 62ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.718563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.718567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.718569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.718575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.728539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.728549 LLDP, length 82 [|LLDP] 19:42:49.728551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.728555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24b7 041f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.728557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.728561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.728564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.728568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.728573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.728577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.738541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.738551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.738555 LLDP, length 82 [|LLDP] 19:42:49.738557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.738561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24be a53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.738563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.738567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.738569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.738573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.738578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.748536 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.748545 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.748549 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.748553 LLDP, length 82 [|LLDP] 19:42:49.748555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.748559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24c6 465f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.748561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.748565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.748568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.748572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.758538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.758546 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.758550 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.758554 LLDP, length 82 [|LLDP] 19:42:49.758556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.758561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24cd e77f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.758562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.758567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.758569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.758573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.768539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.768549 LLDP, length 82 [|LLDP] 19:42:49.768551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.768555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24d5 889f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.768557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.768561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.768564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.768568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.768572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.768576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.778554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.778571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.778575 LLDP, length 82 [|LLDP] 19:42:49.778577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.778581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24dd 29bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.778583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.778587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.778590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.778595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.778599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.788541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.788551 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.788555 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.788560 LLDP, length 82 [|LLDP] 19:42:49.788561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.788565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24e4 cadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.788567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.788571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.788574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.788579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.798539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.798548 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.798552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.798556 LLDP, length 82 [|LLDP] 19:42:49.798558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.798563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24ec 6bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.798565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.798569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.798571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.798576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.808539 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.808549 LLDP, length 82 [|LLDP] 19:42:49.808550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.808554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24f4 0d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.808556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.808560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.808563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.808567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.808571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.808576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.818540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.818549 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.818553 LLDP, length 82 [|LLDP] 19:42:49.818555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.818559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 24fb ae3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.818561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.818565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.818568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.818572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.818576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.828538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.828547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.828552 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.828556 LLDP, length 82 [|LLDP] 19:42:49.828557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.828562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2503 4f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.828563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.828567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.828570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.828574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.838541 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.838552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.838556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.838561 LLDP, length 82 [|LLDP] 19:42:49.838562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.838566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 250a f07f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.838568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.838572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.838575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.838579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.848540 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.848549 LLDP, length 82 [|LLDP] 19:42:49.848551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.848555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2512 919f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.848557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.848561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.848564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.848568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.848573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.848577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.858538 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.858547 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.858551 LLDP, length 82 [|LLDP] 19:42:49.858553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.858557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 251a 32bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.858559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.858563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.858565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.858569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.858574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.868542 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.868552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.868556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.868561 LLDP, length 82 [|LLDP] 19:42:49.868562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.868566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2521 d3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.868568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.868572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.868575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.868580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.878550 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.878564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.878568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.878573 LLDP, length 82 [|LLDP] 19:42:49.878574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.878579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2529 74ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.878581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.878586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.878588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.878593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.888571 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.888593 LLDP, length 82 [|LLDP] 19:42:49.888595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.888600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2531 161f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.888602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.888607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.888610 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.888615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.888619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.888624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.898544 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.898555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.898559 LLDP, length 82 [|LLDP] 19:42:49.898560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.898565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2538 b73f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.898567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.898571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.898573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.898578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.898583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.908543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.908552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.908557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.908561 LLDP, length 82 [|LLDP] 19:42:49.908562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.908567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2540 585f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.908569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.908573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.908576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.908580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.918585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.918610 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.918615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.918620 LLDP, length 82 [|LLDP] 19:42:49.918622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.918627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2547 f97f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.918629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.918634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.918638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.918643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.928561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.928578 LLDP, length 82 [|LLDP] 19:42:49.928579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.928584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 254f 9a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.928586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.928590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.928593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.928598 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.928602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.928607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.938553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.938569 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.938574 LLDP, length 82 [|LLDP] 19:42:49.938576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.938581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2557 3bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.938583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.938588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.938590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.938595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.938600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.948545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.948558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.948562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.948567 LLDP, length 82 [|LLDP] 19:42:49.948568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.948573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 255e dcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.948575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.948579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.948582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.948586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.958543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.958553 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.958557 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.958561 LLDP, length 82 [|LLDP] 19:42:49.958563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.958567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2566 7dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.958569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.958573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.958576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.958580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.968542 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.968552 LLDP, length 82 [|LLDP] 19:42:49.968553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.968558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 256e 1f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.968560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.968564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.968567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.968571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.968576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.968580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.978552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.978571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.978576 LLDP, length 82 [|LLDP] 19:42:49.978577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.978582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2575 c03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.978583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.978587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.978590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.978594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.978599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.988546 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.988559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.988563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.988568 LLDP, length 82 [|LLDP] 19:42:49.988569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.988574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 257d 615f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.988575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.988580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.988582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.988587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:49.998543 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.998552 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:49.998556 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:49.998560 LLDP, length 82 [|LLDP] 19:42:49.998562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:49.998567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2585 027f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:49.998568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:49.998573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:49.998575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:49.998580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.008545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.008554 LLDP, length 82 [|LLDP] 19:42:50.008556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.008560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 258c a39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.008562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.008566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.008568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.008573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.008577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.008581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.018548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.018561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.018565 LLDP, length 82 [|LLDP] 19:42:50.018567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.018571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2594 44bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.018573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.018578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.018580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.018585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.018590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.028549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.028563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.028568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.028572 LLDP, length 82 [|LLDP] 19:42:50.028573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.028577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 259b e5df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.028579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.028583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.028587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.028591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.038545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.038556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.038561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.038565 LLDP, length 82 [|LLDP] 19:42:50.038567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.038571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25a3 86ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.038573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.038577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.038580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.038584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.048546 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.048559 LLDP, length 82 [|LLDP] 19:42:50.048560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.048565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ab 281f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.048567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.048571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.048573 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.048577 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.048582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.048586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.058545 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.058556 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.058560 LLDP, length 82 [|LLDP] 19:42:50.058562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.058566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25b2 c93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.058568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.058572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.058575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.058579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.058584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.068546 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.068557 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.068561 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.068565 LLDP, length 82 [|LLDP] 19:42:50.068567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.068571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ba 6a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.068573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.068577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.068580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.068584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.078547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.078560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.078565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.078569 LLDP, length 82 [|LLDP] 19:42:50.078570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.078575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25c2 0b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.078577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.078581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.078583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.078588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.088548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.088559 LLDP, length 82 [|LLDP] 19:42:50.088560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.088565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25c9 ac9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.088567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.088571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.088574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.088578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.088582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.088586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.098548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.098560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.098564 LLDP, length 82 [|LLDP] 19:42:50.098566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.098570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25d1 4dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.098572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.098576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.098579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.098583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.098588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.108547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.108559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.108563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.108568 LLDP, length 82 [|LLDP] 19:42:50.108569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.108574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25d8 eedf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.108576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.108580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.108582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.108587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.118544 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.118555 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.118560 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.118564 LLDP, length 82 [|LLDP] 19:42:50.118565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.118570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25e0 8fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.118572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.118576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.118578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.118583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.128549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.128560 LLDP, length 82 [|LLDP] 19:42:50.128562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.128566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25e8 311f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.128568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.128573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.128575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.128580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.128584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.128589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.138560 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.138575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.138579 LLDP, length 82 [|LLDP] 19:42:50.138580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.138585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ef d23f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.138586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.138591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.138593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.138597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.138602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.148552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.148566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.148570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.148574 LLDP, length 82 [|LLDP] 19:42:50.148576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.148580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25f7 735f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.148582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.148587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.148590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.148594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.158548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.158560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.158564 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.158569 LLDP, length 82 [|LLDP] 19:42:50.158570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.158574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 25ff 147f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.158576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.158581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.158583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.158588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.168548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.168560 LLDP, length 82 [|LLDP] 19:42:50.168562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.168566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2606 b59f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.168568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.168572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.168575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.168579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.168583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.168588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.178549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.178560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.178564 LLDP, length 82 [|LLDP] 19:42:50.178566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.178570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 260e 56bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.178572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.178576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.178579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.178583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.178588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.188551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.188565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.188570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.188574 LLDP, length 82 [|LLDP] 19:42:50.188576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.188580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2615 f7df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.188582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.188587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.188589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.188594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.198551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.198565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.198569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.198574 LLDP, length 82 [|LLDP] 19:42:50.198575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.198579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 261d 98ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.198581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.198585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.198588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.198592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.208549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.208561 LLDP, length 82 [|LLDP] 19:42:50.208563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.208567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2625 3a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.208569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.208573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.208576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.208580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.208584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.208589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.218547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.218558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.218562 LLDP, length 82 [|LLDP] 19:42:50.218563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.218568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 262c db3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.218570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.218574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.218576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.218580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.218585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.228548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.228559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.228563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.228567 LLDP, length 82 [|LLDP] 19:42:50.228569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.228573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2634 7c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.228575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.228579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.228582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.228586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.238547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.238558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.238563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.238567 LLDP, length 82 [|LLDP] 19:42:50.238568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.238573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 263c 1d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.238574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.238579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.238581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.238585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.248553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.248565 LLDP, length 82 [|LLDP] 19:42:50.248566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.248571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2643 be9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.248572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.248577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.248579 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.248584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.248588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.248592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.258547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.258558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.258563 LLDP, length 82 [|LLDP] 19:42:50.258564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.258569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 264b 5fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.258571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.258575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.258578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.258583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.258587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.268547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.268558 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.268562 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.268567 LLDP, length 82 [|LLDP] 19:42:50.268568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.268572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2653 00df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.268574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.268578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.268581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.268585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.278548 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.278559 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.278563 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.278568 LLDP, length 82 [|LLDP] 19:42:50.278569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.278573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 265a a1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.278576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.278580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.278582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.278587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.288555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.288568 LLDP, length 82 [|LLDP] 19:42:50.288569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.288574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2662 431f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.288576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.288580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.288583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.288587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.288591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.288596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.298552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.298565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.298569 LLDP, length 82 [|LLDP] 19:42:50.298571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.298575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2669 e43f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.298577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.298581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.298584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.298589 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.298593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.308550 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.308562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.308566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.308570 LLDP, length 82 [|LLDP] 19:42:50.308572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.308576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2671 855f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.308578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.308582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.308585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.308589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.318549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.318561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.318565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.318569 LLDP, length 82 [|LLDP] 19:42:50.318571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.318575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2679 267f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.318577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.318581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.318583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.318588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.327418 IP6 fe80::923c:b3ff:fe8b:ef57 > ff02::2: ICMP6, router solicitation, length 16 19:42:50.328547 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.328559 LLDP, length 82 [|LLDP] 19:42:50.328561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.328565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2680 c79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.328567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.328571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.328574 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.328578 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.328583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.328588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.338553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.338566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.338570 LLDP, length 82 [|LLDP] 19:42:50.338571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.338576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2688 68bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.338578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.338582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.338585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.338589 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.338593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.348550 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.348562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.348566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.348571 LLDP, length 82 [|LLDP] 19:42:50.348572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.348576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2690 09df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.348578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.348582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.348585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.348589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.358574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.358587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.358592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.358596 LLDP, length 82 [|LLDP] 19:42:50.358597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.358602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2697 aaff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.358604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.358608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.358611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.358615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.368553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.368564 LLDP, length 82 [|LLDP] 19:42:50.368566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.368570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 269f 4c1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.368572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.368576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.368579 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.368583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.368587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.368592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.378549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.378560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.378564 LLDP, length 82 [|LLDP] 19:42:50.378565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.378570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26a6 ed3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.378572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.378576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.378578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.378582 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.378587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.388551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.388563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.388568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.388572 LLDP, length 82 [|LLDP] 19:42:50.388574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.388578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26ae 8e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.388580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.388584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.388587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.388591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.398554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.398567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.398572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.398576 LLDP, length 82 [|LLDP] 19:42:50.398577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.398582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26b6 2f7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.398584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.398588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.398590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.398595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.408551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.408562 LLDP, length 82 [|LLDP] 19:42:50.408563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.408568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26bd d09f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.408570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.408574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.408576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.408581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.408585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.408590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.418551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.418562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.418567 LLDP, length 82 [|LLDP] 19:42:50.418568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.418573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26c5 71bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.418574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.418579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.418581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.418586 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.418590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.428553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.428564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.428569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.428573 LLDP, length 82 [|LLDP] 19:42:50.428574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.428579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26cd 12df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.428580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.428585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.428587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.428592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.438552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.438563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.438567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.438571 LLDP, length 82 [|LLDP] 19:42:50.438573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.438577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26d4 b3ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.438579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.438583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.438586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.438591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.448552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.448562 LLDP, length 82 [|LLDP] 19:42:50.448564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.448568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26dc 551f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.448570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.448574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.448577 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.448581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.448586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.448591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.458552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.458565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.458569 LLDP, length 82 [|LLDP] 19:42:50.458571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.458575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26e3 f63f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.458577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.458581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.458584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.458588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.458592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.468553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.468564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.468569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.468573 LLDP, length 82 [|LLDP] 19:42:50.468574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.468579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26eb 975f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.468581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.468585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.468587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.468592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.478551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.478561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.478566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.478570 LLDP, length 82 [|LLDP] 19:42:50.478572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.478576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26f3 387f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.478578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.478582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.478585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.478589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.488555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.488566 LLDP, length 82 [|LLDP] 19:42:50.488567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.488571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 26fa d99f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.488573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.488577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.488580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.488584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.488588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.488593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.498555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.498567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.498572 LLDP, length 82 [|LLDP] 19:42:50.498573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.498578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2702 7abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.498579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.498584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.498586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.498591 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.498595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.508570 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.508587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.508592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.508597 LLDP, length 82 [|LLDP] 19:42:50.508598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.508602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 270a 1bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.508605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.508609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.508612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.508617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.518561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.518576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.518581 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.518585 LLDP, length 82 [|LLDP] 19:42:50.518586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.518591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2711 bcff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.518593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.518597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.518600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.518604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.528556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.528569 LLDP, length 82 [|LLDP] 19:42:50.528570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.528575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2719 5e1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.528577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.528581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.528584 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.528588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.528592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.528597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.538553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.538564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.538569 LLDP, length 82 [|LLDP] 19:42:50.538570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.538574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2720 ff3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.538576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.538580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.538583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.538588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.538592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.548552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.548563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.548567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.548572 LLDP, length 82 [|LLDP] 19:42:50.548573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.548577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2728 a05f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.548579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.548583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.548586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.548591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.558558 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.558570 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.558575 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.558579 LLDP, length 82 [|LLDP] 19:42:50.558580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.558585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2730 417f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.558587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.558591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.558593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.558598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.568556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.568568 LLDP, length 82 [|LLDP] 19:42:50.568570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.568575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2737 e29f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.568576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.568581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.568583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.568587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.568592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.568596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.578554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.578565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.578570 LLDP, length 82 [|LLDP] 19:42:50.578571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.578576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 273f 83bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.578577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.578582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.578584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.578588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.578593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.588554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.588566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.588571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.588575 LLDP, length 82 [|LLDP] 19:42:50.588576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.588581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2747 24df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.588583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.588587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.588589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.588594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.598570 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.598588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.598592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.598597 LLDP, length 82 [|LLDP] 19:42:50.598598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.598603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 274e c5ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.598605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.598609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.598612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.598617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.608563 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.608577 LLDP, length 82 [|LLDP] 19:42:50.608579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.608583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2756 671f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.608585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.608589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.608592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.608597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.608601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.608606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.618556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.618567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.618572 LLDP, length 82 [|LLDP] 19:42:50.618573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.618578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 275e 083f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.618579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.618584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.618586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.618590 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.618595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.628554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.628565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.628569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.628574 LLDP, length 82 [|LLDP] 19:42:50.628575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.628580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2765 a95f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.628581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.628586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.628588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.628593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.638553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.638563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.638568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.638572 LLDP, length 82 [|LLDP] 19:42:50.638574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.638578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 276d 4a7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.638580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.638584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.638587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.638591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.648556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.648568 LLDP, length 82 [|LLDP] 19:42:50.648569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.648573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2774 eb9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.648575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.648579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.648582 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.648586 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.648591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.648595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.658551 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.658561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.658565 LLDP, length 82 [|LLDP] 19:42:50.658567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.658571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 277c 8cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.658573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.658577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.658579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.658583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.658588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.668552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.668562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.668566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.668570 LLDP, length 82 [|LLDP] 19:42:50.668572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.668576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2784 2ddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.668578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.668582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.668585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.668590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.678553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.678561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.678566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.678570 LLDP, length 82 [|LLDP] 19:42:50.678571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.678575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 278b ceff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.678577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.678582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.678585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.678589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.688552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.688560 LLDP, length 82 [|LLDP] 19:42:50.688562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.688566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2793 701f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.688568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.688572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.688575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.688579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.688583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.688588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.698554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.698563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.698567 LLDP, length 82 [|LLDP] 19:42:50.698568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.698573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 279b 113f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.698574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.698579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.698581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.698585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.698590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.708554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.708566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.708570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.708575 LLDP, length 82 [|LLDP] 19:42:50.708576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.708581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27a2 b25f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.708583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.708588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.708590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.708595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.718552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.718561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.718565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.718570 LLDP, length 82 [|LLDP] 19:42:50.718571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.718575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27aa 537f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.718577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.718581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.718584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.718588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.728552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.728561 LLDP, length 82 [|LLDP] 19:42:50.728563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.728567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27b1 f49f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.728569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.728573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.728576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.728580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.728584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.728589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.738553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.738562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.738566 LLDP, length 82 [|LLDP] 19:42:50.738567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.738572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27b9 95bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.738573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.738578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.738580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.738584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.738589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.748552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.748561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.748565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.748569 LLDP, length 82 [|LLDP] 19:42:50.748571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.748575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27c1 36df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.748577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.748581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.748583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.748588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.758552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.758561 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.758565 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.758569 LLDP, length 82 [|LLDP] 19:42:50.758571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.758575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27c8 d7ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.758577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.758581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.758584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.758588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.768555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.768565 LLDP, length 82 [|LLDP] 19:42:50.768566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.768571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27d0 791f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.768573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.768577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.768580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.768584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.768588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.768593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.778559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.778571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.778576 LLDP, length 82 [|LLDP] 19:42:50.778577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.778582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27d8 1a3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.778583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.778588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.778590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.778594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.778599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.788557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.788567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.788572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.788576 LLDP, length 82 [|LLDP] 19:42:50.788578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.788582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27df bb5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.788584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.788588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.788590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.788595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.798556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.798565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.798570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.798574 LLDP, length 82 [|LLDP] 19:42:50.798576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.798580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27e7 5c7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.798582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.798586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.798589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.798593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.808557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.808568 LLDP, length 82 [|LLDP] 19:42:50.808570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.808574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27ee fd9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.808576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.808580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.808583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.808587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.808591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.808596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.818555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.818564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.818569 LLDP, length 82 [|LLDP] 19:42:50.818570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.818574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27f6 9ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.818576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.818580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.818583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.818587 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.818592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.828553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.828562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.828567 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.828571 LLDP, length 82 [|LLDP] 19:42:50.828572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.828577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 27fe 3fdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.828578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.828583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.828586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.828590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.838552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.838566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.838571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.838576 LLDP, length 82 [|LLDP] 19:42:50.838577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.838581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2805 e0ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.838583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.838588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.838590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.838595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.848553 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.848562 LLDP, length 82 [|LLDP] 19:42:50.848563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.848568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 280d 821f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.848570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.848574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.848576 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.848580 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.848585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.848589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.858554 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.858563 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.858567 LLDP, length 82 [|LLDP] 19:42:50.858569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.858573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2815 233f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.858575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.858579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.858581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.858585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.858590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.868555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.868564 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.868568 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.868572 LLDP, length 82 [|LLDP] 19:42:50.868574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.868578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 281c c45f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.868580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.868584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.868586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.868591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.878558 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.878567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.878572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.878576 LLDP, length 82 [|LLDP] 19:42:50.878577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.878582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2824 657f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.878584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.878588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.878590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.878595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.888555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.888564 LLDP, length 82 [|LLDP] 19:42:50.888566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.888570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 282c 069f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.888572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.888576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.888578 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.888583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.888587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.888591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.898552 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.898560 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.898565 LLDP, length 82 [|LLDP] 19:42:50.898566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.898570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2833 a7bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.898572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.898577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.898579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.898583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.898588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.908555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.908565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.908569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.908574 LLDP, length 82 [|LLDP] 19:42:50.908575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.908579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 283b 48df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.908581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.908585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.908588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.908592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.918559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.918568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.918573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.918577 LLDP, length 82 [|LLDP] 19:42:50.918579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.918583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2842 e9ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.918585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.918589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.918592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.918597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.928557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.928566 LLDP, length 82 [|LLDP] 19:42:50.928567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.928572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 284a 8b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.928574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.928578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.928580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.928585 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.928589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.928594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.938596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.938617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.938622 LLDP, length 82 [|LLDP] 19:42:50.938624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.938629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2852 2c3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.938631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.938635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.938638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.938643 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.938648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.948579 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.948600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.948605 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.948610 LLDP, length 82 [|LLDP] 19:42:50.948611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.948616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2859 cd5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.948618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.948623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.948626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.948631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.958563 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.958575 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.958579 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.958584 LLDP, length 82 [|LLDP] 19:42:50.958585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.958590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2861 6e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.958592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.958596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.958599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.958603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.968557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.968572 LLDP, length 82 [|LLDP] 19:42:50.968574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.968579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2869 0f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.968581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.968585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.968588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.968592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.968596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.968601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.978561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.978571 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.978576 LLDP, length 82 [|LLDP] 19:42:50.978577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.978582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2870 b0bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.978583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.978588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.978590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.978594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.978599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.988560 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.988570 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.988574 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.988578 LLDP, length 82 [|LLDP] 19:42:50.988580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.988584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2878 51df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.988586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.988590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.988593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.988597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:50.998557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.998565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:50.998570 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:50.998574 LLDP, length 82 [|LLDP] 19:42:50.998576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:50.998580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 287f f2ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:50.998582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:50.998586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:50.998588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:50.998593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.008555 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.008564 LLDP, length 82 [|LLDP] 19:42:51.008566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.008570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2887 941f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.008572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.008576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.008578 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.008583 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.008587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.008592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.018565 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.018577 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.018582 LLDP, length 82 [|LLDP] 19:42:51.018583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.018588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 288f 353f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.018590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.018594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.018597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.018601 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.018605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.028559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.028568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.028573 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.028577 LLDP, length 82 [|LLDP] 19:42:51.028579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.028583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2896 d65f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.028585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.028589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.028592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.028596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.038559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.038568 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.038572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.038577 LLDP, length 82 [|LLDP] 19:42:51.038578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.038583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 289e 777f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.038585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.038589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.038591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.038596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.048557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.048566 LLDP, length 82 [|LLDP] 19:42:51.048567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.048572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28a6 189f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.048574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.048578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.048580 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.048584 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.048594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.048599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.058561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.058570 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.058575 LLDP, length 82 [|LLDP] 19:42:51.058576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.058580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28ad b9bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.058582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.058586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.058589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.058593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.058598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.068557 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.068566 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.068571 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.068575 LLDP, length 82 [|LLDP] 19:42:51.068577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.068581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28b5 5adf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.068582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.068587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.068589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.068593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.078556 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.078565 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.078569 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.078574 LLDP, length 82 [|LLDP] 19:42:51.078575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.078579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28bc fbff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.078581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.078585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.078588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.078592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.088559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.088568 LLDP, length 82 [|LLDP] 19:42:51.088570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.088575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28c4 9d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.088577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.088581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.088584 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.088588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.088593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.088597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.098561 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.098569 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.098574 LLDP, length 82 [|LLDP] 19:42:51.098575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.098579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28cc 3e3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.098581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.098585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.098588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.098592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.098597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.108559 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.108567 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.108572 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.108576 LLDP, length 82 [|LLDP] 19:42:51.108577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.108582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28d3 df5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.108584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.108588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.108590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.108595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.118572 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.118583 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.118588 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.118592 LLDP, length 82 [|LLDP] 19:42:51.118593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.118598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28db 807f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.118600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.118604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.118607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.118612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.128569 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.128582 LLDP, length 82 [|LLDP] 19:42:51.128584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.128589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28e3 219f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.128591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.128595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.128598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.128602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.128607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.128611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.138576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.138593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.138598 LLDP, length 82 [|LLDP] 19:42:51.138599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.138604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28ea c2bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.138606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.138610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.138613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.138618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.138622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.148593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.148618 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.148623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.148627 LLDP, length 82 [|LLDP] 19:42:51.148629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.148634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28f2 63df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.148636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.148641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.148644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.148649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.158605 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.158636 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.158641 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.158646 LLDP, length 82 [|LLDP] 19:42:51.158648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.158653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 28fa 04ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.158656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.158660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.158663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.158668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.168589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.168610 LLDP, length 82 [|LLDP] 19:42:51.168612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.168617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2901 a61f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.168619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.168624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.168627 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.168632 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.168636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.168641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.178577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.178595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.178599 LLDP, length 82 [|LLDP] 19:42:51.178601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.178605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2909 473f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.178607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.178611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.178614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.178618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.178623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.188578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.188595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.188600 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.188604 LLDP, length 82 [|LLDP] 19:42:51.188606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.188610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2910 e85f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.188612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.188617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.188619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.188624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.198573 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.198589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.198594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.198598 LLDP, length 82 [|LLDP] 19:42:51.198600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.198604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2918 897f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.198606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.198610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.198613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.198618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.208615 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.208646 LLDP, length 82 [|LLDP] 19:42:51.208648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.208653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2920 2a9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.208656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.208661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.208664 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.208669 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.208674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.208679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.218613 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.218645 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.218650 LLDP, length 82 [|LLDP] 19:42:51.218653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.218658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2927 cbbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.218660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.218664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.218668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.218672 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.218677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.228607 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.228637 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.228643 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.228647 LLDP, length 82 [|LLDP] 19:42:51.228649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.228654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 292f 6cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.228656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.228661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.228665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.228670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.238596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.238624 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.238629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.238634 LLDP, length 82 [|LLDP] 19:42:51.238636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.238640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2937 0dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.238643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.238647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.238651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.238656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.248614 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.248649 LLDP, length 82 [|LLDP] 19:42:51.248651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.248656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 293e af1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.248659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.248663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.248667 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.248672 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.248678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.248683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.258626 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.258658 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.258663 LLDP, length 82 [|LLDP] 19:42:51.258665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.258670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2946 503f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.258672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.258677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.258681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.258686 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.258691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.268603 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.268635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.268640 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.268645 LLDP, length 82 [|LLDP] 19:42:51.268647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.268651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 294d f15f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.268654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.268659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.268663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.268668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.278610 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.278641 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.278646 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.278651 LLDP, length 82 [|LLDP] 19:42:51.278653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.278657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2955 927f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.278660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.278665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.278668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.278673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.288587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.288608 LLDP, length 82 [|LLDP] 19:42:51.288610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.288615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 295d 339f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.288617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.288622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.288625 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.288629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.288633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.288638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.298580 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.298598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.298602 LLDP, length 82 [|LLDP] 19:42:51.298604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.298608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2964 d4bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.298610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.298614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.298617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.298622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.298626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.308578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.308595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.308599 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.308604 LLDP, length 82 [|LLDP] 19:42:51.308606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.308610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 296c 75df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.308612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.308616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.308620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.308625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.318577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.318593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.318597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.318602 LLDP, length 82 [|LLDP] 19:42:51.318603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.318608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2974 16ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.318610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.318614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.318617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.318622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.328575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.328592 LLDP, length 82 [|LLDP] 19:42:51.328593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.328598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 297b b81f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.328600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.328604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.328607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.328611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.328615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.328620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.341771 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.341788 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.341792 LLDP, length 82 [|LLDP] 19:42:51.341794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.341798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2983 593f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.341800 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.341804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.341807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.341812 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.341817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.348574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.348590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.348595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.348599 LLDP, length 82 [|LLDP] 19:42:51.348601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.348606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 298a fa5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.348608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.348612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.348615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.348619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.358575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.358590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.358595 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.358599 LLDP, length 82 [|LLDP] 19:42:51.358601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.358605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2992 9b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.358607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.358612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.358614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.358619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.368575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.368590 LLDP, length 82 [|LLDP] 19:42:51.368592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.368596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 299a 3c9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.368598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.368602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.368605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.368610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.368614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.368618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.378574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.378587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.378591 LLDP, length 82 [|LLDP] 19:42:51.378593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.378597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29a1 ddbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.378599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.378604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.378607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.378611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.378616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.388577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.388593 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.388598 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.388602 LLDP, length 82 [|LLDP] 19:42:51.388604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.388608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29a9 7edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.388610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.388615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.388618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.388622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.402435 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.402450 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.402454 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.402459 LLDP, length 82 [|LLDP] 19:42:51.402460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.402465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29b1 1fff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.402467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.402471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.402474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.402479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.408574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.408587 LLDP, length 82 [|LLDP] 19:42:51.408589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.408594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29b8 c11f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.408596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.408600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.408603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.408607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.408612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.408616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.418571 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.418584 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.418589 LLDP, length 82 [|LLDP] 19:42:51.418591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.418595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29c0 623f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.418597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.418601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.418604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.418608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.418613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.428575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.428592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.428596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.428601 LLDP, length 82 [|LLDP] 19:42:51.428602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.428607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29c8 035f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.428609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.428613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.428616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.428620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.438576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.438592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.438596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.438600 LLDP, length 82 [|LLDP] 19:42:51.438602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.438607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29cf a47f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.438609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.438613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.438616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.438622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.448575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.448590 LLDP, length 82 [|LLDP] 19:42:51.448591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.448595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29d7 459f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.448598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.448602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.448605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.448609 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.448614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.448618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.458575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.458589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.458594 LLDP, length 82 [|LLDP] 19:42:51.458595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.458600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29de e6bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.458602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.458606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.458609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.458613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.458618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.468575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.468589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.468594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.468598 LLDP, length 82 [|LLDP] 19:42:51.468599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.468604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29e6 87df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.468606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.468610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.468613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.468617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.478570 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.478585 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.478589 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.478593 LLDP, length 82 [|LLDP] 19:42:51.478595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.478600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29ee 28ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.478602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.478606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.478608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.478613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.488572 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.488587 LLDP, length 82 [|LLDP] 19:42:51.488588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.488593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29f5 ca1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.488595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.488599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.488602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.488606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.488610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.488615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.498574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.498589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.498594 LLDP, length 82 [|LLDP] 19:42:51.498595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.498600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 29fd 6b3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.498601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.498605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.498608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.498612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.498617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.508574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.508589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.508593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.508598 LLDP, length 82 [|LLDP] 19:42:51.508599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.508603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a05 0c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.508605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.508609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.508612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.508616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.518574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.518589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.518593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.518597 LLDP, length 82 [|LLDP] 19:42:51.518599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.518604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a0c ad7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.518606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.518610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.518613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.518617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.528574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.528588 LLDP, length 82 [|LLDP] 19:42:51.528589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.528594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a14 4e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.528596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.528600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.528603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.528607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.528612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.528616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.538574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.538588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.538593 LLDP, length 82 [|LLDP] 19:42:51.538594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.538599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a1b efbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.538600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.538605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.538607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.538612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.538616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.548572 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.548586 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.548591 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.548595 LLDP, length 82 [|LLDP] 19:42:51.548596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.548601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a23 90df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.548603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.548607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.548610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.548614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.558575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.558589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.558594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.558599 LLDP, length 82 [|LLDP] 19:42:51.558600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.558604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a2b 31ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.558606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.558611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.558613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.558618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.568590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.568608 LLDP, length 82 [|LLDP] 19:42:51.568609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.568614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a32 d31f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.568616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.568621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.568624 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.568628 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.568633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.568637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.578579 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.578595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.578599 LLDP, length 82 [|LLDP] 19:42:51.578601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.578605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a3a 743f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.578607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.578611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.578614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.578618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.578623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.588578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.588592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.588597 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.588601 LLDP, length 82 [|LLDP] 19:42:51.588603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.588607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a42 155f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.588609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.588614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.588616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.588621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.598585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.598603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.598608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.598612 LLDP, length 82 [|LLDP] 19:42:51.598613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.598618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a49 b67f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.598620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.598624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.598627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.598632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.608585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.608600 LLDP, length 82 [|LLDP] 19:42:51.608602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.608607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a51 579f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.608609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.608613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.608616 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.608620 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.608625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.608629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.618575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.618590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.618594 LLDP, length 82 [|LLDP] 19:42:51.618596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.618600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a58 f8bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.618602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.618606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.618609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.618613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.618618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.628575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.628589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.628593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.628598 LLDP, length 82 [|LLDP] 19:42:51.628599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.628604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a60 99df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.628606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.628610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.628613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.628618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.638574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.638588 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.638593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.638597 LLDP, length 82 [|LLDP] 19:42:51.638599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.638603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a68 3aff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.638605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.638610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.638612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.638617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.648576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.648591 LLDP, length 82 [|LLDP] 19:42:51.648592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.648597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a6f dc1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.648599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.648604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.648606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.648611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.648615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.648619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.658575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.658590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.658594 LLDP, length 82 [|LLDP] 19:42:51.658595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.658600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a77 7d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.658602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.658606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.658609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.658613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.658618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.668578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.668592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.668596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.668601 LLDP, length 82 [|LLDP] 19:42:51.668602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.668606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a7f 1e5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.668608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.668613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.668616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.668621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.678574 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.678587 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.678592 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.678596 LLDP, length 82 [|LLDP] 19:42:51.678597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.678602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a86 bf7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.678604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.678608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.678611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.678615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.688577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.688591 LLDP, length 82 [|LLDP] 19:42:51.688592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.688597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a8e 609f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.688599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.688603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.688606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.688610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.688615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.688620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.698577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.698591 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.698596 LLDP, length 82 [|LLDP] 19:42:51.698597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.698601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a96 01bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.698603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.698608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.698610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.698615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.698619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.708578 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.708592 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.708596 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.708600 LLDP, length 82 [|LLDP] 19:42:51.708602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.708606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2a9d a2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.708608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.708612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.708615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.708620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.718575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.718589 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.718593 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.718598 LLDP, length 82 [|LLDP] 19:42:51.718599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.718604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2aa5 43ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.718606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.718610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.718613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.718617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.728577 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.728590 LLDP, length 82 [|LLDP] 19:42:51.728591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.728596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2aac e51f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.728598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.728602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.728605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.728609 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.728613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.728618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.738576 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.738590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.738595 LLDP, length 82 [|LLDP] 19:42:51.738596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.738601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ab4 863f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.738603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.738607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.738610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.738614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.738619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.748575 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.748590 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.748594 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.748599 LLDP, length 82 [|LLDP] 19:42:51.748600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.748604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2abc 275f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.748606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.748611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.748613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.748618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.758590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.758608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.758612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.758617 LLDP, length 82 [|LLDP] 19:42:51.758618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.758623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ac3 c87f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.758625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.758629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.758632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.758637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.768583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.768598 LLDP, length 82 [|LLDP] 19:42:51.768600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.768605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2acb 699f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.768607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.768611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.768614 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.768618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.768623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.768627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.778581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.778595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.778600 LLDP, length 82 [|LLDP] 19:42:51.778602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.778606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ad3 0abf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.778608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.778612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.778615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.778620 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.778625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.788581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.788596 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.788601 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.788605 LLDP, length 82 [|LLDP] 19:42:51.788607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.788611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ada abdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.788613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.788617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.788620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.788624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.798581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.798595 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.798600 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.798604 LLDP, length 82 [|LLDP] 19:42:51.798606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.798610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ae2 4cff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.798612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.798616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.798619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.798624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.808581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.808595 LLDP, length 82 [|LLDP] 19:42:51.808597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.808601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ae9 ee1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.808603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.808608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.808610 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.808615 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.808619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.808624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.818582 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.818596 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.818600 LLDP, length 82 [|LLDP] 19:42:51.818602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.818607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2af1 8f3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.818608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.818613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.818615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.818620 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.818624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.828584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.828598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.828603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.828608 LLDP, length 82 [|LLDP] 19:42:51.828609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.828613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2af9 305f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.828615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.828620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.828622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.828627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.838583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.838597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.838602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.838606 LLDP, length 82 [|LLDP] 19:42:51.838608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.838612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b00 d17f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.838614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.838618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.838621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.838626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.848583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.848598 LLDP, length 82 [|LLDP] 19:42:51.848599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.848604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b08 729f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.848606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.848610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.848613 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.848618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.848622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.848627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.858581 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.858597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.858601 LLDP, length 82 [|LLDP] 19:42:51.858603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.858607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b10 13bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.858609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.858613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.858616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.858621 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.858625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.868584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.868598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.868603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.868607 LLDP, length 82 [|LLDP] 19:42:51.868608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.868613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b17 b4df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.868615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.868620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.868622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.868627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.878584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.878599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.878604 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.878608 LLDP, length 82 [|LLDP] 19:42:51.878609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.878614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b1f 55ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.878615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.878620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.878622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.878627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.888584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.888598 LLDP, length 82 [|LLDP] 19:42:51.888599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.888604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b26 f71f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.888606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.888610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.888613 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.888617 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.888622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.888627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.898586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.898601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.898606 LLDP, length 82 [|LLDP] 19:42:51.898607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.898612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b2e 983f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.898614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.898618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.898621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.898625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.898629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.908583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.908598 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.908602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.908607 LLDP, length 82 [|LLDP] 19:42:51.908608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.908613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b36 395f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.908615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.908619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.908622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.908627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.918583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.918597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.918602 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.918606 LLDP, length 82 [|LLDP] 19:42:51.918608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.918612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b3d da7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.918614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.918619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.918622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.918627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.928582 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.928596 LLDP, length 82 [|LLDP] 19:42:51.928598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.928602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b45 7b9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.928604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.928609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.928611 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.928616 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.928620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.928625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.938583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.938597 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.938602 LLDP, length 82 [|LLDP] 19:42:51.938604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.938608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b4d 1cbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.938610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.938614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.938617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.938622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.938626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.948606 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.948621 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.948626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.948630 LLDP, length 82 [|LLDP] 19:42:51.948632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.948636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b54 bddf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.948638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.948643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.948645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.948650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.958583 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.958599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.958603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.958608 LLDP, length 82 [|LLDP] 19:42:51.958610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.958614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b5c 5eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.958616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.958621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.958624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.958628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.968606 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.968630 LLDP, length 82 [|LLDP] 19:42:51.968633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.968637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b64 001f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.968640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.968645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.968649 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.968653 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.968658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.968662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.978593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.978609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.978614 LLDP, length 82 [|LLDP] 19:42:51.978616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.978620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b6b a13f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.978622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.978626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.978629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.978634 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.978639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.988586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.988601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.988606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.988610 LLDP, length 82 [|LLDP] 19:42:51.988612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.988616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b73 425f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.988618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.988623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.988625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.988630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:51.998585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.998600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:51.998604 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:51.998609 LLDP, length 82 [|LLDP] 19:42:51.998610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:51.998614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b7a e37f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:51.998616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:51.998620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:51.998623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:51.998628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.008585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.008599 LLDP, length 82 [|LLDP] 19:42:52.008601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.008605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b82 849f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.008607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.008612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.008615 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.008619 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.008623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.008628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.018587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.018601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.018606 LLDP, length 82 [|LLDP] 19:42:52.018607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.018612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b8a 25bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.018613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.018618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.018620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.018625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.018629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.028587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.028602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.028607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.028611 LLDP, length 82 [|LLDP] 19:42:52.028612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.028617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b91 c6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.028618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.028623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.028625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.028630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.038584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.038599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.038603 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.038608 LLDP, length 82 [|LLDP] 19:42:52.038609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.038614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2b99 67ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.038616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.038621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.038623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.038628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.048589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.048603 LLDP, length 82 [|LLDP] 19:42:52.048605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.048609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ba1 091f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.048611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.048616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.048619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.048623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.048627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.048632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.058584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.058600 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.058604 LLDP, length 82 [|LLDP] 19:42:52.058606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.058610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ba8 aa3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.058612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.058617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.058620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.058624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.058629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.068584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.068599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.068604 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.068609 LLDP, length 82 [|LLDP] 19:42:52.068610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.068615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bb0 4b5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.068617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.068621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.068624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.068629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.078587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.078602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.078606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.078611 LLDP, length 82 [|LLDP] 19:42:52.078613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.078617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bb7 ec7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.078619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.078624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.078627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.078631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.088587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.088604 LLDP, length 82 [|LLDP] 19:42:52.088605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.088610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bbf 8d9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.088612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.088616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.088619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.088623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.088628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.088632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.098590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.098606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.098610 LLDP, length 82 [|LLDP] 19:42:52.098612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.098617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bc7 2ebf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.098619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.098623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.098626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.098630 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.098635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.108586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.108601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.108606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.108611 LLDP, length 82 [|LLDP] 19:42:52.108612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.108616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bce cfdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.108618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.108622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.108626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.108630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.118588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.118602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.118607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.118611 LLDP, length 82 [|LLDP] 19:42:52.118613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.118618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bd6 70ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.118620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.118624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.118626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.118631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.128584 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.128599 LLDP, length 82 [|LLDP] 19:42:52.128601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.128605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bde 121f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.128607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.128611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.128614 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.128618 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.128623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.128627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.138587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.138601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.138606 LLDP, length 82 [|LLDP] 19:42:52.138607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.138611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2be5 b33f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.138613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.138618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.138620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.138625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.138630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.148590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.148605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.148610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.148614 LLDP, length 82 [|LLDP] 19:42:52.148616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.148620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bed 545f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.148622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.148626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.148629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.148634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.158611 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.158635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.158640 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.158645 LLDP, length 82 [|LLDP] 19:42:52.158647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.158652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bf4 f57f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.158654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.158658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.158661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.158666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.168593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.168609 LLDP, length 82 [|LLDP] 19:42:52.168611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.168615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2bfc 969f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.168618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.168622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.168625 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.168629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.168634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.168639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.178592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.178606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.178611 LLDP, length 82 [|LLDP] 19:42:52.178613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.178617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c04 37bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.178619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.178623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.178626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.178631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.178635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.188605 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.188635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.188640 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.188644 LLDP, length 82 [|LLDP] 19:42:52.188647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.188651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c0b d8df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.188654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.188658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.188661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.188666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.198601 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.198619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.198624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.198629 LLDP, length 82 [|LLDP] 19:42:52.198630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.198635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c13 79ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.198636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.198641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.198643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.198648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.208591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.208606 LLDP, length 82 [|LLDP] 19:42:52.208608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.208612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c1b 1b1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.208614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.208619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.208622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.208626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.208631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.208635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.218589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.218605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.218609 LLDP, length 82 [|LLDP] 19:42:52.218611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.218615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c22 bc3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.218617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.218622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.218625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.218629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.218634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.228594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.228611 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.228616 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.228620 LLDP, length 82 [|LLDP] 19:42:52.228622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.228626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c2a 5d5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.228629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.228633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.228636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.228640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.238592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.238608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.238613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.238617 LLDP, length 82 [|LLDP] 19:42:52.238618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.238623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c31 fe7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.238625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.238629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.238632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.238637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.248589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.248603 LLDP, length 82 [|LLDP] 19:42:52.248605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.248609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c39 9f9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.248612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.248616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.248619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.248623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.248628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.248632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.258591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.258608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.258613 LLDP, length 82 [|LLDP] 19:42:52.258615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.258620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c41 40bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.258621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.258626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.258629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.258633 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.258638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.268587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.268601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.268606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.268610 LLDP, length 82 [|LLDP] 19:42:52.268612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.268616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c48 e1df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.268618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.268623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.268625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.268630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.278611 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.278640 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.278645 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.278649 LLDP, length 82 [|LLDP] 19:42:52.278652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.278656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c50 82ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.278659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.278664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.278667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.278672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.288633 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.288664 LLDP, length 82 [|LLDP] 19:42:52.288666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.288671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c58 241f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.288674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.288679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.288683 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.288687 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.288692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.288697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.298612 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.298635 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.298639 LLDP, length 82 [|LLDP] 19:42:52.298641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.298646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c5f c53f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.298648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.298652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.298655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.298660 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.298665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.308589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.308604 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.308609 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.308613 LLDP, length 82 [|LLDP] 19:42:52.308615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.308619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c67 665f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.308621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.308626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.308628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.308633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.318591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.318606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.318610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.318614 LLDP, length 82 [|LLDP] 19:42:52.318616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.318620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c6f 077f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.318622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.318627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.318629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.318634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.328587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.328601 LLDP, length 82 [|LLDP] 19:42:52.328603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.328607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c76 a89f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.328609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.328614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.328617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.328621 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.328626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.328630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.338585 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.338599 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.338603 LLDP, length 82 [|LLDP] 19:42:52.338605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.338609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c7e 49bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.338611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.338615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.338618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.338622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.338627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.348589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.348603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.348608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.348612 LLDP, length 82 [|LLDP] 19:42:52.348614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.348618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c85 eadf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.348620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.348625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.348628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.348632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.358588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.358601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.358606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.358610 LLDP, length 82 [|LLDP] 19:42:52.358612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.358616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c8d 8bff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.358618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.358622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.358625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.358629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.368588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.368602 LLDP, length 82 [|LLDP] 19:42:52.368603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.368608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c95 2d1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.368610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.368614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.368617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.368621 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.368625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.368630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.378586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.378601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.378605 LLDP, length 82 [|LLDP] 19:42:52.378607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.378611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2c9c ce3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.378613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.378617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.378620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.378625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.378629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.388588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.388602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.388607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.388611 LLDP, length 82 [|LLDP] 19:42:52.388612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.388616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ca4 6f5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.388619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.388623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.388626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.388630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.398587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.398601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.398605 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.398610 LLDP, length 82 [|LLDP] 19:42:52.398611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.398616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cac 107f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.398617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.398622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.398624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.398629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.408589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.408602 LLDP, length 82 [|LLDP] 19:42:52.408604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.408608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cb3 b19f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.408610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.408615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.408617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.408622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.408626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.408631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.418586 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.418601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.418605 LLDP, length 82 [|LLDP] 19:42:52.418607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.418611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cbb 52bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.418613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.418617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.418620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.418624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.418629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.428588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.428601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.428606 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.428610 LLDP, length 82 [|LLDP] 19:42:52.428611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.428616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cc2 f3df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.428618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.428622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.428624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.428629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.438589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.438603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.438608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.438612 LLDP, length 82 [|LLDP] 19:42:52.438613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.438618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cca 94ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.438620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.438624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.438627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.438632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.448591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.448604 LLDP, length 82 [|LLDP] 19:42:52.448606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.448610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cd2 361f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.448612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.448617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.448619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.448623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.448628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.448632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.458588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.458601 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.458606 LLDP, length 82 [|LLDP] 19:42:52.458607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.458612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cd9 d73f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.458613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.458618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.458620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.458624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.458629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.468589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.468603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.468608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.468612 LLDP, length 82 [|LLDP] 19:42:52.468614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.468618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ce1 785f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.468620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.468624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.468627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.468632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.478590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.478603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.478607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.478612 LLDP, length 82 [|LLDP] 19:42:52.478613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.478618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ce9 197f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.478620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.478624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.478627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.478631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.488587 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.488601 LLDP, length 82 [|LLDP] 19:42:52.488603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.488608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cf0 ba9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.488610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.488615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.488617 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.488622 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.488627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.488632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.498589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.498603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.498607 LLDP, length 82 [|LLDP] 19:42:52.498608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.498613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cf8 5bbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.498615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.498619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.498622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.498626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.498630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.508596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.508609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.508614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.508618 LLDP, length 82 [|LLDP] 19:42:52.508620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.508624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2cff fcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.508626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.508630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.508633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.508637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.518593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.518611 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.518616 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.518620 LLDP, length 82 [|LLDP] 19:42:52.518622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.518626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d07 9dff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.518628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.518633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.518636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.518641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.528590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.528604 LLDP, length 82 [|LLDP] 19:42:52.528606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.528610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d0f 3f1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.528612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.528617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.528619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.528623 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.528628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.528633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.538589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.538603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.538607 LLDP, length 82 [|LLDP] 19:42:52.538609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.538613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d16 e03f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.538615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.538619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.538622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.538626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.538631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.548589 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.548602 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.548607 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.548611 LLDP, length 82 [|LLDP] 19:42:52.548612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.548617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d1e 815f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.548619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.548623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.548626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.548630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.558595 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.558609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.558614 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.558618 LLDP, length 82 [|LLDP] 19:42:52.558620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.558624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d26 227f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.558626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.558630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.558633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.558637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.568592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.568605 LLDP, length 82 [|LLDP] 19:42:52.568607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.568612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d2d c39f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.568613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.568618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.568620 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.568624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.568628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.568633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.578588 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.578603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.578607 LLDP, length 82 [|LLDP] 19:42:52.578609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.578613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d35 64bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.578615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.578619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.578622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.578627 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.578632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.588591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.588605 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.588610 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.588614 LLDP, length 82 [|LLDP] 19:42:52.588616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.588620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d3d 05df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.588622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.588626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.588630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.588634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.598607 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.598624 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.598629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.598634 LLDP, length 82 [|LLDP] 19:42:52.598635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.598640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d44 a6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.598642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.598646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.598649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.598654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.608598 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.608615 LLDP, length 82 [|LLDP] 19:42:52.608616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.608621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d4c 481f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.608623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.608628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.608631 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.608635 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.608640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.608645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.618594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.618609 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.618614 LLDP, length 82 [|LLDP] 19:42:52.618615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.618620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d53 e93f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.618621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.618626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.618629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.618633 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.618638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.628593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.628606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.628611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.628615 LLDP, length 82 [|LLDP] 19:42:52.628616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.628621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d5b 8a5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.628623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.628627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.628630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.628634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.638592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.638607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.638611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.638616 LLDP, length 82 [|LLDP] 19:42:52.638617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.638621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d63 2b7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.638623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.638628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.638630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.638635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.648590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.648604 LLDP, length 82 [|LLDP] 19:42:52.648605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.648610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d6a cc9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.648612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.648617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.648619 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.648624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.648628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.648632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.658593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.658606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.658610 LLDP, length 82 [|LLDP] 19:42:52.658612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.658616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d72 6dbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.658618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.658622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.658625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.658629 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.658634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.668590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.668603 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.668608 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.668612 LLDP, length 82 [|LLDP] 19:42:52.668614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.668618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d7a 0edf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.668620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.668625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.668627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.668632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.678593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.678607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.678612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.678616 LLDP, length 82 [|LLDP] 19:42:52.678617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.678622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d81 afff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.678624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.678628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.678630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.678635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.688593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.688607 LLDP, length 82 [|LLDP] 19:42:52.688609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.688613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d89 511f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.688615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.688619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.688622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.688626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.688630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.688635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.698590 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.698604 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.698609 LLDP, length 82 [|LLDP] 19:42:52.698610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.698615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d90 f23f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.698616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.698620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.698623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.698627 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.698632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.708592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.708607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.708611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.708615 LLDP, length 82 [|LLDP] 19:42:52.708617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.708621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2d98 935f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.708623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.708627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.708630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.708635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.718594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.718608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.718613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.718617 LLDP, length 82 [|LLDP] 19:42:52.718618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.718623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2da0 347f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.718625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.718629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.718632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.718637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.728591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.728605 LLDP, length 82 [|LLDP] 19:42:52.728607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.728611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2da7 d59f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.728613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.728618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.728620 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.728625 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.728629 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.728634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.738594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.738607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.738612 LLDP, length 82 [|LLDP] 19:42:52.738613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.738618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2daf 76bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.738620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.738624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.738626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.738631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.738635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.748593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.748607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.748612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.748616 LLDP, length 82 [|LLDP] 19:42:52.748618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.748622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2db7 17df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.748624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.748628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.748631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.748636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.758592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.758606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.758611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.758615 LLDP, length 82 [|LLDP] 19:42:52.758617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.758621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dbe b8ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.758623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.758627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.758630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.758635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.768591 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.768605 LLDP, length 82 [|LLDP] 19:42:52.768606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.768611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dc6 5a1f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.768613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.768617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.768620 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.768624 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.768628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.768633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.778593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.778607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.778612 LLDP, length 82 [|LLDP] 19:42:52.778614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.778618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dcd fb3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.778620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.778624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.778627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.778631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.778636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.788592 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.788606 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.788611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.788615 LLDP, length 82 [|LLDP] 19:42:52.788617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.788621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dd5 9c5f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.788623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.788627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.788630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.788635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.801549 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.801562 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.801566 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.801571 LLDP, length 82 [|LLDP] 19:42:52.801572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.801577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2ddd 3d7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.801579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.801583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.801586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.801590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.808596 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.808610 LLDP, length 82 [|LLDP] 19:42:52.808612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.808616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2de4 de9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.808618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.808622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.808625 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.808630 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.808634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.808638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.818593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.818607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.818612 LLDP, length 82 [|LLDP] 19:42:52.818613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.818618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dec 7fbf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.818620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.818624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.818626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.818631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.818635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.828593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.828607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.828611 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.828616 LLDP, length 82 [|LLDP] 19:42:52.828617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.828621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2df4 20df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.828623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.828627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.828630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.828635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.838594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.838608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.838613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.838617 LLDP, length 82 [|LLDP] 19:42:52.838618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.838623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2dfb c1ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.838625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.838629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.838631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.838636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.848593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.848607 LLDP, length 82 [|LLDP] 19:42:52.848609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.848613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e03 631f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.848615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.848619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.848622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.848626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.848631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.848635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.862160 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.862174 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.862178 LLDP, length 82 [|LLDP] 19:42:52.862180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.862184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e0b 043f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.862186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.862190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.862193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.862198 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.862202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.868594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.868607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.868612 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.868616 LLDP, length 82 [|LLDP] 19:42:52.868618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.868622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e12 a55f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.868624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.868628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.868631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.868635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.878595 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.878608 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.878613 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.878617 LLDP, length 82 [|LLDP] 19:42:52.878618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.878623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e1a 467f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.878625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.878629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.878632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.878636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.888593 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.888607 LLDP, length 82 [|LLDP] 19:42:52.888608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.888613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e21 e79f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.888615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.888619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.888622 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.888626 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.888631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.888635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:42:52.898594 IP 1.1.1.2.3901 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.898607 IP 192.168.1.1.19268 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:42:52.898612 LLDP, length 82 [|LLDP] 19:42:52.898613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:42:52.898618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 2e29 88bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:42:52.898620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:42:52.898624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:42:52.898626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:42:52.898631 IP 1.1.1.2.53112 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:42:52.898635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 10152 packets captured 10162 packets received by filter 0 packets dropped by kernel 1018 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:43:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:43:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:43:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif 283.25
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2315' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.5, port 41488 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:43:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b7b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 1325 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG infra1:Logger.py:156 19:47:26.199358 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.199361 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.199362 LLDP, length 82 [|LLDP] 19:47:26.199431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.199443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.199444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.199445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.199446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.199467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.199470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.199471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cbb 8ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.199473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.199474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.199475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.199476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.209365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.209367 LLDP, length 82 [|LLDP] 19:47:26.209423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.209440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.209455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.209456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cc3 2ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.209458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.209458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.209459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.209461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.209472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.209473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.209476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.209477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.209479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.219368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.219371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.219372 LLDP, length 82 [|LLDP] 19:47:26.219461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.219476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.219491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.219493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cca d112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.219494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.219495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.219496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.219498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.219509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.219510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.219513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.219514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.229364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.229366 LLDP, length 82 [|LLDP] 19:47:26.229422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.229437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.229452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.229453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cd2 7232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.229455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.229456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.229466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.229467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.229470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.229471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.229472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.229473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.229474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.239369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.239372 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.239373 LLDP, length 82 [|LLDP] 19:47:26.239454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.239469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.239485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.239486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cda 1352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.239488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.239489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.239490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.239491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.239502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.239503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.239506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.239507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.249369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.249371 LLDP, length 82 [|LLDP] 19:47:26.249429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.249443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.249444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.249445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.249466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.249467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.249470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.249480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.249481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ce1 b472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.249483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.249484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.249485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.249487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.259365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.259368 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.259369 LLDP, length 82 [|LLDP] 19:47:26.259451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.259464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.259480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.259481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ce9 5592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.259482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.259483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.259485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.259495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.259496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.259499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.259500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.259502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.269371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.269373 LLDP, length 82 [|LLDP] 19:47:26.269432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.269447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.269462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.269463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cf0 f6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.269465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.269466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.269467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.269468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.269479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.269480 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.269483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.269484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.269486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.279364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.279367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.279369 LLDP, length 82 [|LLDP] 19:47:26.279454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.279468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.279469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.279470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.279471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.279494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.279497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.279498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cf8 97d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.279500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.279501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.279502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.279503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.286763 LLDP, length 226: localhost 19:47:26.289316 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.289318 LLDP, length 82 [|LLDP] 19:47:26.289346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.289357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.289370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.289371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d00 38f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.289372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.289373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.289374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.289375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.289383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.289384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.289386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.289387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.289389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.299327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.299330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.299331 LLDP, length 82 [|LLDP] 19:47:26.299361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.299373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.299398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.299399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d07 da12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.299400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.299401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.299402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.299403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.299411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.299412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.299415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.299416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.309317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.309320 LLDP, length 82 [|LLDP] 19:47:26.309345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.309356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.309368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.309369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d0f 7b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.309371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.309372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.309378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.309379 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.309381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.309382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.309383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.309384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.309385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.319315 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.319317 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.319319 LLDP, length 82 [|LLDP] 19:47:26.319346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.319356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.319368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.319369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d17 1c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.319371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.319372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.319373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.319374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.319381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.319382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.319384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.319395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.329324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.329326 LLDP, length 82 [|LLDP] 19:47:26.329353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.329363 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.329365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.329365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.329382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.329383 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.329385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.329393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.329394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d1e bd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.329395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.329397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.329397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.329399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.339313 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.339315 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.339316 LLDP, length 82 [|LLDP] 19:47:26.339342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.339351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.339363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.339364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d26 5e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.339366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.339367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.339368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.339375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.339376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.339378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.339379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.339381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.349315 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.349316 LLDP, length 82 [|LLDP] 19:47:26.349346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.349355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.349368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.349369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d2d ffb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.349370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.349372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.349372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.349373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.349381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.349382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.349384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.349385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.349386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.359315 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.359317 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.359318 LLDP, length 82 [|LLDP] 19:47:26.359343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.359352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.359353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.359354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.359354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.359372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.359374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.359376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d35 a0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.359377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.359378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.359379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.359381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.369314 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.369316 LLDP, length 82 [|LLDP] 19:47:26.369343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.369351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.369364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.369365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d3d 41f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.369366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.369367 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.369368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.369369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.369377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.369378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.369380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.369381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.369382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.379312 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.379314 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.379315 LLDP, length 82 [|LLDP] 19:47:26.379344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.379353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.379365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.379366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d44 e312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.379367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.379368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.379369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.379371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.379378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.379379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.379381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.379382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.389310 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.389311 LLDP, length 82 [|LLDP] 19:47:26.389332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.389340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.389352 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.389353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d4c 8432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.389355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.389356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.389362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.389363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.389365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.389366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.389367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.389368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.389370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.399310 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.399312 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.399313 LLDP, length 82 [|LLDP] 19:47:26.399334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.399343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.399355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.399356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d54 2552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.399358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.399359 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.399360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.399361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.399368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.399369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.399371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.399373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.409318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.409319 LLDP, length 82 [|LLDP] 19:47:26.409347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.409356 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.409358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.409359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.409376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.409377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.409379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.409386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.409387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d5b c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.409388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.409389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.409390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.409392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.419317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.419319 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.419320 LLDP, length 82 [|LLDP] 19:47:26.419344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.419352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.419365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.419366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d63 6792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.419367 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.419368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.419369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.419377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.419378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.419380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.419381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.419383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.429312 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.429314 LLDP, length 82 [|LLDP] 19:47:26.429335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.429343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.429355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.429356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d6b 08b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.429358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.429359 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.429360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.429361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.429368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.429370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.429372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.429373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.429374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.439312 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.439314 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.439315 LLDP, length 82 [|LLDP] 19:47:26.439344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.439352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.439353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.439354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.439355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.439372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.439374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.439375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d72 a9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.439377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.439378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.439379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.439380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.449320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.449322 LLDP, length 82 [|LLDP] 19:47:26.449351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.449361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.449373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.449374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d7a 4af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.449376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.449377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.449378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.449379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.449387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.449389 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.449391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.449392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.449393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.459320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.459321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.459322 LLDP, length 82 [|LLDP] 19:47:26.459359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.459368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.459381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.459382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d81 ec12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.459383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.459384 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.459393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.459394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.459403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.459404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.459407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.459408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.469320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.469322 LLDP, length 82 [|LLDP] 19:47:26.469349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.469359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.469371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.469372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d89 8d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.469374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.469375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.469381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.469382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.469384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.469385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.469386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.469387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.469388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.479321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.479323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.479324 LLDP, length 82 [|LLDP] 19:47:26.479357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.479367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.479379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.479380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d91 2e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.479381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.479383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.479384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.479385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.479401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.479402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.479404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.479406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.489327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.489329 LLDP, length 82 [|LLDP] 19:47:26.489355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.489365 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.489366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.489367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.489383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.489384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.489386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.489393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.489394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d98 cf72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.489396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.489397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.489398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.489399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.499319 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.499321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.499322 LLDP, length 82 [|LLDP] 19:47:26.499356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.499366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.499378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.499379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0da0 7092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.499381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.499382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.499383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.499401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.499402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.499405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.499406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.499407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.509317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.509319 LLDP, length 82 [|LLDP] 19:47:26.509344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.509354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.509366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.509367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0da8 11b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.509369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.509370 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.509371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.509371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.509379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.509380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.509382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.509383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.509385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.519318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.519320 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.519321 LLDP, length 82 [|LLDP] 19:47:26.519349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.519359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.519360 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.519361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.519362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.519378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.519381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.519382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0daf b2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.519384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.519394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.519396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.519397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.529320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.529321 LLDP, length 82 [|LLDP] 19:47:26.529347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.529357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.529370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.529371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0db7 53f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.529372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.529373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.529374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.529375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.529383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.529384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.529386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.529387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.529389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.539325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.539327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.539328 LLDP, length 82 [|LLDP] 19:47:26.539356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.539365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.539377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.539378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dbe f512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.539380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.539381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.539382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.539383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.539400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.539401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.539404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.539406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.549318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.549320 LLDP, length 82 [|LLDP] 19:47:26.549347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.549356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.549369 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.549370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dc6 9632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.549371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.549372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.549378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.549379 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.549382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.549383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.549384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.549385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.549386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.559323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.559325 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.559326 LLDP, length 82 [|LLDP] 19:47:26.559356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.559365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.559378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.559379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dce 3752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.559380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.559381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.559382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.559383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.559400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.559402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.559404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.559406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.569323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.569325 LLDP, length 82 [|LLDP] 19:47:26.569359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.569368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.569369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.569370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.569386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.569388 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.569390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.569397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.569397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dd5 d872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.569399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.569400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.569401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.569402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.579321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.579322 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.579323 LLDP, length 82 [|LLDP] 19:47:26.579351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.579362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.579374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.579375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ddd 7992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.579377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.579378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.579379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.579396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.579397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.579399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.579400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.579402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.589319 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.589321 LLDP, length 82 [|LLDP] 19:47:26.589345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.589355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.589367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.589368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0de5 1ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.589370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.589371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.589372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.589373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.589380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.589381 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.589383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.589384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.589385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.599323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.599324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.599325 LLDP, length 82 [|LLDP] 19:47:26.599352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.599362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.599363 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.599364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.599365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.599382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.599384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.599395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dec bbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.599397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.599398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.599399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.599400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.609324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.609326 LLDP, length 82 [|LLDP] 19:47:26.609357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.609366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.609379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.609380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0df4 5cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.609381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.609382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.609383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.609385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.609392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.609394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.609396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.609397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.609398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.619325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.619327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.619328 LLDP, length 82 [|LLDP] 19:47:26.619356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.619367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.619380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.619381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dfb fe12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.619383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.619384 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.619393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.619395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.619402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.619404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.619406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.619408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.629327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.629329 LLDP, length 82 [|LLDP] 19:47:26.629361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.629370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.629383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.629384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e03 9f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.629385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.629386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.629392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.629393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.629396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.629396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.629397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.629399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.629400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.639320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.639321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.639322 LLDP, length 82 [|LLDP] 19:47:26.639351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.639361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.639374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.639374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e0b 4052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.639376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.639377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.639378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.639379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.639397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.639398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.639401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.639402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.649321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.649322 LLDP, length 82 [|LLDP] 19:47:26.649357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.649366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.649368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.649369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.649385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.649386 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.649388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.649395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.649396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e12 e172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.649398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.649399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.649400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.649401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.659322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.659323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.659324 LLDP, length 82 [|LLDP] 19:47:26.659353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.659363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.659375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.659376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e1a 8292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.659378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.659379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.659380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.659396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.659397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.659400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.659401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.659402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.669322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.669323 LLDP, length 82 [|LLDP] 19:47:26.669355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.669364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.669377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.669378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e22 23b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.669380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.669381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.669382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.669383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.669391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.669392 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.669394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.669395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.669396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.679324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.679326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.679327 LLDP, length 82 [|LLDP] 19:47:26.679357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.679367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.679368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.679369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.679370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.679395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.679398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.679399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e29 c4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.679400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.679401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.679402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.679404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.689325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.689327 LLDP, length 82 [|LLDP] 19:47:26.689353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.689362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.689374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.689375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e31 65f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.689377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.689378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.689379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.689380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.689387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.689388 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.689390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.689392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.689393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.699325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.699327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.699328 LLDP, length 82 [|LLDP] 19:47:26.699356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.699366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.699379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.699379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e39 0712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.699381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.699382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.699383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.699384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.699401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.699402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.699405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.699406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.709321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.709322 LLDP, length 82 [|LLDP] 19:47:26.709353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.709362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.709375 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.709376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e40 a832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.709377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.709378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.709384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.709385 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.709388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.709389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.709390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.709391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.709392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.719326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.719328 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.719329 LLDP, length 82 [|LLDP] 19:47:26.719358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.719367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.719379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.719380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e48 4952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.719382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.719383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.719384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.719394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.719402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.719404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.719406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.719407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.729324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.729326 LLDP, length 82 [|LLDP] 19:47:26.729351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.729361 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.729362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.729363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.729379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.729380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.729382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.729389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.729389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e4f ea72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.729391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.729392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.729393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.729394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.739322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.739324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.739325 LLDP, length 82 [|LLDP] 19:47:26.739353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.739364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.739376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.739377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e57 8b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.739379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.739380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.739381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.739397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.739399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.739401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.739402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.739404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.749323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.749325 LLDP, length 82 [|LLDP] 19:47:26.749350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.749360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.749372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.749373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e5f 2cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.749374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.749375 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.749376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.749377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.749384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.749385 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.749387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.749388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.749389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.759322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.759324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.759325 LLDP, length 82 [|LLDP] 19:47:26.759355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.759364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.759365 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.759366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.759367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.759384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.759395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.759396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e66 cdd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.759398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.759399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.759400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.759401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.769322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.769324 LLDP, length 82 [|LLDP] 19:47:26.769357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.769367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.769379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.769380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e6e 6ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.769382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.769383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.769384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.769385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.769392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.769393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.769395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.769396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.769397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.779321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.779323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.779324 LLDP, length 82 [|LLDP] 19:47:26.779353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.779362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.779375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.779375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e76 1012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.779377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.779378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.779379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.779380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.779396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.779397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.779400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.779401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.789324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.789326 LLDP, length 82 [|LLDP] 19:47:26.789351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.789359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.789372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.789373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e7d b132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.789374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.789375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.789381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.789382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.789385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.789386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.789387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.789388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.789389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.799323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.799324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.799325 LLDP, length 82 [|LLDP] 19:47:26.799360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.799370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.799383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.799383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e85 5252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.799393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.799394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.799395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.799396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.799404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.799405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.799407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.799409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.809325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.809327 LLDP, length 82 [|LLDP] 19:47:26.809358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.809368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.809369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.809370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.809386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.809387 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.809389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.809395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.809396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e8c f372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.809398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.809399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.809400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.809401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.819325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.819326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.819327 LLDP, length 82 [|LLDP] 19:47:26.819354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.819364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.819376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.819377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e94 9492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.819379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.819380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.819381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.819397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.819398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.819401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.819401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.819403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.829321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.829323 LLDP, length 82 [|LLDP] 19:47:26.829347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.829357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.829369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.829370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e9c 35b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.829372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.829373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.829374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.829375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.829382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.829383 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.829385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.829386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.829388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.839322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.839323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.839324 LLDP, length 82 [|LLDP] 19:47:26.839350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.839360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.839361 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.839362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.839363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.839380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.839382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.839383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ea3 d6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.839384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.839394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.839395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.839396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.849322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.849323 LLDP, length 82 [|LLDP] 19:47:26.849354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.849363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.849376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.849376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eab 77f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.849378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.849379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.849380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.849381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.849388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.849390 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.849392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.849393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.849395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.859319 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.859321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.859322 LLDP, length 82 [|LLDP] 19:47:26.859348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.859356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.859368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.859369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eb3 1912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.859371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.859372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.859372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.859373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.859381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.859382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.859385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.859394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.869322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.869324 LLDP, length 82 [|LLDP] 19:47:26.869353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.869361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.869374 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.869375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eba ba32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.869376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.869377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.869383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.869384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.869386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.869387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.869388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.869389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.869391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.879321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.879323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.879324 LLDP, length 82 [|LLDP] 19:47:26.879356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.879364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.879376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.879377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ec2 5b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.879379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.879379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.879380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.879382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.879397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.879398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.879401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.879402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.889320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.889322 LLDP, length 82 [|LLDP] 19:47:26.889348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.889356 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.889358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.889359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.889374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.889375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.889378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.889384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.889384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ec9 fc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.889386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.889387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.889388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.889389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.899318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.899320 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.899321 LLDP, length 82 [|LLDP] 19:47:26.899342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.899351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.899363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.899364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ed1 9d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.899366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.899367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.899368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.899374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.899375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.899377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.899378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.899380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.909321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.909323 LLDP, length 82 [|LLDP] 19:47:26.909342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.909350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.909362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.909363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ed9 3eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.909365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.909366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.909367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.909368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.909375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.909376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.909378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.909379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.909381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.919317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.919319 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.919320 LLDP, length 82 [|LLDP] 19:47:26.919349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.919357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.919358 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.919359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.919360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.919376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.919378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.919379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ee0 dfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.919381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.919382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.919383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.919385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.929322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.929323 LLDP, length 82 [|LLDP] 19:47:26.929342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.929350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.929362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.929363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ee8 80f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.929365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.929366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.929367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.929368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.929375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.929376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.929378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.929379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.929380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.939320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.939321 LLDP, length 82 [|LLDP] 19:47:26.939347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.939355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.939368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.939369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ef0 2212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.939370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.939372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.939373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.939374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.939381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.939382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.939384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.939392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.939394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.949321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.949323 LLDP, length 82 [|LLDP] 19:47:26.949353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.949361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.949373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.949374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ef7 c332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.949376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.949377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.949383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.949384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.949386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.949387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.949388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.949389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.949390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.959321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.959323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.959324 LLDP, length 82 [|LLDP] 19:47:26.959351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.959359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.959372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.959373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eff 6452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.959374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.959375 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.959376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.959377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.959384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.959391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.959394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.959395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.969332 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.969334 LLDP, length 82 [|LLDP] 19:47:26.969362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.969371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.969372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.969373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.969389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.969390 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.969392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.969399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.969400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f07 0572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.969402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.969403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.969404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.969405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.979325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.979328 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.979329 LLDP, length 82 [|LLDP] 19:47:26.979358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.979368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.979380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.979381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f0e a692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.979383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.979384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.979385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.979399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.979400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.979402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.979403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.979405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.989328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.989329 LLDP, length 82 [|LLDP] 19:47:26.989355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.989365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.989377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.989377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f16 47b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.989379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.989380 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.989381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.989382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.989389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.989390 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.989392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.989393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.989395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.999328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.999330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.999331 LLDP, length 82 [|LLDP] 19:47:26.999360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.999370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.999371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.999372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.999373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.999398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.999401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.999402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f1d e8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.999403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.999404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.999405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.999407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.009327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.009329 LLDP, length 82 [|LLDP] 19:47:27.009361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.009371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.009383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.009384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f25 89f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.009386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.009387 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.009387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.009388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.009395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.009397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.009399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.009400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.009401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.019326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.019328 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.019330 LLDP, length 82 [|LLDP] 19:47:27.019362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.019372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.019384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.019392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f2d 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.019393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.019394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.019395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.019396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.019403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.019404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.019407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.019409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.029326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.029328 LLDP, length 82 [|LLDP] 19:47:27.029352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.029361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.029373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.029374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f34 cc32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.029376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.029376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.029383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.029384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.029386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.029387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.029388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.029389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.029390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.039325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.039327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.039329 LLDP, length 82 [|LLDP] 19:47:27.039356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.039366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.039378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.039379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f3c 6d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.039380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.039381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.039382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.039383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.039399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.039400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.039402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.039403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.049328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.049330 LLDP, length 82 [|LLDP] 19:47:27.049359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.049368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.049369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.049370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.049386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.049387 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.049389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.049395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.049396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f44 0e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.049397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.049399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.049399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.049401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.059325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.059347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.059349 LLDP, length 82 [|LLDP] 19:47:27.059377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.059393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.059407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.059408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f4b af92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.059410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.059411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.059412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.059419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.059420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.059422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.059423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.059425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.069360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.069362 LLDP, length 82 [|LLDP] 19:47:27.069399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.069412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.069427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.069428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f53 50b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.069430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.069431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.069432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.069433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.069443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.069445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.069447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.069448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.069450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.079336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.079338 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.079339 LLDP, length 82 [|LLDP] 19:47:27.079379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.079396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.079397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.079399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.079400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.079419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.079421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.079422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f5a f1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.079424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.079425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.079426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.079427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.089329 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.089331 LLDP, length 82 [|LLDP] 19:47:27.089358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.089367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.089379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.089380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f62 92f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.089382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.089383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.089384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.089385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.089393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.089394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.089397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.089398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.089399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.099328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.099330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.099331 LLDP, length 82 [|LLDP] 19:47:27.099361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.099371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.099383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.099384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f6a 3412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.099393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.099394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.099395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.099397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.099405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.099406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.099408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.099410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.109333 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.109335 LLDP, length 82 [|LLDP] 19:47:27.109362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.109372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.109384 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.109385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f71 d532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.109387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.109388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.109394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.109396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.109398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.109399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.109400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.109401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.109402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.119327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.119329 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.119330 LLDP, length 82 [|LLDP] 19:47:27.119358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.119366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.119378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.119379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f79 7652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.119381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.119382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.119383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.119384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.119400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.119401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.119403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.119405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.129337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.129339 LLDP, length 82 [|LLDP] 19:47:27.129367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.129377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.129378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.129379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.129396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.129397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.129399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.129406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.129407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f81 1772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.129408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.129409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.129411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.129412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.139327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.139330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.139331 LLDP, length 82 [|LLDP] 19:47:27.139358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.139367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.139380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.139381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f88 b892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.139382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.139383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.139384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.139399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.139401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.139403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.139404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.139406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.149326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.149328 LLDP, length 82 [|LLDP] 19:47:27.149357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.149367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.149379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.149380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f90 59b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.149381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.149383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.149384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.149385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.149392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.149393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.149396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.149397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.149398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.159337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.159340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.159341 LLDP, length 82 [|LLDP] 19:47:27.159380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.159396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.159397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.159398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.159399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.159418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.159421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.159422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f97 fad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.159423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.159424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.159426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.159427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.169336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.169338 LLDP, length 82 [|LLDP] 19:47:27.169372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.169381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.169393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.169394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f9f 9bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.169396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.169397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.169398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.169399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.169406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.169407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.169410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.169411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.169412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.180969 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.180971 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.180972 LLDP, length 82 [|LLDP] 19:47:27.181001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.181010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.181022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.181023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fa7 3d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.181025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.181025 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.181026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.181027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.181035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.181036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.181038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.181040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.190890 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.190892 LLDP, length 82 [|LLDP] 19:47:27.190925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.190935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.190948 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.190949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fae de32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.190950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.190952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.190958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.190959 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.190962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.190963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.190964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.190964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.190966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.199335 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.199337 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.199338 LLDP, length 82 [|LLDP] 19:47:27.199369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.199374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.199393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.199394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fb6 7f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.199396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.199397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.199398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.199399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.199407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.199408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.199410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.199412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.209497 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.209499 LLDP, length 82 [|LLDP] 19:47:27.209514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.209517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.209518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.209519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.209533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.209534 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.209536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.209541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.209542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fbe 2072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.209543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.209544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.209545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.209546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.219320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.219322 LLDP, length 82 [|LLDP] 19:47:27.219337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.219339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.219350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.219351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fc5 c192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.219352 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.219353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.219354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.219360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.219361 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.219363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.219364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.219365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.219366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.229339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.229341 LLDP, length 82 [|LLDP] 19:47:27.229364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.229368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.229379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.229380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fcd 62b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.229381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.229382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.229383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.229384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.229392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.229392 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.229395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.229396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.229397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.239321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.239322 LLDP, length 82 [|LLDP] 19:47:27.239337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.239340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.239341 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.239342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.239343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.239357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.239358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.239364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.239365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fd5 03d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.239367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.239368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.239369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.239370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.251554 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.251555 LLDP, length 82 [|LLDP] 19:47:27.251571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.251573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.251584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.251585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fdc a4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.251587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.251588 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.251589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.251590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.251596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.251597 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.251599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.251600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.251601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.259327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.259329 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.259330 LLDP, length 82 [|LLDP] 19:47:27.259365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.259368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.259379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.259380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fe4 4612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.259382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.259383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.259384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.259398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.259406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.259407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.259410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.259411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.269323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.269324 LLDP, length 82 [|LLDP] 19:47:27.269340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.269343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.269353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.269354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0feb e732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.269356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.269357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.269362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.269363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.269365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.269366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.269367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.269368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.269369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.279353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.279355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.279356 LLDP, length 82 [|LLDP] 19:47:27.279408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.279413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.279426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.279427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ff3 8852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.279429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.279430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.279431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.279432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.279440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.279441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.279444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.279445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.289387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.289390 LLDP, length 82 [|LLDP] 19:47:27.289454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.289460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.289461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.289463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.289481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.289483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.289485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.289500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.289501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ffb 2972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.289502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.289503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.289504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.289506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.299382 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.299385 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.299397 LLDP, length 82 [|LLDP] 19:47:27.299461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.299468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.299482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.299483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1002 ca92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.299485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.299486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.299487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.299496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.299498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.299500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.299501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.299503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.309330 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.309332 LLDP, length 82 [|LLDP] 19:47:27.309360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.309363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.309375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.309376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 100a 6bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.309378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.309379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.309380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.309381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.309388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.309389 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.309392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.309392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.309394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.319325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.319326 LLDP, length 82 [|LLDP] 19:47:27.319352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.319355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.319356 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.319356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.319358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.319373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.319374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.319380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.319380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1012 0cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.319382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.319383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.319384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.319392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.329325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.329326 LLDP, length 82 [|LLDP] 19:47:27.329343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.329345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.329356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.329357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1019 adf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.329359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.329360 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.329360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.329361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.329368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.329369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.329372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.329373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.329374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.339324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.339325 LLDP, length 82 [|LLDP] 19:47:27.339348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.339351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.339361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.339362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1021 4f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.339364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.339365 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.339366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.339367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.339373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.339374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.339377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.339378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.339379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.349323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.349324 LLDP, length 82 [|LLDP] 19:47:27.349339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.349342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.349353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.349353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1028 f032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.349355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.349356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.349361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.349363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.349365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.349366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.349367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.349368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.349369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.359325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.359326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.359327 LLDP, length 82 [|LLDP] 19:47:27.359353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.359355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.359366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.359367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1030 9152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.359368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.359369 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.359370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.359371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.359378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.359379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.359381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.359383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.369325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.369327 LLDP, length 82 [|LLDP] 19:47:27.369344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.369347 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.369348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.369349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.369363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.369364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.369366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.369371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.369372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1038 3272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.369373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.369374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.369375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.369376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.379325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.379326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.379327 LLDP, length 82 [|LLDP] 19:47:27.379347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.379350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.379361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.379362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 103f d392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.379363 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.379364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.379365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.379371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.379372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.379374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.379375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.379377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.389329 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.389331 LLDP, length 82 [|LLDP] 19:47:27.389354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.389357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.389368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.389369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1047 74b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.389370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.389371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.389372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.389373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.389380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.389381 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.389383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.389384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.389385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.399325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.399327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.399327 LLDP, length 82 [|LLDP] 19:47:27.399355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.399358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.399359 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.399360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.399361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.399376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.399378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.399379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 104f 15d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.399381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.399382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.399382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.399384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.409368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.409370 LLDP, length 82 [|LLDP] 19:47:27.409422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.409439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.409455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.409456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1056 b6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.409458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.409459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.409460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.409461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.409471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.409473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.409475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.409476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.409478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.419356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.419358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.419359 LLDP, length 82 [|LLDP] 19:47:27.419418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.419429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.419443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.419444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 105e 5812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.419445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.419447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.419448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.419449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.419457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.419458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.419461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.419463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.429340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.429342 LLDP, length 82 [|LLDP] 19:47:27.429372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.429384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.429397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.429398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1065 f932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.429400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.429401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.429408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.429409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.429411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.429412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.429413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.429414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.429416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.439343 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.439345 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.439352 LLDP, length 82 [|LLDP] 19:47:27.439384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.439406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.439420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.439422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 106d 9a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.439423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.439424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.439425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.439426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.439434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.439435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.439438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.439439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.449353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.449355 LLDP, length 82 [|LLDP] 19:47:27.449391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.449402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.449403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.449404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.449421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.449422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.449425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.449433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.449434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1075 3b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.449435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.449436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.449438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.449439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.459346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.459348 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.459349 LLDP, length 82 [|LLDP] 19:47:27.459393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.459404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.459420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.459421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 107c dc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.459423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.459424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.459425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.459434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.459435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.459438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.459439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.459440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.469358 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.469360 LLDP, length 82 [|LLDP] 19:47:27.469393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.469403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.469416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.469417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1084 7db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.469419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.469420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.469421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.469422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.469431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.469432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.469434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.469435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.469436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.479347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.479349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.479350 LLDP, length 82 [|LLDP] 19:47:27.479395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.479405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.479406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.479407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.479408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.479428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.479431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.479432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 108c 1ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.479433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.479434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.479436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.479438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.489344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.489346 LLDP, length 82 [|LLDP] 19:47:27.489380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.489392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.489406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.489407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1093 bff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.489408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.489410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.489411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.489412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.489420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.489421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.489423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.489424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.489425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.499353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.499355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.499356 LLDP, length 82 [|LLDP] 19:47:27.499408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.499421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.499436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.499436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 109b 6112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.499438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.499439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.499440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.499441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.499449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.499451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.499453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.499454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.509348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.509350 LLDP, length 82 [|LLDP] 19:47:27.509385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.509398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.509412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.509413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10a3 0232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.509414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.509415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.509422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.509423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.509425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.509427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.509428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.509429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.509430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.519349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.519351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.519352 LLDP, length 82 [|LLDP] 19:47:27.519400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.519412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.519428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.519429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10aa a352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.519430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.519431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.519432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.519433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.519442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.519443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.519446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.519447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.529352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.529354 LLDP, length 82 [|LLDP] 19:47:27.529387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.529397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.529398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.529399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.529417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.529418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.529421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.529429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.529430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10b2 4472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.529431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.529432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.529434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.529435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.539349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.539351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.539352 LLDP, length 82 [|LLDP] 19:47:27.539397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.539407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.539422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.539422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10b9 e592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.539424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.539425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.539426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.539434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.539435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.539438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.539439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.539440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.549344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.549346 LLDP, length 82 [|LLDP] 19:47:27.549379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.549389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.549402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.549403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10c1 86b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.549405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.549406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.549407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.549408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.549416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.549418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.549420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.549421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.549423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.559345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.559354 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.559356 LLDP, length 82 [|LLDP] 19:47:27.559399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.559409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.559410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.559411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.559412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.559433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.559435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.559436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10c9 27d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.559438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.559439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.559440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.559442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.569345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.569347 LLDP, length 82 [|LLDP] 19:47:27.569385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.569395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.569408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.569409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10d0 c8f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.569411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.569412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.569413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.569414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.569422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.569423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.569426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.569427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.569428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.579346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.579348 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.579355 LLDP, length 82 [|LLDP] 19:47:27.579405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.579417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.579432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.579433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10d8 6a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.579434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.579435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.579436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.579437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.579446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.579448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.579450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.579451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.589344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.589346 LLDP, length 82 [|LLDP] 19:47:27.589380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.589389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.589403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.589404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10e0 0b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.589405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.589406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.589413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.589414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.589417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.589418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.589418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.589419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.589421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.599357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.599359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.599361 LLDP, length 82 [|LLDP] 19:47:27.599408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.599418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.599433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.599433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10e7 ac52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.599435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.599436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.599437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.599439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.599447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.599448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.599451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.599452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.609350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.609352 LLDP, length 82 [|LLDP] 19:47:27.609393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.609406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.609407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.609408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.609425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.609426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.609429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.609436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.609437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10ef 4d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.609439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.609440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.609441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.609443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.619353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.619355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.619356 LLDP, length 82 [|LLDP] 19:47:27.619404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.619416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.619430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.619431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10f6 ee92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.619432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.619433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.619434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.619443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.619444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.619447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.619448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.619450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.629344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.629346 LLDP, length 82 [|LLDP] 19:47:27.629379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.629389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.629402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.629403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10fe 8fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.629405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.629406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.629407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.629408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.629416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.629417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.629420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.629421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.629422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.639350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.639352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.639353 LLDP, length 82 [|LLDP] 19:47:27.639396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.639405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.639407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.639408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.639408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.639427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.639430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.639431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1106 30d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.639433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.639434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.639435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.639436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.649344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.649346 LLDP, length 82 [|LLDP] 19:47:27.649374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.649385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.649398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.649398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 110d d1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.649400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.649401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.649402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.649403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.649411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.649412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.649414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.649415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.649417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.659349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.659351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.659352 LLDP, length 82 [|LLDP] 19:47:27.659395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.659405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.659419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.659420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1115 7312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.659422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.659423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.659424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.659425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.659433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.659434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.659436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.659437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.669342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.669344 LLDP, length 82 [|LLDP] 19:47:27.669376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.669386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.669398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.669399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 111d 1432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.669401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.669402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.669408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.669409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.669411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.669412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.669413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.669414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.669416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.679344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.679346 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.679347 LLDP, length 82 [|LLDP] 19:47:27.679379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.679398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.679413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.679413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1124 b552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.679415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.679416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.679417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.679418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.679427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.679428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.679430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.679432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.689340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.689342 LLDP, length 82 [|LLDP] 19:47:27.689367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.689378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.689379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.689380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.689396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.689397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.689399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.689406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.689407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 112c 5672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.689408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.689409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.689410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.689412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.699339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.699341 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.699342 LLDP, length 82 [|LLDP] 19:47:27.699375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.699392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.699406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.699407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1133 f792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.699409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.699410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.699411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.699418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.699420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.699422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.699423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.699425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.709344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.709346 LLDP, length 82 [|LLDP] 19:47:27.709383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.709392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.709406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.709407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 113b 98b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.709408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.709409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.709410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.709412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.709420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.709421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.709423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.709424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.709426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.719339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.719341 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.719342 LLDP, length 82 [|LLDP] 19:47:27.719373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.719381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.719382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.719383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.719384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.719412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.719416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.719417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1143 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.719418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.719419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.719420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.719422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.729338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.729340 LLDP, length 82 [|LLDP] 19:47:27.729373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.729380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.729393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.729394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 114a daf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.729396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.729396 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.729397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.729398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.729407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.729408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.729410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.729411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.729413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.739339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.739340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.739341 LLDP, length 82 [|LLDP] 19:47:27.739374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.739382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.739404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.739404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1152 7c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.739406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.739407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.739408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.739410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.739417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.739419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.739421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.739422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.749337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.749338 LLDP, length 82 [|LLDP] 19:47:27.749367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.749375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.749388 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.749388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 115a 1d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.749390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.749391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.749397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.749398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.749401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.749402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.749403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.749404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.749405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.759337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.759339 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.759340 LLDP, length 82 [|LLDP] 19:47:27.759366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.759374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.759396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.759397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1161 be52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.759399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.759399 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.759400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.759402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.759410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.759411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.759413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.759415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.769340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.769342 LLDP, length 82 [|LLDP] 19:47:27.769365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.769372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.769373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.769374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.769390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.769391 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.769394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.769400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.769401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1169 5f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.769403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.769404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.769405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.769406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.779336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.779338 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.779339 LLDP, length 82 [|LLDP] 19:47:27.779363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.779371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.779383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.779385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1171 0092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.779394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.779395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.779396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.779404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.779405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.779407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.779408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.779410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.789338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.789340 LLDP, length 82 [|LLDP] 19:47:27.789369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.789377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.789389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.789390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1178 a1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.789392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.789393 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.789394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.789395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.789403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.789404 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.789406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.789407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.789409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.799336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.799338 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.799339 LLDP, length 82 [|LLDP] 19:47:27.799362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.799371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.799372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.799373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.799374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.799400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.799402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.799403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1180 42d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.799405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.799406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.799407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.799408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.809339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.809340 LLDP, length 82 [|LLDP] 19:47:27.809365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.809374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.809386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.809387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1187 e3f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.809389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.809390 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.809391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.809392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.809400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.809401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.809404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.809405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.809406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.819338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.819340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.819340 LLDP, length 82 [|LLDP] 19:47:27.819368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.819376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.819398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.819399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 118f 8512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.819401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.819402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.819403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.819404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.819412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.819413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.819416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.819417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.829340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.829342 LLDP, length 82 [|LLDP] 19:47:27.829372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.829381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.829394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.829395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1197 2632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.829396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.829397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.829404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.829405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.829407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.829408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.829409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.829410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.829411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.839337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.839339 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.839340 LLDP, length 82 [|LLDP] 19:47:27.839368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.839376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.839399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.839400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 119e c752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.839401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.839402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.839403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.839404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.839412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.839413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.839415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.839417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.849336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.849338 LLDP, length 82 [|LLDP] 19:47:27.849361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.849368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.849369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.849370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.849386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.849388 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.849390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.849396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.849397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11a6 6872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.849399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.849400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.849401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.849402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.859340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.859342 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.859343 LLDP, length 82 [|LLDP] 19:47:27.859374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.859381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.859404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.859405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11ae 0992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.859406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.859407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.859408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.859416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.859417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.859419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.859420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.859422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.869339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.869340 LLDP, length 82 [|LLDP] 19:47:27.869369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.869376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.869389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.869390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11b5 aab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.869391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.869392 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.869393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.869394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.869402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.869403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.869406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.869407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.869408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.879337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.879339 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.879340 LLDP, length 82 [|LLDP] 19:47:27.879366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.879373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.879374 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.879375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.879376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.879404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.879407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.879408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11bd 4bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.879409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.879410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.879411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.879413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.889337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.889338 LLDP, length 82 [|LLDP] 19:47:27.889360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.889368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.889380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.889381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11c4 ecf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.889382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.889383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.889384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.889385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.889393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.889394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.889396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.889397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.889399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.899338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.899340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.899341 LLDP, length 82 [|LLDP] 19:47:27.899374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.899382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.899403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.899404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11cc 8e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.899406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.899407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.899408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.899409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.899417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.899418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.899420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.899422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.909338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.909339 LLDP, length 82 [|LLDP] 19:47:27.909361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.909370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.909382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.909383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11d4 2f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.909384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.909386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.909392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.909393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.909395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.909396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.909397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.909398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.909399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.919342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.919344 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.919345 LLDP, length 82 [|LLDP] 19:47:27.919372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.919401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.919418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.919419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11db d052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.919421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.919422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.919423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.919424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.919432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.919433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.919435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.919437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.929364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.929366 LLDP, length 82 [|LLDP] 19:47:27.929398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.929409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.929410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.929411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.929430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.929431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.929434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.929443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.929444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11e3 7172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.929445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.929447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.929448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.929449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.939350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.939352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.939353 LLDP, length 82 [|LLDP] 19:47:27.939395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.939406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.939421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.939422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11eb 1292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.939423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.939424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.939426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.939434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.939435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.939437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.939438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.939440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.949356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.949359 LLDP, length 82 [|LLDP] 19:47:27.949391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.949402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.949416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.949417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11f2 b3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.949418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.949419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.949420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.949421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.949430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.949431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.949433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.949434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.949436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.959345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.959347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.959348 LLDP, length 82 [|LLDP] 19:47:27.959379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.959394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.959395 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.959396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.959397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.959417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.959420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.959421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11fa 54d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.959422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.959423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.959424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.959426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.969344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.969346 LLDP, length 82 [|LLDP] 19:47:27.969371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.969380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.969393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.969393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1201 f5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.969395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.969396 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.969397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.969398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.969405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.969407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.969409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.969410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.969411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.979348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.979349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.979350 LLDP, length 82 [|LLDP] 19:47:27.979378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.979393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.979407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.979408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1209 9712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.979410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.979411 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.979412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.979413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.979420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.979421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.979424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.979425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.989345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.989347 LLDP, length 82 [|LLDP] 19:47:27.989371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.989381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.989394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.989394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1211 3832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.989396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.989397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.989404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.989405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.989407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.989408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.989409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.989410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.989412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.999342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.999344 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.999345 LLDP, length 82 [|LLDP] 19:47:27.999371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.999379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.999401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.999402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1218 d952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.999403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.999404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.999405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.999406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.999415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.999416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.999418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.999419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.009343 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.009345 LLDP, length 82 [|LLDP] 19:47:28.009369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.009377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.009378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.009379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.009395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.009397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.009399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.009405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.009407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1220 7a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.009408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.009409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.009410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.009411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.019342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.019344 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.019345 LLDP, length 82 [|LLDP] 19:47:28.019381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.019397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.019411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.019412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1228 1b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.019414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.019415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.019416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.019423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.019424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.019426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.019427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.019429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.029342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.029344 LLDP, length 82 [|LLDP] 19:47:28.029370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.029378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.029391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.029392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 122f bcb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.029393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.029394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.029395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.029396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.029404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.029405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.029408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.029409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.029410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.039346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.039347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.039348 LLDP, length 82 [|LLDP] 19:47:28.039377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.039384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.039392 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.039393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.039395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.039413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.039416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.039417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1237 5dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.039418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.039419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.039420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.039422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.049343 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.049345 LLDP, length 82 [|LLDP] 19:47:28.049375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.049384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.049396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.049397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 123e fef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.049399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.049400 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.049401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.049402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.049409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.049410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.049413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.049414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.049415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.059342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.059343 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.059345 LLDP, length 82 [|LLDP] 19:47:28.059372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.059380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.059402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.059403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1246 a012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.059405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.059406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.059407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.059408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.059416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.059417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.059420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.059421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.069345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.069347 LLDP, length 82 [|LLDP] 19:47:28.069370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.069379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.069392 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.069393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 124e 4132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.069394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.069395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.069402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.069403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.069405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.069406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.069407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.069408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.069410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.079344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.079346 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.079347 LLDP, length 82 [|LLDP] 19:47:28.079374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.079383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.079404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.079405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1255 e252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.079407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.079407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.079409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.079410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.079418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.079419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.079421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.079423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.089346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.089348 LLDP, length 82 [|LLDP] 19:47:28.089372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.089381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.089381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.089382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.089399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.089401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.089403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.089410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.089411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 125d 8372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.089412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.089413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.089414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.089416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.099351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.099352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.099353 LLDP, length 82 [|LLDP] 19:47:28.099381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.099398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.099412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.099413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1265 2492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.099415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.099416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.099417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.099424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.099425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.099427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.099428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.099430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.109347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.109349 LLDP, length 82 [|LLDP] 19:47:28.109371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.109380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.109393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.109394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 126c c5b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.109396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.109397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.109398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.109399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.109406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.109407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.109409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.109411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.109412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.119345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.119346 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.119347 LLDP, length 82 [|LLDP] 19:47:28.119374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.119382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.119383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.119384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.119392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.119411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.119414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.119415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1274 66d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.119416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.119417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.119419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.119420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.129359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.129360 LLDP, length 82 [|LLDP] 19:47:28.129393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.129404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.129418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.129419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 127c 07f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.129421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.129422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.129423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.129424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.129432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.129434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.129436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.129437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.129438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.139347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.139349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.139350 LLDP, length 82 [|LLDP] 19:47:28.139395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.139405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.139420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.139421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1283 a912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.139422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.139423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.139424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.139425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.139434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.139435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.139437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.139438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.149350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.149351 LLDP, length 82 [|LLDP] 19:47:28.149376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.149386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.149400 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.149401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 128b 4a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.149403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.149404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.149410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.149411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.149413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.149414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.149415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.149417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.149418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.159350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.159352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.159353 LLDP, length 82 [|LLDP] 19:47:28.159382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.159398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.159413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.159414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1292 eb52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.159416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.159417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.159418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.159419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.159427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.159428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.159430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.159432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.169348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.169349 LLDP, length 82 [|LLDP] 19:47:28.169380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.169390 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.169391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.169392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.169409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.169411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.169413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.169420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.169421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 129a 8c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.169422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.169424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.169425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.169426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.179351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.179353 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.179354 LLDP, length 82 [|LLDP] 19:47:28.179383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.179399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.179416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.179416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12a2 2d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.179418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.179419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.179420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.179427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.179428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.179430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.179432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.179433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.189351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.189352 LLDP, length 82 [|LLDP] 19:47:28.189378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.189388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.189402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.189403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12a9 ceb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.189404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.189405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.189406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.189408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.189416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.189416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.189419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.189420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.189421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.199352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.199354 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.199355 LLDP, length 82 [|LLDP] 19:47:28.199384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.199400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.199401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.199402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.199403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.199422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.199425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.199426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12b1 6fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.199427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.199429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.199430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.199432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.209349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.209350 LLDP, length 82 [|LLDP] 19:47:28.209375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.209385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.209399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.209399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12b9 10f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.209401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.209402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.209403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.209404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.209412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.209413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.209416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.209417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.209418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.219355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.219356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.219357 LLDP, length 82 [|LLDP] 19:47:28.219395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.219406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.219421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.219422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12c0 b212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.219424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.219425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.219426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.219427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.219434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.219435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.219438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.219439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.229350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.229352 LLDP, length 82 [|LLDP] 19:47:28.229379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.229388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.229401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.229402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12c8 5332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.229404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.229405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.229412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.229413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.229416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.229416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.229417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.229418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.229420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.239349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.239351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.239352 LLDP, length 82 [|LLDP] 19:47:28.239381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.239397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.239411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.239412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12cf f452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.239414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.239415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.239416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.239417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.239425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.239426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.239429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.239430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.249349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.249351 LLDP, length 82 [|LLDP] 19:47:28.249378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.249387 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.249388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.249389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.249405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.249406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.249409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.249416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.249417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12d7 9572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.249418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.249419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.249420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.249422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.259350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.259351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.259352 LLDP, length 82 [|LLDP] 19:47:28.259393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.259403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.259418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.259419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12df 3692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.259420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.259421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.259422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.259430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.259431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.259433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.259434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.259436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.269352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.269354 LLDP, length 82 [|LLDP] 19:47:28.269378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.269387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.269400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.269401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12e6 d7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.269402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.269403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.269404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.269405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.269413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.269414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.269416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.269417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.269419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.279359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.279361 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.279370 LLDP, length 82 [|LLDP] 19:47:28.279413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.279422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.279423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.279425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.279425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.279445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.279448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.279449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12ee 78d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.279451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.279452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.279453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.279454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.289355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.289358 LLDP, length 82 [|LLDP] 19:47:28.289385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.289394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.289408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.289409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12f6 19f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.289411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.289412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.289413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.289414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.289422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.289423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.289425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.289427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.289428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.299360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.299363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.299364 LLDP, length 82 [|LLDP] 19:47:28.299413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.299422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.299436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.299437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12fd bb12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.299438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.299439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.299440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.299442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.299451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.299452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.299454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.299455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.309352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.309354 LLDP, length 82 [|LLDP] 19:47:28.309381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.309390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.309403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.309404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1305 5c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.309405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.309406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.309412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.309413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.309416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.309417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.309418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.309419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.309421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.319348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.319350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.319351 LLDP, length 82 [|LLDP] 19:47:28.319379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.319394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.319409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.319410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 130c fd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.319411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.319413 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.319414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.319415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.319422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.319423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.319425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.319427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.329357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.329359 LLDP, length 82 [|LLDP] 19:47:28.329394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.329402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.329403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.329404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.329422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.329423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.329425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.329434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.329435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1314 9e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.329436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.329437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.329438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.329439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.339349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.339351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.339352 LLDP, length 82 [|LLDP] 19:47:28.339396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.339411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.339427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.339428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 131c 3f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.339430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.339431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.339431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.339438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.339439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.339442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.339443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.339444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.349359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.349360 LLDP, length 82 [|LLDP] 19:47:28.349389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.349401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.349414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.349415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1323 e0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.349417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.349418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.349419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.349420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.349428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.349429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.349431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.349432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.349434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.359364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.359366 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.359367 LLDP, length 82 [|LLDP] 19:47:28.359410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.359436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.359437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.359438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.359439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.359461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.359463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.359464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 132b 81d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.359466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.359467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.359468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.359469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.369363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.369365 LLDP, length 82 [|LLDP] 19:47:28.369398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.369408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.369421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.369422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1333 22f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.369423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.369424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.369425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.369426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.369435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.369436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.369439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.369440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.369441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.379355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.379356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.379357 LLDP, length 82 [|LLDP] 19:47:28.379407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.379420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.379433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.379434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 133a c412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.379436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.379437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.379438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.379439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.379447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.379448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.379450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.379452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.389350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.389352 LLDP, length 82 [|LLDP] 19:47:28.389377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.389388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.389401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.389402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1342 6532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.389403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.389404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.389410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.389411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.389414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.389415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.389416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.389417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.389418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.399362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.399370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.399371 LLDP, length 82 [|LLDP] 19:47:28.399418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.399429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.399442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.399443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 134a 0652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.399444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.399446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.399447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.399448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.399456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.399457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.399460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.399461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.409352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.409354 LLDP, length 82 [|LLDP] 19:47:28.409379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.409391 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.409392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.409393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.409409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.409410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.409413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.409421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.409422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1351 a772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.409423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.409424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.409425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.409427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.419352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.419353 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.419354 LLDP, length 82 [|LLDP] 19:47:28.419381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.419400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.419414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.419415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1359 4892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.419417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.419418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.419419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.419426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.419427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.419429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.419430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.419431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.429376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.429378 LLDP, length 82 [|LLDP] 19:47:28.429424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.429435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.429449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.429450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1360 e9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.429452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.429453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.429454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.429455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.429464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.429465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.429468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.429469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.429471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.439357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.439360 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.439361 LLDP, length 82 [|LLDP] 19:47:28.439402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.439413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.439414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.439415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.439416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.439435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.439438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.439439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1368 8ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.439440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.439441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.439442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.439444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.449355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.449356 LLDP, length 82 [|LLDP] 19:47:28.449382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.449392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.449405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.449405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1370 2bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.449407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.449408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.449409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.449410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.449418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.449419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.449421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.449422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.449423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.459352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.459354 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.459355 LLDP, length 82 [|LLDP] 19:47:28.459382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.459401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.459415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.459416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1377 cd12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.459417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.459418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.459420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.459421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.459428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.459429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.459432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.459433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.469353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.469354 LLDP, length 82 [|LLDP] 19:47:28.469385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.469395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.469408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.469409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 137f 6e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.469411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.469412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.469418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.469419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.469421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.469422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.469423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.469424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.469426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.479356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.479358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.479359 LLDP, length 82 [|LLDP] 19:47:28.479402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.479413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.479427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.479428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1387 0f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.479429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.479430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.479431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.479432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.479439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.479440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.479442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.479444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.489357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.489359 LLDP, length 82 [|LLDP] 19:47:28.489383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.489394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.489396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.489397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.489413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.489414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.489416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.489423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.489424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 138e b072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.489425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.489427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.489428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.489429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.499351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.499352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.499353 LLDP, length 82 [|LLDP] 19:47:28.499394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.499404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.499420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.499421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1396 5192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.499422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.499423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.499424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.499431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.499432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.499435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.499436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.499437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.509348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.509350 LLDP, length 82 [|LLDP] 19:47:28.509382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.509394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.509407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.509407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 139d f2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.509409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.509410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.509411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.509412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.509420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.509421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.509423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.509425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.509426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.519348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.519350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.519351 LLDP, length 82 [|LLDP] 19:47:28.519394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.519404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.519404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.519406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.519407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.519425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.519428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.519429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13a5 93d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.519430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.519431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.519432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.519434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.529352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.529354 LLDP, length 82 [|LLDP] 19:47:28.529379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.529388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.529401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.529402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13ad 34f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.529403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.529404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.529405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.529406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.529413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.529414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.529417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.529418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.529419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.539353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.539355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.539356 LLDP, length 82 [|LLDP] 19:47:28.539399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.539409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.539423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.539424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13b4 d612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.539426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.539427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.539428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.539429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.539437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.539438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.539440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.539441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.549351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.549353 LLDP, length 82 [|LLDP] 19:47:28.549379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.549388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.549401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.549402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13bc 7732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.549403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.549404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.549410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.549412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.549414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.549415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.549415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.549417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.549418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.559355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.559357 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.559358 LLDP, length 82 [|LLDP] 19:47:28.559394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.559404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.559419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.559420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13c4 1852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.559422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.559423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.559424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.559425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.559433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.559434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.559436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.559437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.569355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.569357 LLDP, length 82 [|LLDP] 19:47:28.569382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.569393 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.569394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.569395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.569411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.569412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.569414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.569422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.569423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13cb b972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.569425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.569426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.569427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.569428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.579351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.579353 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.579354 LLDP, length 82 [|LLDP] 19:47:28.579395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.579406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.579420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.579421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13d3 5a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.579422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.579423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.579424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.579432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.579433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.579435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.579436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.579437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.589354 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.589356 LLDP, length 82 [|LLDP] 19:47:28.589387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.589398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.589411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.589412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13da fbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.589413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.589415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.589416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.589417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.589424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.589425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.589427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.589428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.589430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.599353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.599355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.599356 LLDP, length 82 [|LLDP] 19:47:28.599396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.599407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.599408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.599409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.599410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.599428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.599431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.599432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13e2 9cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.599433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.599434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.599435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.599436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.609353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.609355 LLDP, length 82 [|LLDP] 19:47:28.609380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.609390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.609403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.609404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13ea 3df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.609406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.609407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.609408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.609409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.609417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.609418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.609420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.609421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.609423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.619348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.619350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.619351 LLDP, length 82 [|LLDP] 19:47:28.619373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.619382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.619403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.619404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13f1 df12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.619406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.619407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.619409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.619410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.619417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.619418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.619420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.619421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.629347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.629348 LLDP, length 82 [|LLDP] 19:47:28.629368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.629376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.629388 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.629389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13f9 8032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.629390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.629391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.629397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.629398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.629400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.629401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.629402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.629403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.629405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.639345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.639347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.639348 LLDP, length 82 [|LLDP] 19:47:28.639377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.639392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.639405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.639407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1401 2152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.639408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.639409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.639410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.639411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.639418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.639419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.639421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.639423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.649348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.649350 LLDP, length 82 [|LLDP] 19:47:28.649378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.649387 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.649388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.649389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.649404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.649405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.649408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.649414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.649415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1408 c272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.649417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.649418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.649419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.649421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.659354 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.659356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.659357 LLDP, length 82 [|LLDP] 19:47:28.659381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.659396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.659410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.659411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1410 6392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.659413 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.659414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.659415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.659421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.659422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.659425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.659426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.659428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.669348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.669350 LLDP, length 82 [|LLDP] 19:47:28.669379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.669388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.669400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.669401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1418 04b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.669403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.669404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.669405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.669406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.669413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.669414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.669416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.669417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.669418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.679347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.679349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.679349 LLDP, length 82 [|LLDP] 19:47:28.679378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.679392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.679394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.679395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.679396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.679413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.679415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.679416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 141f a5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.679418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.679419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.679420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.679421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.689346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.689348 LLDP, length 82 [|LLDP] 19:47:28.689367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.689375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.689388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.689389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1427 46f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.689390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.689391 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.689392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.689393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.689401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.689402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.689404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.689405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.689407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.699350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.699351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.699352 LLDP, length 82 [|LLDP] 19:47:28.699375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.699384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.699403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.699404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 142e e812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.699406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.699407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.699408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.699409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.699416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.699417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.699419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.699421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.709351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.709352 LLDP, length 82 [|LLDP] 19:47:28.709377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.709386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.709398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.709399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1436 8932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.709400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.709401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.709407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.709408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.709411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.709412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.709412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.709413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.709415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.719349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.719350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.719351 LLDP, length 82 [|LLDP] 19:47:28.719373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.719381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.719403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.719404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 143e 2a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.719406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.719407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.719408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.719409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.719417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.719418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.719420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.719422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.729348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.729350 LLDP, length 82 [|LLDP] 19:47:28.729369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.729377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.729378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.729379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.729394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.729395 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.729397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.729403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.729404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1445 cb72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.729405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.729406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.729407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.729409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.739348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.739349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.739350 LLDP, length 82 [|LLDP] 19:47:28.739371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.739379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.739399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.739400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 144d 6c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.739402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.739403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.739404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.739411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.739412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.739414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.739415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.739417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.749351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.749353 LLDP, length 82 [|LLDP] 19:47:28.749375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.749384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.749396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.749397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1455 0db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.749398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.749399 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.749400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.749401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.749409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.749410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.749412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.749413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.749415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.759351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.759352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.759354 LLDP, length 82 [|LLDP] 19:47:28.759392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.759401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.759402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.759403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.759404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.759422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.759425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.759425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 145c aed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.759427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.759428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.759429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.759430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.769351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.769353 LLDP, length 82 [|LLDP] 19:47:28.769373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.769382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.769394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.769395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1464 4ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.769396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.769397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.769398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.769399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.769406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.769408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.769410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.769411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.769412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.779350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.779352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.779353 LLDP, length 82 [|LLDP] 19:47:28.779375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.779384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.779403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.779404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 146b f112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.779418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.779420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.779421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.779422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.779429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.779431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.779433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.779435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.789384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.789386 LLDP, length 82 [|LLDP] 19:47:28.789420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.789433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.789447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.789448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1473 9232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.789449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.789451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.789460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.789461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.789464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.789465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.789466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.789467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.789469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.799368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.799370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.799371 LLDP, length 82 [|LLDP] 19:47:28.799417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.799427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.799441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.799442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 147b 3352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.799443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.799445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.799446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.799447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.799455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.799456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.799458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.799460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.809355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.809357 LLDP, length 82 [|LLDP] 19:47:28.809388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.809398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.809399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.809400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.809415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.809416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.809419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.809425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.809426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1482 d472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.809427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.809428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.809429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.809430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.819357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.819359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.819360 LLDP, length 82 [|LLDP] 19:47:28.819399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.819410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.819423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.819423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 148a 7592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.819425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.819426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.819427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.819434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.819435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.819437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.819438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.819440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.829357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.829359 LLDP, length 82 [|LLDP] 19:47:28.829389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.829398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.829411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.829412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1492 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.829413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.829414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.829415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.829416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.829424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.829425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.829427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.829428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.829429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.839356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.839358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.839359 LLDP, length 82 [|LLDP] 19:47:28.839394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.839405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.839406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.839407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.839408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.839426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.839428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.839429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1499 b7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.839431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.839432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.839433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.839434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.849355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.849357 LLDP, length 82 [|LLDP] 19:47:28.849383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.849393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.849406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.849407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14a1 58f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.849408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.849409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.849410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.849411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.849418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.849420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.849422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.849423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.849424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.859355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.859356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.859357 LLDP, length 82 [|LLDP] 19:47:28.859392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.859403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.859417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.859418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14a8 fa12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.859420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.859421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.859422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.859423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.859430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.859431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.859433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.859435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.869358 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.869360 LLDP, length 82 [|LLDP] 19:47:28.869385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.869394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.869406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.869407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14b0 9b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.869409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.869410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.869416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.869417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.869419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.869420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.869421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.869422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.869424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.879356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.879358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.879359 LLDP, length 82 [|LLDP] 19:47:28.879392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.879402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.879415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.879416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14b8 3c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.879418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.879419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.879420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.879421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.879428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.879429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.879431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.879432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.889360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.889362 LLDP, length 82 [|LLDP] 19:47:28.889387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.889396 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.889397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.889398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.889414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.889415 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.889418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.889424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.889425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14bf dd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.889427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.889428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.889429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.889430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.899356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.899357 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.899358 LLDP, length 82 [|LLDP] 19:47:28.899393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.899404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.899418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.899419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14c7 7e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.899421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.899422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.899423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.899429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.899430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.899433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.899434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.899435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.909354 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.909356 LLDP, length 82 [|LLDP] 19:47:28.909379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.909390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.909403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.909404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14cf 1fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.909406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.909407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.909408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.909409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.909416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.909417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.909419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.909420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.909422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.919357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.919358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.919359 LLDP, length 82 [|LLDP] 19:47:28.919393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.919404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.919405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.919406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.919407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.919425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.919427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.919428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14d6 c0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.919429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.919430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.919431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.919433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.929355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.929357 LLDP, length 82 [|LLDP] 19:47:28.929389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.929398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.929410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.929411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14de 61f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.929412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.929413 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.929414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.929415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.929422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.929423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.929426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.929427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.929428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.939357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.939358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.939359 LLDP, length 82 [|LLDP] 19:47:28.939398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.939408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.939423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.939424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14e6 0312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.939426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.939427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.939428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.939429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.939436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.939438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.939440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.939441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.949378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.949380 LLDP, length 82 [|LLDP] 19:47:28.949416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.949426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.949440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.949441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14ed a432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.949442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.949443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.949450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.949451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.949454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.949455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.949456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.949457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.949459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.959372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.959374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.959375 LLDP, length 82 [|LLDP] 19:47:28.959422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.959434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.959447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.959448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14f5 4552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.959450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.959451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.959452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.959453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.959461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.959462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.959465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.959466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.969365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.969367 LLDP, length 82 [|LLDP] 19:47:28.969398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.969407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.969408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.969409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.969426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.969428 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.969430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.969437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.969438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14fc e672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.969440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.969441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.969442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.969443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.979365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.979366 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.979368 LLDP, length 82 [|LLDP] 19:47:28.979407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.979417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.979431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.979432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1504 8792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.979433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.979435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.979436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.979443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.979444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.979446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.979447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.979448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.989362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.989364 LLDP, length 82 [|LLDP] 19:47:28.989389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.989400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.989412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.989413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 150c 28b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.989415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.989416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.989416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.989417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.989424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.989425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.989428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.989429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.989430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.999363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.999365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.999366 LLDP, length 82 [|LLDP] 19:47:28.999399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.999409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.999410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.999411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.999412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.999429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.999432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.999433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1513 c9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.999434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.999435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.999436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.999438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.009367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.009369 LLDP, length 82 [|LLDP] 19:47:29.009393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.009402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.009415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.009416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 151b 6af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.009417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.009418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.009419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.009420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.009427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.009428 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.009430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.009431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.009432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.019357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.019359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.019360 LLDP, length 82 [|LLDP] 19:47:29.019399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.019409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.019422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.019423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1523 0c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.019424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.019425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.019426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.019427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.019434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.019436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.019438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.019439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.029911 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.029913 LLDP, length 82 [|LLDP] 19:47:29.029944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.029953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.029967 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.029968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 152a ad32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.029969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.029970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.029977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.029978 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.029980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.029981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.029983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.029984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.029985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.039363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.039365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.039366 LLDP, length 82 [|LLDP] 19:47:29.039406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.039417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.039431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.039431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1532 4e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.039433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.039434 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.039436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.039436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.039444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.039446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.039448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.039449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.049364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.049366 LLDP, length 82 [|LLDP] 19:47:29.049402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.049414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.049415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.049416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.049432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.049433 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.049436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.049443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.049444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1539 ef72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.049445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.049446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.049447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.049448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.059361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.059363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.059364 LLDP, length 82 [|LLDP] 19:47:29.059400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.059410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.059424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.059425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1541 9092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.059426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.059427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.059428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.059435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.059436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.059439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.059440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.059441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.069360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.069362 LLDP, length 82 [|LLDP] 19:47:29.069389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.069398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.069410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.069412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1549 31b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.069413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.069414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.069415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.069416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.069424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.069425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.069427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.069428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.069429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.079357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.079359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.079360 LLDP, length 82 [|LLDP] 19:47:29.079395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.079406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.079408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.079409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.079410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.079430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.079433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.079434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1550 d2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.079436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.079437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.079439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.079440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.089375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.089377 LLDP, length 82 [|LLDP] 19:47:29.089411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.089420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.089433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.089434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1558 73f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.089436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.089437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.089438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.089439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.089448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.089449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.089452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.089453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.089454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.099368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.099370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.099371 LLDP, length 82 [|LLDP] 19:47:29.099414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.099425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.099438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.099439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1560 1512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.099440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.099442 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.099443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.099444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.099452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.099453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.099456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.099457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.109365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.109366 LLDP, length 82 [|LLDP] 19:47:29.109392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.109401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.109414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.109415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1567 b632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.109417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.109418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.109424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.109426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.109428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.109429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.109430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.109431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.109433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.119367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.119369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.119371 LLDP, length 82 [|LLDP] 19:47:29.119412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.119422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.119436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.119437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 156f 5752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.119438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.119440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.119441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.119442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.119451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.119452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.119454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.119456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.129368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.129370 LLDP, length 82 [|LLDP] 19:47:29.129396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.129406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.129407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.129409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.129425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.129426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.129429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.129436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.129436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1576 f872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.129438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.129439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.129440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.129442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.139363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.139365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.139366 LLDP, length 82 [|LLDP] 19:47:29.139404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.139414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.139428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.139429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 157e 9992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.139430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.139432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.139433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.139440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.139441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.139444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.139445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.139446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.149363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.149365 LLDP, length 82 [|LLDP] 19:47:29.149390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.149400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.149413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.149414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1586 3ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.149416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.149417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.149417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.149418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.149426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.149427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.149430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.149431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.149432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.159362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.159364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.159365 LLDP, length 82 [|LLDP] 19:47:29.159401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.159411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.159412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.159413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.159414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.159433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.159436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.159436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 158d dbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.159438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.159439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.159440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.159441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.169367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.169369 LLDP, length 82 [|LLDP] 19:47:29.169397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.169408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.169421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.169422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1595 7cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.169423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.169425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.169426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.169427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.169434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.169435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.169438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.169439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.169440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.179360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.179362 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.179363 LLDP, length 82 [|LLDP] 19:47:29.179404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.179412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.179426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.179427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 159d 1e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.179428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.179429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.179430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.179431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.179439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.179440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.179442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.179444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.189367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.189369 LLDP, length 82 [|LLDP] 19:47:29.189393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.189401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.189414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.189415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15a4 bf32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.189416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.189417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.189423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.189424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.189426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.189427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.189428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.189430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.189431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.199366 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.199367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.199368 LLDP, length 82 [|LLDP] 19:47:29.199403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.199413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.199426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.199427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15ac 6052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.199428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.199429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.199430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.199431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.199439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.199440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.199442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.199444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.209364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.209366 LLDP, length 82 [|LLDP] 19:47:29.209396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.209405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.209406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.209407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.209423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.209424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.209427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.209434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.209434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15b4 0172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.209436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.209437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.209438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.209440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.219362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.219364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.219364 LLDP, length 82 [|LLDP] 19:47:29.219408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.219416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.219430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.219430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15bb a292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.219432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.219433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.219434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.219441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.219442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.219445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.219446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.219447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.229361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.229363 LLDP, length 82 [|LLDP] 19:47:29.229386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.229396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.229408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.229409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15c3 43b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.229410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.229411 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.229412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.229413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.229421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.229422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.229424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.229425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.229426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.239361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.239363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.239364 LLDP, length 82 [|LLDP] 19:47:29.239397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.239406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.239407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.239408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.239409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.239428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.239431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.239432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15ca e4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.239433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.239434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.239435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.239436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.253439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.253441 LLDP, length 82 [|LLDP] 19:47:29.253465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.253473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.253486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.253487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15d2 85f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.253489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.253490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.253491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.253492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.253500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.253501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.253503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.253504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.253506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.259359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.259360 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.259361 LLDP, length 82 [|LLDP] 19:47:29.259396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.259405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.259419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.259420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15da 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.259421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.259422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.259424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.259425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.259432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.259433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.259435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.259436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.269362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.269364 LLDP, length 82 [|LLDP] 19:47:29.269389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.269398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.269410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.269411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15e1 c832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.269412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.269413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.269420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.269421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.269423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.269424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.269425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.269426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.269428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.279363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.279365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.279366 LLDP, length 82 [|LLDP] 19:47:29.279403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.279412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.279425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.279425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15e9 6952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.279427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.279428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.279429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.279430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.279438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.279439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.279442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.279443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.289363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.289365 LLDP, length 82 [|LLDP] 19:47:29.289390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.289398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.289399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.289400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.289415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.289417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.289419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.289426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.289427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15f1 0a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.289429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.289430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.289431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.289432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.299362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.299364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.299365 LLDP, length 82 [|LLDP] 19:47:29.299405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.299413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.299426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.299427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15f8 ab92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.299429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.299430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.299431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.299438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.299439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.299441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.299442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.299443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.309364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.309366 LLDP, length 82 [|LLDP] 19:47:29.309391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.309400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.309413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.309413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1600 4cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.309415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.309416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.309417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.309418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.309426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.309427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.309429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.309430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.309432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.319360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.319362 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.319363 LLDP, length 82 [|LLDP] 19:47:29.319401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.319409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.319410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.319411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.319412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.319431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.319434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.319435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1607 edd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.319436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.319437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.319438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.319440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.329363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.329365 LLDP, length 82 [|LLDP] 19:47:29.329390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.329399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.329411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.329412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 160f 8ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.329413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.329414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.329416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.329417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.329424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.329425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.329428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.329429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.329430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.339361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.339363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.339364 LLDP, length 82 [|LLDP] 19:47:29.339398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.339408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.339421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.339422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1617 3012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.339424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.339425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.339426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.339427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.339435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.339436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.339438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.339440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.349370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.349372 LLDP, length 82 [|LLDP] 19:47:29.349401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.349411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.349425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.349425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 161e d132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.349427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.349428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.349435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.349436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.349438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.349440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.349440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.349441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.349443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.359364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.359366 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.359367 LLDP, length 82 [|LLDP] 19:47:29.359409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.359418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.359431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.359432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1626 7252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.359434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.359434 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.359435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.359436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.359444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.359445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.359448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.359449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.369363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.369365 LLDP, length 82 [|LLDP] 19:47:29.369396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.369405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.369407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.369408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.369424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.369425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.369428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.369435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.369436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 162e 1372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.369438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.369439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.369440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.369442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.379369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.379371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.379372 LLDP, length 82 [|LLDP] 19:47:29.379408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.379421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.379435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.379436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1635 b492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.379438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.379438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.379440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.379446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.379447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.379450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.379451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.379452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.389379 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.389380 LLDP, length 82 [|LLDP] 19:47:29.389419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.389431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.389444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.389445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 163d 55b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.389447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.389447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.389448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.389449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.389457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.389458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.389460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.389461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.389462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.399368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.399370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.399371 LLDP, length 82 [|LLDP] 19:47:29.399409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.399420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.399421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.399422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.399423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.399441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.399443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.399445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1644 f6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.399446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.399447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.399448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.399449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.409370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.409372 LLDP, length 82 [|LLDP] 19:47:29.409399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.409409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.409422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.409423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 164c 97f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.409424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.409425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.409426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.409427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.409435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.409436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.409439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.409440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.409441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.419369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.419370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.419371 LLDP, length 82 [|LLDP] 19:47:29.419414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.419424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.419438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.419438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1654 3912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.419440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.419441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.419442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.419443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.419450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.419451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.419454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.419455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.429387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.429395 LLDP, length 82 [|LLDP] 19:47:29.429447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.429461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.429476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.429477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 165b da32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.429478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.429480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.429487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.429489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.429491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.429492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.429493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.429494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.429496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.439376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.439378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.439379 LLDP, length 82 [|LLDP] 19:47:29.439417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.439428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.439441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.439442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1663 7b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.439444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.439445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.439445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.439446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.439454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.439455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.439457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.439459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.449367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.449369 LLDP, length 82 [|LLDP] 19:47:29.449393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.449403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.449404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.449405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.449421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.449422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.449424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.449431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.449431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 166b 1c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.449433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.449434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.449435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.449436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.459367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.459369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.459370 LLDP, length 82 [|LLDP] 19:47:29.459410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.459420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.459432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.459433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1672 bd92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.459435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.459436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.459437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.459443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.459444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.459446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.459447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.459449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.469372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.469374 LLDP, length 82 [|LLDP] 19:47:29.469414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.469425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.469437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.469438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 167a 5eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.469440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.469441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.469442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.469443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.469450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.469451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.469454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.469455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.469456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.479368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.479370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.479378 LLDP, length 82 [|LLDP] 19:47:29.479414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.479424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.479425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.479426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.479427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.479445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.479447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.479448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1681 ffd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.479449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.479450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.479451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.479453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.489369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.489371 LLDP, length 82 [|LLDP] 19:47:29.489404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.489413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.489425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.489426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1689 a0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.489427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.489428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.489429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.489430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.489437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.489439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.489441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.489442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.489443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.499375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.499378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.499379 LLDP, length 82 [|LLDP] 19:47:29.499425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.499435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.499447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.499448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1691 4212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.499449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.499450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.499451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.499452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.499461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.499462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.499464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.499466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.509368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.509370 LLDP, length 82 [|LLDP] 19:47:29.509395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.509403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.509415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.509416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1698 e332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.509418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.509419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.509425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.509426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.509428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.509429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.509430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.509431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.509432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.519372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.519374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.519375 LLDP, length 82 [|LLDP] 19:47:29.519413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.519424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.519436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.519436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16a0 8452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.519438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.519439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.519440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.519441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.519449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.519450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.519452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.519453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.529377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.529379 LLDP, length 82 [|LLDP] 19:47:29.529406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.529417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.529418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.529419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.529435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.529437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.529445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.529452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.529453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16a8 2572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.529454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.529456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.529457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.529458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.539376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.539378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.539379 LLDP, length 82 [|LLDP] 19:47:29.539423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.539434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.539446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.539447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16af c692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.539449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.539450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.539451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.539458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.539459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.539461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.539462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.539464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.549370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.549372 LLDP, length 82 [|LLDP] 19:47:29.549404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.549415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.549427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.549428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16b7 67b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.549430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.549431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.549432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.549433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.549441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.549442 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.549444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.549445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.549447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.559371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.559373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.559373 LLDP, length 82 [|LLDP] 19:47:29.559413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.559423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.559424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.559425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.559426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.559443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.559445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.559447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16bf 08d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.559448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.559449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.559450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.559451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.569402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.569404 LLDP, length 82 [|LLDP] 19:47:29.569454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.569467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.569480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.569481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16c6 a9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.569483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.569484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.569485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.569486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.569497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.569498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.569501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.569502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.569503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.579375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.579377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.579378 LLDP, length 82 [|LLDP] 19:47:29.579423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.579433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.579447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.579448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16ce 4b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.579449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.579451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.579451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.579452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.579461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.579465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.579466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.589375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.589376 LLDP, length 82 [|LLDP] 19:47:29.589406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.589417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.589430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.589431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16d5 ec32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.589432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.589433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.589440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.589441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.589443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.589444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.589445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.589446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.589448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.599375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.599377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.599378 LLDP, length 82 [|LLDP] 19:47:29.599417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.599427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.599440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.599441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16dd 8d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.599443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.599444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.599445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.599446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.599454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.599455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.599457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.599458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.609367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.609369 LLDP, length 82 [|LLDP] 19:47:29.609394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.609403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.609404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.609405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.609421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.609422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.609424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.609431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.609432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16e5 2e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.609433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.609434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.609435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.609437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.619371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.619373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.619374 LLDP, length 82 [|LLDP] 19:47:29.619407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.619417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.619430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.619430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16ec cf92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.619432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.619433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.619434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.619440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.619441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.619443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.619444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.619446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.629368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.629370 LLDP, length 82 [|LLDP] 19:47:29.629400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.629410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.629423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.629424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16f4 70b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.629425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.629426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.629427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.629428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.629436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.629437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.629439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.629440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.629441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.639374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.639376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.639377 LLDP, length 82 [|LLDP] 19:47:29.639411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.639421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.639422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.639423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.639424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.639441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.639443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.639459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16fc 11d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.639461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.639462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.639463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.639464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.649396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.649398 LLDP, length 82 [|LLDP] 19:47:29.649432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.649445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.649459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.649460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1703 b2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.649462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.649463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.649464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.649465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.649474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.649475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.649478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.649479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.649480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.659375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.659377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.659378 LLDP, length 82 [|LLDP] 19:47:29.659420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.659431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.659444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.659445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 170b 5412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.659446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.659447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.659448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.659449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.659457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.659458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.659461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.659462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.669372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.669373 LLDP, length 82 [|LLDP] 19:47:29.669398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.669408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.669421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.669422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1712 f532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.669424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.669425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.669431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.669432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.669435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.669436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.669437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.669438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.669439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.679368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.679369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.679370 LLDP, length 82 [|LLDP] 19:47:29.679402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.679411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.679424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.679424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 171a 9652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.679426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.679427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.679428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.679429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.679436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.679438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.679440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.679442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.689373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.689374 LLDP, length 82 [|LLDP] 19:47:29.689400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.689410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.689411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.689412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.689428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.689429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.689431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.689438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.689439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1722 3772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.689440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.689441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.689442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.689443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.699366 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.699367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.699369 LLDP, length 82 [|LLDP] 19:47:29.699400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.699410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.699424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.699425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1729 d892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.699426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.699427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.699428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.699435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.699436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.699438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.699439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.699440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.709365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.709367 LLDP, length 82 [|LLDP] 19:47:29.709393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.709401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.709414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.709415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1731 79b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.709417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.709418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.709419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.709420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.709427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.709428 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.709430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.709431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.709433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.719363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.719364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.719365 LLDP, length 82 [|LLDP] 19:47:29.719400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.719409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.719410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.719411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.719412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.719428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.719431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.719432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1739 1ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.719433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.719434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.719435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.719437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.729364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.729365 LLDP, length 82 [|LLDP] 19:47:29.729383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.729392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.729404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.729405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1740 bbf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.729406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.729408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.729409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.729410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.729417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.729418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.729420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.729421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.729422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.739365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.739367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.739368 LLDP, length 82 [|LLDP] 19:47:29.739396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.739408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.739422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.739423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1748 5d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.739425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.739426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.739427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.739428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.739435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.739436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.739439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.739440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.749386 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.749388 LLDP, length 82 [|LLDP] 19:47:29.749423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.749434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.749448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.749449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 174f fe32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.749450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.749451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.749458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.749459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.749462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.749463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.749464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.749465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.749466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.759379 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.759381 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.759382 LLDP, length 82 [|LLDP] 19:47:29.759419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.759430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.759443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.759444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1757 9f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.759446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.759447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.759448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.759449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.759457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.759458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.759460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.759462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.769373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.769374 LLDP, length 82 [|LLDP] 19:47:29.769409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.769417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.769418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.769419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.769436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.769438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.769440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.769447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.769448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 175f 4072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.769449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.769450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.769451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.769452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.779378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.779379 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.779380 LLDP, length 82 [|LLDP] 19:47:29.779418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.779428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.779441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.779442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1766 e192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.779443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.779445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.779446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.779453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.779454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.779456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.779458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.779459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.789377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.789378 LLDP, length 82 [|LLDP] 19:47:29.789404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.789413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.789426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.789427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 176e 82b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.789428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.789430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.789431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.789432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.789439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.789440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.789443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.789444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.789445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.799376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.799377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.799378 LLDP, length 82 [|LLDP] 19:47:29.799415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.799429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.799430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.799431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.799432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.799451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.799453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.799454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1776 23d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.799456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.799457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.799458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.799459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.809371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.809373 LLDP, length 82 [|LLDP] 19:47:29.809398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.809408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.809421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.809422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 177d c4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.809424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.809425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.809425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.809426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.809434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.809435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.809438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.809439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.809440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.819371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.819373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.819374 LLDP, length 82 [|LLDP] 19:47:29.819411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.819421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.819434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.819435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1785 6612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.819437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.819438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.819439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.819440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.819447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.819448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.819451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.819452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.829375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.829377 LLDP, length 82 [|LLDP] 19:47:29.829403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.829413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.829427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.829428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 178d 0732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.829429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.829430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.829436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.829437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.829440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.829441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.829442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.829443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.829444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.839367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.839369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.839370 LLDP, length 82 [|LLDP] 19:47:29.839399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.839410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.839424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.839425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1794 a852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.839426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.839428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.839429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.839430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.839437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.839438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.839441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.839442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.849378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.849379 LLDP, length 82 [|LLDP] 19:47:29.849413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.849422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.849423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.849424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.849441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.849443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.849445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.849452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.849453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 179c 4972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.849454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.849455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.849456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.849458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.859378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.859380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.859381 LLDP, length 82 [|LLDP] 19:47:29.859417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.859427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.859440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.859441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17a3 ea92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.859443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.859444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.859445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.859452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.859453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.859456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.859457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.859459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.869377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.869379 LLDP, length 82 [|LLDP] 19:47:29.869403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.869412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.869425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.869426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ab 8bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.869427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.869428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.869429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.869430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.869438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.869439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.869441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.869442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.869444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.879373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.879375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.879376 LLDP, length 82 [|LLDP] 19:47:29.879414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.879423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.879424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.879425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.879426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.879443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.879446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.879447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17b3 2cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.879449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.879450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.879451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.879452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.889375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.889377 LLDP, length 82 [|LLDP] 19:47:29.889405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.889414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.889429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.889430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ba cdf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.889431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.889433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.889434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.889435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.889442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.889443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.889445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.889446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.889448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.899375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.899376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.899378 LLDP, length 82 [|LLDP] 19:47:29.899413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.899422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.899435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.899436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17c2 6f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.899437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.899438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.899439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.899441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.899449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.899450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.899452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.899453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.909372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.909373 LLDP, length 82 [|LLDP] 19:47:29.909399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.909407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.909421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.909422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ca 1032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.909423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.909425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.909431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.909433 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.909435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.909436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.909437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.909438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.909440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.919376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.919378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.919379 LLDP, length 82 [|LLDP] 19:47:29.919415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.919424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.919436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.919437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17d1 b152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.919438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.919439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.919440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.919441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.919450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.919451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.919453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.919454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.929372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.929374 LLDP, length 82 [|LLDP] 19:47:29.929398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.929407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.929408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.929409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.929425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.929426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.929428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.929435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.929436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17d9 5272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.929437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.929438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.929440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.929441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.939372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.939374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.939375 LLDP, length 82 [|LLDP] 19:47:29.939408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.939418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.939431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.939432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17e0 f392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.939433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.939434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.939435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.939442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.939443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.939445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.939446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.939448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.949372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.949374 LLDP, length 82 [|LLDP] 19:47:29.949397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.949406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.949418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.949419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17e8 94b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.949421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.949422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.949423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.949424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.949431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.949432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.949435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.949436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.949437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.959374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.959376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.959377 LLDP, length 82 [|LLDP] 19:47:29.959414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.959423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.959424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.959425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.959426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.959444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.959447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.959448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17f0 35d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.959449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.959450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.959451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.959452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.969374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.969375 LLDP, length 82 [|LLDP] 19:47:29.969400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.969409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.969422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.969423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17f7 d6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.969424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.969425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.969426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.969428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.969435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.969436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.969438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.969439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.969441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.979375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.979377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.979378 LLDP, length 82 [|LLDP] 19:47:29.979416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.979425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.979438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.979438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ff 7812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.979440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.979441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.979442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.979443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.979451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.979453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.979455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.979456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.989373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.989375 LLDP, length 82 [|LLDP] 19:47:29.989399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.989408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.989420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.989421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1807 1932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.989423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.989424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.989430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.989431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.989433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.989434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.989435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.989436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.989437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.999374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.999375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.999376 LLDP, length 82 [|LLDP] 19:47:29.999411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.999421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.999433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.999434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 180e ba52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.999436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.999437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.999438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.999439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.999447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.999448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.999450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.999451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.009374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.009376 LLDP, length 82 [|LLDP] 19:47:30.009407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.009415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.009416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.009416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.009432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.009434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.009436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.009443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.009444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1816 5b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.009445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.009446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.009447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.009449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.019375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.019376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.019377 LLDP, length 82 [|LLDP] 19:47:30.019411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.019424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.019438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.019439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 181d fc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.019440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.019441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.019442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.019449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.019450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.019453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.019454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.019455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.029385 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.029386 LLDP, length 82 [|LLDP] 19:47:30.029414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.029425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.029438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.029439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1825 9db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.029440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.029441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.029442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.029443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.029451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.029452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.029454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.029455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.029457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.039378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.039380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.039381 LLDP, length 82 [|LLDP] 19:47:30.039416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.039427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.039428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.039429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.039430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.039447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.039450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.039451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 182d 3ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.039453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.039454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.039455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.039456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.049378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.049380 LLDP, length 82 [|LLDP] 19:47:30.049404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.049415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.049428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.049429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1834 dff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.049430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.049431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.049432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.049433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.049440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.049441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.049444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.049445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.049446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.059376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.059378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.059379 LLDP, length 82 [|LLDP] 19:47:30.059412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.059423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.059435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.059436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 183c 8112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.059437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.059438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.059439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.059440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.059448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.059449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.059452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.059453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.069377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.069379 LLDP, length 82 [|LLDP] 19:47:30.069403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.069413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.069425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.069426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1844 2232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.069428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.069429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.069435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.069436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.069439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.069440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.069441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.069442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.069443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.079376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.079378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.079379 LLDP, length 82 [|LLDP] 19:47:30.079413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.079424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.079436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.079437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 184b c352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.079439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.079440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.079441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.079442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.079450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.079451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.079453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.079454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.089377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.089378 LLDP, length 82 [|LLDP] 19:47:30.089409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.089419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.089420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.089421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.089437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.089438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.089441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.089448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.089449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1853 6472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.089450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.089451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.089452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.089454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.102341 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.102343 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.102344 LLDP, length 82 [|LLDP] 19:47:30.102369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.102378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.102391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.102392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 185b 0592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.102393 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.102395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.102396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.102403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.102404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.102406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.102407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.102409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.109380 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.109382 LLDP, length 82 [|LLDP] 19:47:30.109416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.109426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.109439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.109440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1862 a6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.109441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.109442 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.109443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.109444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.109452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.109453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.109456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.109457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.109458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.119373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.119374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.119375 LLDP, length 82 [|LLDP] 19:47:30.119409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.119418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.119419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.119420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.119421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.119437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.119440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.119441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 186a 47d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.119443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.119444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.119444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.119446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.129373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.129375 LLDP, length 82 [|LLDP] 19:47:30.129396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.129404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.129416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.129417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1871 e8f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.129418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.129419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.129420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.129421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.129428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.129429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.129431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.129432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.129434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.139375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.139376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.139377 LLDP, length 82 [|LLDP] 19:47:30.139406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.139415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.139427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.139428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1879 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.139429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.139431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.139431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.139432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.139440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.139441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.139443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.139444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.149369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.149370 LLDP, length 82 [|LLDP] 19:47:30.149391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.149398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.149411 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.149412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1881 2b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.149413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.149414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.149420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.149421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.149424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.149425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.149425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.149426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.149428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.162469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.162471 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.162472 LLDP, length 82 [|LLDP] 19:47:30.162493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.162501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.162512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.162513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1888 cc52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.162515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.162516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.162517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.162518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.162524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.162525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.162527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.162528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.169369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.169371 LLDP, length 82 [|LLDP] 19:47:30.169396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.169403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.169405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.169406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.169421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.169422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.169424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.169430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.169431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1890 6d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.169433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.169434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.169435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.169436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.179369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.179370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.179371 LLDP, length 82 [|LLDP] 19:47:30.179404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.179412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.179424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.179425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1898 0e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.179426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.179427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.179428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.179434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.179435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.179437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.179438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.179439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.189372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.189374 LLDP, length 82 [|LLDP] 19:47:30.189393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.189401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.189413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.189414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 189f afb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.189415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.189416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.189417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.189418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.189425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.189426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.189428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.189429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.189431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.199370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.199371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.199372 LLDP, length 82 [|LLDP] 19:47:30.199405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.199413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.199414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.199415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.199416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.199432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.199435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.199436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18a7 50d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.199437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.199438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.199439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.199441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.209372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.209374 LLDP, length 82 [|LLDP] 19:47:30.209402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.209411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.209423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.209424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18ae f1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.209425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.209426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.209427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.209429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.209436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.209437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.209439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.209440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.209441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.223545 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.223547 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.223548 LLDP, length 82 [|LLDP] 19:47:30.223571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.223579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.223592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.223593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18b6 9312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.223594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.223595 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.223596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.223597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.223604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.223605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.223607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.223608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.229370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.229372 LLDP, length 82 [|LLDP] 19:47:30.229392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.229400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.229412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.229413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18be 3432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.229414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.229415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.229421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.229422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.229425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.229426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.229427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.229428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.229429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.239373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.239375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.239376 LLDP, length 82 [|LLDP] 19:47:30.239405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.239413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.239426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.239427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18c5 d552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.239428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.239429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.239430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.239431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.239438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.239439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.239442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.239443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.249371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.249372 LLDP, length 82 [|LLDP] 19:47:30.249392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.249400 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.249401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.249402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.249417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.249418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.249421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.249427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.249428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18cd 7672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.249429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.249430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.249431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.249432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.259370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.259371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.259372 LLDP, length 82 [|LLDP] 19:47:30.259405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.259412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.259424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.259425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18d5 1792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.259427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.259428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.259429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.259435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.259436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.259438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.259439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.259441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.269371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.269373 LLDP, length 82 [|LLDP] 19:47:30.269399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.269407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.269419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.269420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18dc b8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.269421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.269422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.269423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.269424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.269431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.269432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.269434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.269435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.269436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.279372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.279373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.279375 LLDP, length 82 [|LLDP] 19:47:30.279410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.279418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.279419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.279420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.279421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.279438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.279441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.279441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18e4 59d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.279443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.279444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.279445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.279446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.289370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.289372 LLDP, length 82 [|LLDP] 19:47:30.289397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.289404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.289417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.289418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18eb faf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.289419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.289420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.289421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.289422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.289429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.289430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.289432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.289433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.289435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.299376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.299377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.299378 LLDP, length 82 [|LLDP] 19:47:30.299421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.299433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.299446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.299448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18f3 9c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.299449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.299450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.299451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.299452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.299460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.299461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.299464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.299465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.309398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.309400 LLDP, length 82 [|LLDP] 19:47:30.309438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.309449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.309463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.309464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18fb 3d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.309466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.309467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.309475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.309476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.309479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.309480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.309481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.309482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.309483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.319397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.319399 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.319401 LLDP, length 82 [|LLDP] 19:47:30.319439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.319450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.319463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.319464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1902 de52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.319466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.319467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.319468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.319469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.319478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.319480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.319482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.319484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.329402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.329404 LLDP, length 82 [|LLDP] 19:47:30.329446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.329457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.329458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.329459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.329478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.329479 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.329481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.329490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.329491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 190a 7f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.329493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.329494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.329495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.329496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.339391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.339394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.339395 LLDP, length 82 [|LLDP] 19:47:30.339429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.339439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.339452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.339453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1912 2092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.339454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.339455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.339456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.339464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.339465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.339467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.339468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.339470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.349396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.349398 LLDP, length 82 [|LLDP] 19:47:30.349433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.349444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.349458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.349459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1919 c1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.349461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.349462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.349463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.349464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.349473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.349474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.349477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.349478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.349479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.359402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.359403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.359411 LLDP, length 82 [|LLDP] 19:47:30.359449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.359459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.359460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.359461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.359462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.359480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.359483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.359484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1921 62d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.359486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.359487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.359488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.359489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.369389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.369392 LLDP, length 82 [|LLDP] 19:47:30.369423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.369435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.369448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.369449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1929 03f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.369450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.369451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.369453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.369454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.369462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.369464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.369466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.369467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.369469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.379396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.379398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.379399 LLDP, length 82 [|LLDP] 19:47:30.379437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.379448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.379461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.379462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1930 a512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.379464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.379465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.379466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.379467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.379475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.379476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.379478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.379480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.389392 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.389394 LLDP, length 82 [|LLDP] 19:47:30.389427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.389438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.389452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.389453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1938 4632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.389454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.389455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.389463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.389464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.389466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.389467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.389468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.389469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.389471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.399400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.399402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.399404 LLDP, length 82 [|LLDP] 19:47:30.399442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.399453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.399466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.399467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 193f e752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.399468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.399470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.399471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.399472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.399480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.399481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.399484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.399485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.409395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.409397 LLDP, length 82 [|LLDP] 19:47:30.409432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.409443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.409444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.409445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.409463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.409464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.409467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.409474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.409475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1947 8872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.409477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.409478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.409479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.409480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.419401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.419402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.419404 LLDP, length 82 [|LLDP] 19:47:30.419439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.419450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.419463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.419464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 194f 2992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.419466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.419467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.419468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.419476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.419477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.419479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.419480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.419482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.429389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.429391 LLDP, length 82 [|LLDP] 19:47:30.429428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.429438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.429451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.429452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1956 cab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.429453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.429454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.429455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.429456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.429464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.429466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.429468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.429469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.429470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.439384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.439392 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.439393 LLDP, length 82 [|LLDP] 19:47:30.439429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.439438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.439439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.439440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.439441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.439460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.439463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.439463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 195e 6bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.439465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.439466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.439467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.439468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.449390 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.449392 LLDP, length 82 [|LLDP] 19:47:30.449423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.449433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.449447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.449448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1966 0cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.449449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.449450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.449451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.449452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.449461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.449462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.449464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.449465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.449467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.459396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.459398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.459399 LLDP, length 82 [|LLDP] 19:47:30.459435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.459444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.459458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.459459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 196d ae12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.459460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.459461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.459462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.459464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.459471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.459473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.459475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.459477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.469391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.469393 LLDP, length 82 [|LLDP] 19:47:30.469423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.469432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.469445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.469446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1975 4f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.469448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.469449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.469456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.469457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.469460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.469461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.469462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.469463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.469464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.479399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.479401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.479402 LLDP, length 82 [|LLDP] 19:47:30.479439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.479451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.479464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.479465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 197c f052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.479466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.479467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.479468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.479469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.479477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.479478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.479480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.479482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.489388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.489390 LLDP, length 82 [|LLDP] 19:47:30.489421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.489432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.489433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.489434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.489451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.489452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.489454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.489461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.489462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1984 9172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.489464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.489465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.489466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.489467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.499395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.499397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.499398 LLDP, length 82 [|LLDP] 19:47:30.499432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.499441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.499454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.499455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 198c 3292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.499457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.499458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.499459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.499466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.499467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.499470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.499486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.499489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.509406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.509408 LLDP, length 82 [|LLDP] 19:47:30.509440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.509453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.509466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.509467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1993 d3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.509469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.509470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.509471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.509473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.509483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.509484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.509487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.509488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.509489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.519401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.519404 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.519405 LLDP, length 82 [|LLDP] 19:47:30.519449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.519459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.519460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.519461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.519462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.519481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.519484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.519485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 199b 74d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.519487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.519488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.519489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.519490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.529394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.529396 LLDP, length 82 [|LLDP] 19:47:30.529430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.529439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.529452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.529453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19a3 15f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.529455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.529456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.529457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.529458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.529466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.529467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.529470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.529471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.529472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.539412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.539416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.539417 LLDP, length 82 [|LLDP] 19:47:30.539470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.539481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.539495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.539496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19aa b712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.539498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.539499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.539500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.539501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.539511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.539512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.539515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.539517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.549394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.549403 LLDP, length 82 [|LLDP] 19:47:30.549443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.549453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.549466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.549468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19b2 5832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.549469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.549470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.549478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.549479 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.549482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.549483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.549484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.549485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.549487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.559398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.559400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.559408 LLDP, length 82 [|LLDP] 19:47:30.559440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.559449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.559462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.559463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19b9 f952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.559464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.559465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.559466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.559467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.559475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.559477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.559479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.559480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.569395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.569398 LLDP, length 82 [|LLDP] 19:47:30.569435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.569444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.569445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.569446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.569464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.569465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.569468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.569476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.569477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19c1 9a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.569478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.569479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.569480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.569482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.579384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.579393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.579395 LLDP, length 82 [|LLDP] 19:47:30.579425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.579434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.579447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.579447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19c9 3b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.579449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.579450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.579451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.579458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.579460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.579463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.579465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.589384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.589386 LLDP, length 82 [|LLDP] 19:47:30.589416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.589424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.589437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.589438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19d0 dcb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.589440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.589441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.589442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.589443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.589451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.589452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.589454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.589455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.589456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.599403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.599406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.599413 LLDP, length 82 [|LLDP] 19:47:30.599445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.599460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.599461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.599462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.599463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.599482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.599485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.599486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19d8 7dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.599487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.599489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.599490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.599491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.609391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.609393 LLDP, length 82 [|LLDP] 19:47:30.609425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.609434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.609447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.609448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19e0 1ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.609449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.609450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.609452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.609453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.609461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.609462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.609464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.609465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.609466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.619383 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.619394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.619395 LLDP, length 82 [|LLDP] 19:47:30.619424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.619433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.619446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.619447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19e7 c012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.619448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.619449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.619451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.619452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.619459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.619460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.619463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.619464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.629383 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.629385 LLDP, length 82 [|LLDP] 19:47:30.629418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.629428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.629443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.629444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19ef 6132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.629445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.629446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.629453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.629454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.629456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.629457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.629458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.629459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.629461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.639399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.639408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.639409 LLDP, length 82 [|LLDP] 19:47:30.639447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.639457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.639470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.639470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19f7 0252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.639472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.639473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.639474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.639475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.639484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.639485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.639487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.639489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.649388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.649390 LLDP, length 82 [|LLDP] 19:47:30.649417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.649427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.649428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.649429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.649445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.649446 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.649448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.649456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.649457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19fe a372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.649458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.649459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.649460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.649462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.659384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.659398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.659399 LLDP, length 82 [|LLDP] 19:47:30.659427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.659436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.659448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.659449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a06 4492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.659451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.659452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.659453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.659460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.659461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.659463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.659464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.659466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.669391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.669393 LLDP, length 82 [|LLDP] 19:47:30.669438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.669450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.669464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.669465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a0d e5b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.669467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.669468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.669469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.669470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.669478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.669479 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.669481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.669482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.669483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.679399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.679401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.679409 LLDP, length 82 [|LLDP] 19:47:30.679444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.679452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.679454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.679455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.679456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.679473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.679475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.679476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a15 86d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.679478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.679479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.679480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.679481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.689387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.689389 LLDP, length 82 [|LLDP] 19:47:30.689421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.689430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.689443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.689444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a1d 27f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.689446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.689447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.689448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.689449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.689456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.689458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.689460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.689461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.689462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.699383 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.699394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.699395 LLDP, length 82 [|LLDP] 19:47:30.699425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.699435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.699447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.699448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a24 c912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.699450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.699450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.699452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.699453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.699460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.699461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.699463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.699464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.709409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.709417 LLDP, length 82 [|LLDP] 19:47:30.709465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.709477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.709490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.709491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a2c 6a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.709492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.709494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.709503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.709504 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.709506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.709508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.709509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.709510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.709511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.719403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.719405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.719406 LLDP, length 82 [|LLDP] 19:47:30.719441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.719451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.719464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.719465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a34 0b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.719466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.719467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.719468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.719469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.719477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.719478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.719480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.719482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.729388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.729389 LLDP, length 82 [|LLDP] 19:47:30.729423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.729433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.729434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.729435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.729451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.729452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.729455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.729462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.729462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a3b ac72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.729464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.729465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.729466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.729467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.739398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.739400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.739401 LLDP, length 82 [|LLDP] 19:47:30.739432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.739442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.739455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.739455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a43 4d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.739457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.739458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.739459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.739466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.739467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.739469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.739470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.739472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.749386 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.749388 LLDP, length 82 [|LLDP] 19:47:30.749413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.749421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.749434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.749435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a4a eeb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.749436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.749437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.749438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.749439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.749446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.749447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.749450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.749450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.749452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.759391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.759393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.759394 LLDP, length 82 [|LLDP] 19:47:30.759425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.759434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.759435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.759436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.759437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.759454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.759456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.759457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a52 8fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.759459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.759460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.759461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.759462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.769389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.769390 LLDP, length 82 [|LLDP] 19:47:30.769415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.769424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.769437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.769438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a5a 30f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.769440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.769441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.769442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.769443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.769450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.769451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.769453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.769455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.769456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.779412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.779414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.779415 LLDP, length 82 [|LLDP] 19:47:30.779455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.779466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.779479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.779480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a61 d212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.779482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.779483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.779484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.779485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.779493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.779494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.779497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.779498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.789394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.789396 LLDP, length 82 [|LLDP] 19:47:30.789425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.789434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.789447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.789448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a69 7332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.789450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.789451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.789458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.789459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.789461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.789462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.789463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.789464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.789466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.799393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.799395 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.799396 LLDP, length 82 [|LLDP] 19:47:30.799426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.799436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.799448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.799449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a71 1452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.799450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.799452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.799453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.799453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.799461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.799462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.799464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.799465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.809387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.809389 LLDP, length 82 [|LLDP] 19:47:30.809421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.809430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.809431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.809432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.809448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.809449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.809452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.809458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.809459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a78 b572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.809461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.809462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.809463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.809464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.819394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.819396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.819397 LLDP, length 82 [|LLDP] 19:47:30.819433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.819443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.819456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.819457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a80 5692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.819459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.819460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.819461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.819467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.819468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.819470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.819471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.819473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.829389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.829391 LLDP, length 82 [|LLDP] 19:47:30.829417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.829427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.829440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.829441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a87 f7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.829442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.829443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.829444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.829445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.829453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.829454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.829456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.829458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.829459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.839395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.839397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.839398 LLDP, length 82 [|LLDP] 19:47:30.839428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.839437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.839438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.839439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.839440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.839457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.839460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.839461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a8f 98d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.839462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.839463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.839464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.839466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.849386 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.849388 LLDP, length 82 [|LLDP] 19:47:30.849414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.849422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.849435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.849436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a97 39f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.849437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.849438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.849439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.849440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.849447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.849449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.849451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.849452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.849453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.859399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.859400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.859402 LLDP, length 82 [|LLDP] 19:47:30.859432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.859440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.859452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.859453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a9e db12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.859454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.859455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.859457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.859458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.859465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.859466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.859469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.859470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.869389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.869390 LLDP, length 82 [|LLDP] 19:47:30.869415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.869424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.869436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.869437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1aa6 7c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.869438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.869440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.869446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.869447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.869449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.869450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.869451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.869452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.869453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.879396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.879398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.879399 LLDP, length 82 [|LLDP] 19:47:30.879435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.879443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.879456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.879456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1aae 1d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.879458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.879459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.879460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.879461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.879469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.879470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.879472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.879474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.889391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.889393 LLDP, length 82 [|LLDP] 19:47:30.889418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.889427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.889428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.889429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.889444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.889445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.889448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.889454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.889455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ab5 be72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.889457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.889458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.889458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.889460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.899395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.899396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.899398 LLDP, length 82 [|LLDP] 19:47:30.899426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.899436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.899448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.899449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1abd 5f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.899450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.899451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.899452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.899459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.899460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.899462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.899463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.899465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.909388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.909390 LLDP, length 82 [|LLDP] 19:47:30.909423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.909432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.909444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.909445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ac5 00b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.909447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.909448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.909449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.909450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.909457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.909458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.909460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.909461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.909463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.919394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.919396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.919397 LLDP, length 82 [|LLDP] 19:47:30.919434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.919443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.919444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.919445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.919447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.919463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.919466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.919467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1acc a1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.919468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.919469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.919470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.919472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.929408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.929416 LLDP, length 82 [|LLDP] 19:47:30.929454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.929465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.929479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.929479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ad4 42f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.929481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.929482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.929483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.929484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.929493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.929494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.929497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.929498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.929499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.939395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.939396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.939397 LLDP, length 82 [|LLDP] 19:47:30.939432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.939441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.939453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.939454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1adb e412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.939456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.939457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.939458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.939459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.939466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.939467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.939469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.939471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.949390 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.949392 LLDP, length 82 [|LLDP] 19:47:30.949416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.949425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.949438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.949439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ae3 8532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.949440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.949441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.949447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.949448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.949450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.949451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.949453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.949454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.949455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.959394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.959396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.959397 LLDP, length 82 [|LLDP] 19:47:30.959431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.959440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.959452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.959453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1aeb 2652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.959455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.959456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.959457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.959458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.959465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.959466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.959468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.959470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.969391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.969393 LLDP, length 82 [|LLDP] 19:47:30.969422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.969431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.969432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.969433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.969448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.969450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.969452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.969458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.969459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1af2 c772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.969461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.969462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.969463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.969464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.979399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.979401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.979402 LLDP, length 82 [|LLDP] 19:47:30.979430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.979438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.979450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.979452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1afa 6892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.979453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.979454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.979455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.979461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.979462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.979465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.979466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.979467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.989389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.989391 LLDP, length 82 [|LLDP] 19:47:30.989425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.989435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.989448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.989449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b02 09b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.989450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.989452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.989452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.989453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.989461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.989462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.989465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.989466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.989467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.999399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.999401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.999402 LLDP, length 82 [|LLDP] 19:47:30.999434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.999443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.999445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.999446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.999447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.999463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.999466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.999467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b09 aad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.999468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.999469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.999470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.999472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.009389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.009391 LLDP, length 82 [|LLDP] 19:47:31.009416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.009425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.009437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.009438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b11 4bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.009440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.009441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.009442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.009443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.009450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.009451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.009453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.009454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.009456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.019393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.019395 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.019396 LLDP, length 82 [|LLDP] 19:47:31.019430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.019438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.019451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.019452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b18 ed12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.019453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.019454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.019455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.019456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.019463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.019464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.019467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.019468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.029389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.029391 LLDP, length 82 [|LLDP] 19:47:31.029413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.029422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.029435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.029436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b20 8e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.029437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.029438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.029444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.029445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.029447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.029448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.029450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.029450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.029452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.039391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.039393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.039394 LLDP, length 82 [|LLDP] 19:47:31.039420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.039429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.039442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.039443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b28 2f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.039444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.039445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.039446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.039447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.039455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.039456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.039458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.039459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.049390 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.049392 LLDP, length 82 [|LLDP] 19:47:31.049417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.049425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.049426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.049427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.049443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.049444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.049446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.049453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.049454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b2f d072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.049455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.049456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.049457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.049459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.059398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.059400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.059402 LLDP, length 82 [|LLDP] 19:47:31.059430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.059438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.059450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.059451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b37 7192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.059452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.059453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.059454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.059461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.059462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.059464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.059465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.059467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.069391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.069393 LLDP, length 82 [|LLDP] 19:47:31.069417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.069426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.069438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.069439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b3f 12b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.069441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.069442 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.069443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.069443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.069451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.069452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.069454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.069455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.069457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.079399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.079401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.079402 LLDP, length 82 [|LLDP] 19:47:31.079430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.079439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.079440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.079441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.079442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.079458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.079460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.079461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b46 b3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.079463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.079464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.079465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.079466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.089388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.089390 LLDP, length 82 [|LLDP] 19:47:31.089420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.089429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.089441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.089442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b4e 54f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.089444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.089444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.089445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.089446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.089454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.089455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.089457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.089458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.089459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.099396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.099398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.099399 LLDP, length 82 [|LLDP] 19:47:31.099434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.099443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.099455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.099456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b55 f612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.099457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.099458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.099460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.099461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.099468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.099469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.099471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.099473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.109389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.109392 LLDP, length 82 [|LLDP] 19:47:31.109422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.109431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.109444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.109444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b5d 9732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.109446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.109447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.109453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.109454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.109456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.109457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.109458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.109459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.109461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.119394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.119396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.119397 LLDP, length 82 [|LLDP] 19:47:31.119430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.119440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.119452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.119453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b65 3852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.119454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.119455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.119456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.119457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.119464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.119465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.119467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.119468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.129401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.129403 LLDP, length 82 [|LLDP] 19:47:31.129436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.129446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.129447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.129449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.129465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.129466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.129468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.129476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.129477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b6c d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.129479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.129480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.129481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.129483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.139401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.139403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.139404 LLDP, length 82 [|LLDP] 19:47:31.139438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.139448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.139460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.139461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b74 7a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.139462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.139463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.139464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.139471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.139472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.139474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.139475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.139477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.149415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.149417 LLDP, length 82 [|LLDP] 19:47:31.149458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.149470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.149484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.149485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b7c 1bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.149487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.149488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.149489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.149490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.149499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.149500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.149503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.149504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.149505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.159408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.159410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.159411 LLDP, length 82 [|LLDP] 19:47:31.159448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.159458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.159459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.159461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.159462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.159479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.159482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.159483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b83 bcd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.159485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.159486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.159487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.159488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.169405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.169407 LLDP, length 82 [|LLDP] 19:47:31.169445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.169454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.169467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.169468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b8b 5df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.169470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.169471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.169472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.169473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.169481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.169483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.169485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.169487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.169488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.179408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.179416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.179417 LLDP, length 82 [|LLDP] 19:47:31.179452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.179464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.179477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.179478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b92 ff12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.179479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.179480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.179481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.179482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.179491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.179492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.179494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.179496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.189396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.189398 LLDP, length 82 [|LLDP] 19:47:31.189423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.189433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.189445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.189446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b9a a032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.189447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.189448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.189454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.189455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.189457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.189459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.189460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.189461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.189462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.199402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.199404 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.199405 LLDP, length 82 [|LLDP] 19:47:31.199440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.199451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.199463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.199464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ba2 4152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.199465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.199466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.199467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.199468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.199476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.199477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.199479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.199480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.209450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.209453 LLDP, length 82 [|LLDP] 19:47:31.209515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.209533 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.209535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.209536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.209557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.209558 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.209561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.209573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.209574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ba9 e272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.209575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.209576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.209577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.209579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.219458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.219461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.219462 LLDP, length 82 [|LLDP] 19:47:31.219527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.219540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.219555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.219556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bb1 8392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.219558 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.219559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.219561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.219572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.219573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.219576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.219577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.219579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.229435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.229437 LLDP, length 82 [|LLDP] 19:47:31.229490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.229503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.229519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.229520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bb9 24b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.229522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.229523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.229524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.229526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.229537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.229538 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.229541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.229542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.229544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.239472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.239475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.239476 LLDP, length 82 [|LLDP] 19:47:31.239547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.239568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.239569 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.239570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.239571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.239596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.239600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.239601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bc0 c5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.239603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.239604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.239605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.239607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.249466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.249469 LLDP, length 82 [|LLDP] 19:47:31.249513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.249530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.249547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.249548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bc8 66f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.249549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.249551 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.249552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.249553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.249566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.249567 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.249570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.249571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.249572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.259452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.259455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.259457 LLDP, length 82 [|LLDP] 19:47:31.259523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.259537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.259553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.259554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bd0 0812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.259556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.259556 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.259558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.259560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.259570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.259571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.259575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.259576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.269430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.269433 LLDP, length 82 [|LLDP] 19:47:31.269488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.269503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.269517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.269518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bd7 a932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.269520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.269521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.269531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.269532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.269535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.269536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.269537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.269538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.269540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.279448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.279451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.279452 LLDP, length 82 [|LLDP] 19:47:31.279515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.279529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.279545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.279545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bdf 4a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.279547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.279549 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.279550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.279551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.279561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.279563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.279565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.279567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.289408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.289410 LLDP, length 82 [|LLDP] 19:47:31.289449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.289460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.289461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.289462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.289480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.289481 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.289483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.289491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.289492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1be6 eb72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.289494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.289495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.289496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.289497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.299409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.299411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.299419 LLDP, length 82 [|LLDP] 19:47:31.299452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.299462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.299476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.299477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bee 8c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.299478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.299479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.299480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.299488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.299489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.299491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.299492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.299494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.309396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.309398 LLDP, length 82 [|LLDP] 19:47:31.309431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.309441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.309454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.309455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bf6 2db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.309456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.309457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.309459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.309460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.309468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.309469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.309471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.309472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.309473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.319403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.319405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.319406 LLDP, length 82 [|LLDP] 19:47:31.319435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.319446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.319447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.319448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.319449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.319466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.319468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.319469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bfd ced2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.319471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.319472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.319473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.319474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.329393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.329395 LLDP, length 82 [|LLDP] 19:47:31.329420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.329430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.329442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.329444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c05 6ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.329445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.329446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.329447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.329448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.329456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.329457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.329459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.329460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.329461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.339404 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.339406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.339407 LLDP, length 82 [|LLDP] 19:47:31.339440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.339450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.339463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.339463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c0d 1112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.339465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.339466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.339467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.339468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.339475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.339477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.339479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.339480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.349401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.349403 LLDP, length 82 [|LLDP] 19:47:31.349438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.349449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.349462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.349463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c14 b232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.349464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.349465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.349472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.349473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.349476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.349477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.349478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.349479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.349481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.359408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.359409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.359410 LLDP, length 82 [|LLDP] 19:47:31.359443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.359453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.359466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.359467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c1c 5352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.359469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.359470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.359471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.359472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.359480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.359481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.359483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.359485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.369414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.369416 LLDP, length 82 [|LLDP] 19:47:31.369446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.369456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.369457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.369458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.369475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.369476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.369479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.369486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.369487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c23 f472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.369488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.369489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.369491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.369492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.379435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.379444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.379445 LLDP, length 82 [|LLDP] 19:47:31.379482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.379495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.379509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.379510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c2b 9592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.379512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.379513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.379514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.379525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.379526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.379528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.379530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.379531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.389407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.389409 LLDP, length 82 [|LLDP] 19:47:31.389445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.389457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.389470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.389471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c33 36b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.389473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.389474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.389475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.389476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.389484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.389485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.389487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.389488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.389490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.399406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.399408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.399409 LLDP, length 82 [|LLDP] 19:47:31.399443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.399454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.399455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.399456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.399457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.399473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.399476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.399477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c3a d7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.399478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.399479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.399480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.399482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.409414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.409416 LLDP, length 82 [|LLDP] 19:47:31.409453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.409466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.409479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.409480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c42 78f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.409482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.409483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.409484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.409485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.409492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.409493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.409496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.409497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.409498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.419410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.419412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.419413 LLDP, length 82 [|LLDP] 19:47:31.419447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.419459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.419472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.419473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c4a 1a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.419474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.419475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.419476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.419477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.419485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.419486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.419489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.419490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.429401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.429403 LLDP, length 82 [|LLDP] 19:47:31.429434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.429444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.429457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.429458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c51 bb32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.429460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.429461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.429467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.429468 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.429470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.429471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.429473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.429474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.429475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.439405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.439406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.439407 LLDP, length 82 [|LLDP] 19:47:31.439430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.439439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.439451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.439452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c59 5c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.439454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.439455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.439456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.439457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.439464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.439465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.439467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.439469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.449392 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.449394 LLDP, length 82 [|LLDP] 19:47:31.449413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.449422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.449423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.449424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.449439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.449440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.449443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.449448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.449449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c60 fd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.449451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.449452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.449453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.449454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.459397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.459399 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.459400 LLDP, length 82 [|LLDP] 19:47:31.459429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.459437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.459450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.459451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c68 9e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.459452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.459453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.459454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.459461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.459462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.459464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.459465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.459467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.469396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.469398 LLDP, length 82 [|LLDP] 19:47:31.469421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.469430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.469442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.469443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c70 3fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.469444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.469445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.469446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.469447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.469455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.469456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.469459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.469460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.469461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.479406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.479408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.479409 LLDP, length 82 [|LLDP] 19:47:31.479439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.479450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.479451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.479452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.479453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.479470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.479472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.479473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c77 e0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.479475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.479476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.479477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.479478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.489395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.489396 LLDP, length 82 [|LLDP] 19:47:31.489424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.489433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.489445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.489446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c7f 81f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.489448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.489449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.489450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.489451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.489458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.489459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.489461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.489462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.489463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.499400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.499402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.499402 LLDP, length 82 [|LLDP] 19:47:31.499433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.499441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.499453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.499454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c87 2312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.499456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.499457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.499458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.499459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.499466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.499467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.499470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.499471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.509393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.509395 LLDP, length 82 [|LLDP] 19:47:31.509415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.509424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.509436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.509437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c8e c432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.509439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.509440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.509446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.509447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.509449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.509450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.509451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.509452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.509454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.519397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.519399 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.519400 LLDP, length 82 [|LLDP] 19:47:31.519431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.519439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.519451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.519452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c96 6552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.519454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.519455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.519456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.519457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.519464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.519465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.519467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.519468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.529405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.529407 LLDP, length 82 [|LLDP] 19:47:31.529441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.529451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.529452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.529453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.529470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.529471 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.529474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.529481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.529481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c9e 0672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.529483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.529484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.529485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.529486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.539405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.539407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.539408 LLDP, length 82 [|LLDP] 19:47:31.539435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.539444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.539457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.539458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ca5 a792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.539460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.539461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.539462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.539469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.539470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.539472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.539473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.539474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.549393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.549394 LLDP, length 82 [|LLDP] 19:47:31.549420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.549429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.549441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.549442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cad 48b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.549444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.549445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.549446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.549447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.549454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.549455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.549457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.549458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.549460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.559399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.559401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.559402 LLDP, length 82 [|LLDP] 19:47:31.559425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.559434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.559435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.559436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.559437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.559453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.559456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.559457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cb4 e9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.559458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.559460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.559460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.559462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.569400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.569401 LLDP, length 82 [|LLDP] 19:47:31.569423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.569431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.569444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.569445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cbc 8af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.569447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.569447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.569448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.569449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.569457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.569458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.569461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.569462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.569463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.579399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.579401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.579402 LLDP, length 82 [|LLDP] 19:47:31.579426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.579434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.579448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.579449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cc4 2c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.579451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.579452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.579453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.579454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.579461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.579464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.579467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.589396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.589398 LLDP, length 82 [|LLDP] 19:47:31.589426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.589434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.589447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.589448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ccb cd32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.589449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.589451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.589457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.589458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.589460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.589461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.589462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.589463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.589464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.599402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.599403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.599404 LLDP, length 82 [|LLDP] 19:47:31.599428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.599436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.599448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.599449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cd3 6e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.599451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.599452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.599453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.599454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.599461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.599462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.599464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.599466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.609393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.609394 LLDP, length 82 [|LLDP] 19:47:31.609421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.609429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.609430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.609431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.609447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.609448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.609450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.609456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.609457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cdb 0f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.609459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.609460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.609461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.609462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.619401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.619403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.619404 LLDP, length 82 [|LLDP] 19:47:31.619434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.619443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.619455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.619456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ce2 b092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.619458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.619459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.619460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.619466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.619467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.619469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.619470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.619472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.629393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.629395 LLDP, length 82 [|LLDP] 19:47:31.629415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.629424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.629437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.629437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cea 51b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.629439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.629440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.629441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.629442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.629449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.629450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.629452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.629453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.629455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.639399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.639401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.639402 LLDP, length 82 [|LLDP] 19:47:31.639427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.639435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.639436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.639437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.639438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.639454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.639457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.639458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cf1 f2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.639459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.639460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.639461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.639463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.649402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.649404 LLDP, length 82 [|LLDP] 19:47:31.649434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.649444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.649456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.649457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cf9 93f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.649458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.649459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.649460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.649461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.649469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.649470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.649472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.649473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.649475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.659407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.659409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.659410 LLDP, length 82 [|LLDP] 19:47:31.659445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.659456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.659468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.659469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d01 3512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.659470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.659472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.659473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.659474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.659481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.659482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.659484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.659486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.669395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.669397 LLDP, length 82 [|LLDP] 19:47:31.669420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.669428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.669440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.669441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d08 d632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.669443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.669444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.669450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.669451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.669453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.669454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.669456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.669457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.669458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.679402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.679403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.679404 LLDP, length 82 [|LLDP] 19:47:31.679430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.679438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.679451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.679452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d10 7752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.679453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.679455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.679456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.679457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.679464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.679465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.679467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.679469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.689396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.689397 LLDP, length 82 [|LLDP] 19:47:31.689425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.689433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.689434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.689435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.689450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.689451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.689453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.689460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.689461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d18 1872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.689462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.689463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.689464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.689466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.699402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.699403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.699404 LLDP, length 82 [|LLDP] 19:47:31.699427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.699435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.699447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.699448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d1f b992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.699450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.699451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.699452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.699458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.699459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.699461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.699462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.699463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.709409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.709418 LLDP, length 82 [|LLDP] 19:47:31.709453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.709463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.709475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.709476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d27 5ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.709478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.709479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.709480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.709481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.709490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.709491 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.709493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.709494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.709496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.719403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.719405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.719406 LLDP, length 82 [|LLDP] 19:47:31.719440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.719449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.719450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.719451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.719452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.719468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.719471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.719472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d2e fbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.719473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.719474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.719475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.719477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.729400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.729402 LLDP, length 82 [|LLDP] 19:47:31.729430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.729438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.729451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.729452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d36 9cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.729453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.729454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.729455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.729456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.729463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.729464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.729466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.729467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.729469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.739415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.739417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.739418 LLDP, length 82 [|LLDP] 19:47:31.739454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.739465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.739478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.739479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d3e 3e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.739481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.739482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.739483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.739484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.739493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.739494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.739497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.739498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.749402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.749404 LLDP, length 82 [|LLDP] 19:47:31.749426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.749434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.749447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.749448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d45 df32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.749449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.749450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.749456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.749457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.749460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.749461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.749462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.749463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.749464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.759407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.759408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.759409 LLDP, length 82 [|LLDP] 19:47:31.759444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.759453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.759465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.759466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d4d 8052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.759468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.759469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.759470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.759470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.759477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.759478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.759481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.759482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.769415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.769417 LLDP, length 82 [|LLDP] 19:47:31.769444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.769454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.769455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.769456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.769472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.769474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.769476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.769483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.769484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d55 2172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.769485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.769486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.769487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.769489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.779416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.779418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.779426 LLDP, length 82 [|LLDP] 19:47:31.779463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.779473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.779486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.779487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d5c c292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.779488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.779490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.779491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.779498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.779499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.779501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.779503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.779504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.789400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.789401 LLDP, length 82 [|LLDP] 19:47:31.789430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.789438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.789451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.789451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d64 63b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.789453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.789454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.789455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.789456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.789464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.789465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.789467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.789468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.789470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.799403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.799405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.799406 LLDP, length 82 [|LLDP] 19:47:31.799435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.799444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.799445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.799446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.799447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.799463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.799466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.799466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d6c 04d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.799468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.799469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.799470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.799471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.809407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.809409 LLDP, length 82 [|LLDP] 19:47:31.809438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.809448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.809461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.809462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d73 a5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.809463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.809464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.809466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.809467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.809474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.809475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.809477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.809478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.809480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.819406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.819407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.819408 LLDP, length 82 [|LLDP] 19:47:31.819433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.819442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.819454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.819455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d7b 4712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.819457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.819458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.819459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.819460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.819467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.819468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.819471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.819472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.829398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.829400 LLDP, length 82 [|LLDP] 19:47:31.829426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.829435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.829447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.829448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d82 e832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.829450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.829451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.829457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.829458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.829460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.829461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.829462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.829463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.829465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.839439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.839442 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.839443 LLDP, length 82 [|LLDP] 19:47:31.839489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.839499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.839512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.839513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d8a 8952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.839515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.839516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.839517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.839518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.839528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.839529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.839531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.839533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.849405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.849407 LLDP, length 82 [|LLDP] 19:47:31.849436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.849445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.849446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.849447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.849462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.849464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.849466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.849473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.849474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d92 2a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.849475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.849476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.849477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.849478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.859409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.859410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.859411 LLDP, length 82 [|LLDP] 19:47:31.859439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.859448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.859461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.859462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d99 cb92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.859464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.859465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.859466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.859473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.859474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.859476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.859477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.859478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.869405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.869407 LLDP, length 82 [|LLDP] 19:47:31.869435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.869443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.869456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.869457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1da1 6cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.869459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.869460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.869461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.869462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.869468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.869470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.869472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.869473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.869474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.879406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.879408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.879409 LLDP, length 82 [|LLDP] 19:47:31.879439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.879447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.879448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.879449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.879450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.879465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.879468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.879469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1da9 0dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.879471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.879472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.879473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.879474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.889397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.889398 LLDP, length 82 [|LLDP] 19:47:31.889426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.889433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.889446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.889446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1db0 aef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.889448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.889449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.889450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.889451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.889458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.889460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.889462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.889463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.889464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.899413 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.899415 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.899416 LLDP, length 82 [|LLDP] 19:47:31.899453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.899462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.899476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.899478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1db8 5012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.899479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.899480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.899482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.899483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.899491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.899492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.899494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.899495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.909402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.909403 LLDP, length 82 [|LLDP] 19:47:31.909431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.909440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.909453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.909454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dbf f132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.909456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.909457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.909463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.909464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.909466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.909467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.909468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.909469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.909471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.919410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.919412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.919413 LLDP, length 82 [|LLDP] 19:47:31.919436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.919445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.919457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.919458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dc7 9252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.919460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.919461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.919462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.919463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.919470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.919471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.919473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.919475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.929407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.929408 LLDP, length 82 [|LLDP] 19:47:31.929429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.929437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.929438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.929439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.929455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.929456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.929458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.929465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.929466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dcf 3372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.929467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.929468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.929469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.929470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.939407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.939408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.939409 LLDP, length 82 [|LLDP] 19:47:31.939431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.939439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.939451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.939452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dd6 d492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.939454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.939455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.939456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.939463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.939464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.939466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.939468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.939469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.949400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.949402 LLDP, length 82 [|LLDP] 19:47:31.949427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.949435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.949448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.949448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dde 75b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.949450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.949451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.949452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.949453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.949461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.949462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.949464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.949465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.949466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.959407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.959408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.959409 LLDP, length 82 [|LLDP] 19:47:31.959441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.959448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.959449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.959450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.959452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.959468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.959471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.959471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1de6 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.959473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.959474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.959474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.959476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.969401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.969403 LLDP, length 82 [|LLDP] 19:47:31.969430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.969438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.969450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.969451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ded b7f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.969453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.969454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.969455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.969456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.969463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.969464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.969466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.969467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.969468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.979407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.979409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.979410 LLDP, length 82 [|LLDP] 19:47:31.979433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.979441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.979453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.979454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1df5 5912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.979456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.979457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.979457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.979459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.979465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.979466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.979469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.979470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.989402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.989403 LLDP, length 82 [|LLDP] 19:47:31.989429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.989437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.989449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.989450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dfc fa32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.989452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.989453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.989458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.989459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.989462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.989463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.989463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.989464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.989466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.999409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.999411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.999412 LLDP, length 82 [|LLDP] 19:47:31.999439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.999448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.999461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.999462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e04 9b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.999463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.999464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.999465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.999466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.999474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.999475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.999477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.999478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.009403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.009404 LLDP, length 82 [|LLDP] 19:47:32.009433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.009441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.009442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.009443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.009458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.009460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.009462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.009468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.009469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e0c 3c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.009471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.009472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.009473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.009474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.019407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.019409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.019410 LLDP, length 82 [|LLDP] 19:47:32.019443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.019451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.019463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.019464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e13 dd92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.019466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.019467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.019468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.019474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.019475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.019478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.019478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.019480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.029403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.029404 LLDP, length 82 [|LLDP] 19:47:32.029431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.029440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.029452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.029452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e1b 7eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.029454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.029455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.029456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.029457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.029464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.029465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.029468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.029469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.029470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.039409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.039411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.039412 LLDP, length 82 [|LLDP] 19:47:32.039435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.039443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.039444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.039445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.039446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.039462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.039464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.039465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e23 1fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.039466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.039467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.039468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.039470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.049400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.049402 LLDP, length 82 [|LLDP] 19:47:32.049427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.049435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.049447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.049448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e2a c0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.049450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.049451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.049452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.049452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.049460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.049461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.049463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.049464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.049466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.059410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.059411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.059412 LLDP, length 82 [|LLDP] 19:47:32.059433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.059441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.059453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.059454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e32 6212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.059456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.059457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.059458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.059459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.059466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.059467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.059469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.059471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.069402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.069403 LLDP, length 82 [|LLDP] 19:47:32.069423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.069430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.069443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.069444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e3a 0332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.069445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.069446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.069452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.069453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.069455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.069456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.069457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.069458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.069459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.079412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.079414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.079415 LLDP, length 82 [|LLDP] 19:47:32.079439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.079447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.079459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.079460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e41 a452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.079462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.079463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.079464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.079465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.079472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.079473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.079475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.079477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.089401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.089403 LLDP, length 82 [|LLDP] 19:47:32.089429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.089438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.089439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.089440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.089455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.089457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.089459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.089464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.089465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e49 4572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.089467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.089468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.089469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.089470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.099410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.099412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.099413 LLDP, length 82 [|LLDP] 19:47:32.099435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.099442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.099454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.099455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e50 e692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.099457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.099458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.099459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.099466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.099467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.099469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.099470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.099471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.109407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.109410 LLDP, length 82 [|LLDP] 19:47:32.109441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.109452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.109464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.109465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e58 87b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.109467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.109468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.109469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.109470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.109477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.109478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.109480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.109481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.109483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.119410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.119411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.119412 LLDP, length 82 [|LLDP] 19:47:32.119436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.119445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.119446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.119447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.119448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.119464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.119466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.119467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e60 28d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.119469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.119470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.119471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.119472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.129403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.129405 LLDP, length 82 [|LLDP] 19:47:32.129427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.129435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.129447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.129448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e67 c9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.129450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.129451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.129452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.129453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.129460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.129461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.129463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.129464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.129466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.139415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.139417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.139418 LLDP, length 82 [|LLDP] 19:47:32.139454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.139462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.139475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.139477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e6f 6b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.139478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.139480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.139481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.139482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.139489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.139490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.139493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.139494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.149405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.149406 LLDP, length 82 [|LLDP] 19:47:32.149435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.149444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.149456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.149457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e77 0c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.149458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.149460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.149465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.149466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.149469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.149470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.149471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.149471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.149473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.159412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.159414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.159415 LLDP, length 82 [|LLDP] 19:47:32.159442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.159450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.159462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.159463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e7e ad52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.159465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.159466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.159467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.159468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.159476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.159477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.159479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.159480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.169404 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.169406 LLDP, length 82 [|LLDP] 19:47:32.169432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.169440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.169441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.169442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.169457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.169458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.169460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.169466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.169467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e86 4e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.169469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.169470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.169471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.169472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.179414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.179416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.179417 LLDP, length 82 [|LLDP] 19:47:32.179447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.179455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.179468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.179469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e8d ef92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.179470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.179471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.179472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.179479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.179480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.179482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.179483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.179484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.189402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.189404 LLDP, length 82 [|LLDP] 19:47:32.189429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.189438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.189450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.189451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e95 90b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.189452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.189453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.189454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.189455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.189462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.189463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.189466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.189467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.189468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.199406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.199408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.199409 LLDP, length 82 [|LLDP] 19:47:32.199443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.199452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.199453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.199454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.199455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.199471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.199474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.199475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e9d 31d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.199476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.199477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.199478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.199480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.209404 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.209405 LLDP, length 82 [|LLDP] 19:47:32.209432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.209440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.209452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.209453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ea4 d2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.209455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.209455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.209456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.209458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.209465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.209466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.209468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.209469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.209470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.219412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.219413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.219415 LLDP, length 82 [|LLDP] 19:47:32.219445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.219453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.219465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.219466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eac 7412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.219468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.219469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.219470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.219471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.219478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.219479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.219481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.219483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.229407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.229409 LLDP, length 82 [|LLDP] 19:47:32.229429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.229449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.229463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.229464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eb4 1532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.229466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.229467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.229474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.229475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.229477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.229478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.229480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.229481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.229482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.239455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.239457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.239458 LLDP, length 82 [|LLDP] 19:47:32.239497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.239510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.239525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.239526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ebb b652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.239528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.239529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.239530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.239531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.239542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.239543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.239546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.239547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.249419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.249421 LLDP, length 82 [|LLDP] 19:47:32.249462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.249472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.249473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.249474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.249490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.249491 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.249493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.249500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.249501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ec3 5772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.249503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.249504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.249505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.249507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.259418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.259420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.259421 LLDP, length 82 [|LLDP] 19:47:32.259450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.259461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.259473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.259474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eca f892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.259476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.259477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.259478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.259485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.259486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.259489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.259489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.259491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.269411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.269413 LLDP, length 82 [|LLDP] 19:47:32.269437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.269446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.269458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.269459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ed2 99b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.269461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.269461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.269463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.269464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.269471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.269472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.269474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.269475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.269477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.279486 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.279489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.279490 LLDP, length 82 [|LLDP] 19:47:32.279558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.279572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.279573 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.279574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.279575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.279598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.279602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.279603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eda 3ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.279605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.279605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.279607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.279608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.289455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.289458 LLDP, length 82 [|LLDP] 19:47:32.289513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.289526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.289541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.289542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ee1 dbf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.289544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.289545 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.289546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.289547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.289557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.289558 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.289561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.289562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.289564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.299438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.299447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.299448 LLDP, length 82 [|LLDP] 19:47:32.299484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.299496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.299509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.299510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ee9 7d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.299512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.299513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.299514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.299515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.299523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.299524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.299527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.299528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.309408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.309410 LLDP, length 82 [|LLDP] 19:47:32.309433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.309443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.309457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.309458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ef1 1e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.309459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.309461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.309468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.309469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.309472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.309473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.309474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.309475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.309476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.319419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.319420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.319422 LLDP, length 82 [|LLDP] 19:47:32.319448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.319456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.319468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.319469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ef8 bf52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.319471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.319472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.319473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.319474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.319481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.319482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.319484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.319486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.329411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.329413 LLDP, length 82 [|LLDP] 19:47:32.329435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.329443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.329445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.329446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.329461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.329463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.329465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.329472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.329473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f00 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.329474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.329475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.329476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.329477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.339415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.339417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.339418 LLDP, length 82 [|LLDP] 19:47:32.339442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.339450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.339462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.339463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f08 0192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.339464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.339465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.339466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.339472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.339473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.339476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.339477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.339478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.349410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.349411 LLDP, length 82 [|LLDP] 19:47:32.349434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.349443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.349454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.349455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f0f a2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.349457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.349458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.349459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.349460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.349467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.349469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.349471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.349472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.349473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.359415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.359417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.359418 LLDP, length 82 [|LLDP] 19:47:32.359441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.359449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.359451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.359452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.359453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.359469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.359471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.359472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f17 43d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.359474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.359475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.359476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.359477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.369416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.369418 LLDP, length 82 [|LLDP] 19:47:32.369454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.369466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.369479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.369480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f1e e4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.369481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.369482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.369483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.369484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.369492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.369493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.369495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.369496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.369498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.379419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.379421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.379422 LLDP, length 82 [|LLDP] 19:47:32.379450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.379461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.379474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.379474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f26 8612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.379476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.379477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.379478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.379479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.379486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.379487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.379490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.379491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.389411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.389413 LLDP, length 82 [|LLDP] 19:47:32.389442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.389451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.389463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.389464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f2e 2732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.389466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.389467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.389473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.389474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.389476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.389477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.389478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.389479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.389481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.399429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.399431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.399432 LLDP, length 82 [|LLDP] 19:47:32.399469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.399480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.399493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.399494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f35 c852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.399496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.399497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.399498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.399499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.399507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.399508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.399510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.399512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.409420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.409422 LLDP, length 82 [|LLDP] 19:47:32.409445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.409455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.409456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.409457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.409474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.409475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.409477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.409483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.409484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f3d 6972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.409486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.409487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.409488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.409489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.419418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.419420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.419421 LLDP, length 82 [|LLDP] 19:47:32.419449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.419457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.419470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.419471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f45 0a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.419472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.419473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.419474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.419481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.419482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.419484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.419485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.419487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.429409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.429411 LLDP, length 82 [|LLDP] 19:47:32.429436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.429445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.429457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.429458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f4c abb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.429459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.429460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.429461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.429462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.429469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.429470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.429473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.429474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.429475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.439414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.439416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.439417 LLDP, length 82 [|LLDP] 19:47:32.439443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.439453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.439454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.439455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.439456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.439473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.439475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.439476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f54 4cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.439478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.439479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.439480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.439481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.449411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.449413 LLDP, length 82 [|LLDP] 19:47:32.449438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.449447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.449459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.449460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f5b edf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.449462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.449463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.449464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.449465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.449472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.449473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.449475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.449476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.449478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.459419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.459421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.459422 LLDP, length 82 [|LLDP] 19:47:32.459448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.459456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.459469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.459470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f63 8f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.459471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.459472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.459473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.459474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.459481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.459482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.459484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.459486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.469412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.469414 LLDP, length 82 [|LLDP] 19:47:32.469437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.469447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.469459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.469460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f6b 3032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.469461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.469462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.469468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.469469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.469471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.469472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.469473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.469474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.469476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.479425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.479427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.479428 LLDP, length 82 [|LLDP] 19:47:32.479455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.479465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.479478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.479479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f72 d152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.479480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.479481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.479482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.479484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.479492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.479493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.479495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.479497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.489414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.489416 LLDP, length 82 [|LLDP] 19:47:32.489448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.489457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.489458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.489459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.489475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.489476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.489478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.489484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.489486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f7a 7272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.489487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.489488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.489489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.489490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.499418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.499420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.499421 LLDP, length 82 [|LLDP] 19:47:32.499449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.499458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.499470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.499471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f82 1392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.499473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.499474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.499474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.499481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.499482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.499485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.499486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.499487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.509411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.509413 LLDP, length 82 [|LLDP] 19:47:32.509442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.509451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.509463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.509464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f89 b4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.509466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.509467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.509468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.509469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.509476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.509477 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.509479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.509480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.509481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.519416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.519418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.519418 LLDP, length 82 [|LLDP] 19:47:32.519452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.519461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.519462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.519463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.519464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.519481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.519484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.519484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f91 55d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.519486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.519487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.519488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.519489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.529412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.529413 LLDP, length 82 [|LLDP] 19:47:32.529443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.529451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.529464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.529465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f98 f6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.529466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.529468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.529469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.529470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.529477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.529478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.529480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.529481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.529482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.539416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.539417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.539418 LLDP, length 82 [|LLDP] 19:47:32.539446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.539455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.539467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.539468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fa0 9812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.539470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.539471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.539472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.539473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.539480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.539481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.539484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.539485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.549411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.549413 LLDP, length 82 [|LLDP] 19:47:32.549441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.549450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.549462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.549463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fa8 3932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.549465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.549466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.549471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.549472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.549475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.549475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.549476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.549477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.549479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.559421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.559422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.559423 LLDP, length 82 [|LLDP] 19:47:32.559450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.559458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.559470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.559471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1faf da52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.559473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.559474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.559475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.559476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.559483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.559484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.559486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.559488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.569411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.569413 LLDP, length 82 [|LLDP] 19:47:32.569436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.569445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.569446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.569447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.569462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.569463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.569465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.569471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.569472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fb7 7b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.569474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.569475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.569476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.569477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.579417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.579419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.579420 LLDP, length 82 [|LLDP] 19:47:32.579453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.579462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.579474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.579475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fbf 1c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.579476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.579477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.579478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.579485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.579486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.579488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.579489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.579491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.592019 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.592021 LLDP, length 82 [|LLDP] 19:47:32.592047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.592056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.592068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.592068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fc6 bdb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.592070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.592071 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.592072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.592073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.592081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.592082 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.592084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.592085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.592086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.599421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.599423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.599424 LLDP, length 82 [|LLDP] 19:47:32.599459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.599469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.599470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.599471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.599472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.599488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.599491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.599492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fce 5ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.599493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.599494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.599495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.599497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.609413 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.609415 LLDP, length 82 [|LLDP] 19:47:32.609438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.609448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.609459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.609460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fd5 fff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.609462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.609463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.609464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.609465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.609473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.609474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.609476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.609477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.609478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.619417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.619419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.619420 LLDP, length 82 [|LLDP] 19:47:32.619447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.619456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.619468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.619469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fdd a112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.619470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.619471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.619472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.619473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.619481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.619482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.619484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.619486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.629414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.629415 LLDP, length 82 [|LLDP] 19:47:32.629445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.629454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.629466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.629467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fe5 4232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.629468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.629469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.629475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.629476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.629478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.629479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.629480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.629481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.629482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.639417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.639419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.639420 LLDP, length 82 [|LLDP] 19:47:32.639446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.639456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.639468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.639469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fec e352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.639470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.639471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.639472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.639473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.639480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.639482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.639484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.639485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.652461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.652463 LLDP, length 82 [|LLDP] 19:47:32.652486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.652496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.652497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.652498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.652513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.652514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.652517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.652522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.652523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ff4 8472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.652525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.652526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.652527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.652528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.659421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.659423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.659424 LLDP, length 82 [|LLDP] 19:47:32.659451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.659460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.659471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.659472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ffc 2592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.659474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.659475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.659476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.659482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.659483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.659485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.659486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.659487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.669418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.669420 LLDP, length 82 [|LLDP] 19:47:32.669442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.669451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.669463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.669463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2003 c6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.669465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.669466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.669467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.669468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.669475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.669476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.669478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.669479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.669481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.679417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.679419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.679420 LLDP, length 82 [|LLDP] 19:47:32.679446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.679455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.679456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.679457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.679458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.679474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.679477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.679478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 200b 67d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.679479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.679480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.679481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.679483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.689414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.689416 LLDP, length 82 [|LLDP] 19:47:32.689440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.689448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.689460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.689461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2013 08f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.689463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.689464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.689465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.689466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.689473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.689474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.689477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.689478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.689479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.699421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.699423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.699424 LLDP, length 82 [|LLDP] 19:47:32.699451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.699461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.699473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.699474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 201a aa12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.699475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.699476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.699477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.699478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.699486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.699487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.699490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.699491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.713229 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.713231 LLDP, length 82 [|LLDP] 19:47:32.713254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.713263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.713275 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.713276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2022 4b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.713278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.713279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.713285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.713286 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.713288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.713289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.713290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.713291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.713293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.719423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.719424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.719425 LLDP, length 82 [|LLDP] 19:47:32.719459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.719469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.719481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.719482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2029 ec52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.719484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.719485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.719486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.719487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.719494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.719495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.719497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.719498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.729414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.729416 LLDP, length 82 [|LLDP] 19:47:32.729439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.729448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.729449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.729450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.729465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.729466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.729468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.729474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.729475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2031 8d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.729477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.729478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.729479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.729480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.739420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.739421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.739422 LLDP, length 82 [|LLDP] 19:47:32.739449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.739458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.739470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.739471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2039 2e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.739473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.739474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.739475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.739481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.739482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.739484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.739485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.739487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.749413 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.749415 LLDP, length 82 [|LLDP] 19:47:32.749438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.749447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.749459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.749459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2040 cfb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.749461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.749462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.749463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.749464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.749471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.749472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.749474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.749475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.749477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.759419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.759421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.759422 LLDP, length 82 [|LLDP] 19:47:32.759451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.759463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.759464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.759465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.759467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.759484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.759486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.759487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2048 70d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.759488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.759490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.759491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.759492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.770516 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.770518 LLDP, length 82 [|LLDP] 19:47:32.770542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.770551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.770563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.770564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2050 11f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.770566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.770567 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.770568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.770569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.770576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.770577 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.770580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.770581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.770582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.779420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.779422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.779423 LLDP, length 82 [|LLDP] 19:47:32.779450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.779459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.779471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.779472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2057 b312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.779474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.779475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.779476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.779476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.779484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.779485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.779487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.779489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.789414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.789416 LLDP, length 82 [|LLDP] 19:47:32.789439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.789448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.789459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.789460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 205f 5432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.789462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.789463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.789468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.789469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.789471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.789473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.789474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.789475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.789476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.799420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.799422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.799423 LLDP, length 82 [|LLDP] 19:47:32.799455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.799465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.799476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.799477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2066 f552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.799478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.799480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.799481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.799482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.799489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.799490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.799492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.799493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.809416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.809418 LLDP, length 82 [|LLDP] 19:47:32.809443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.809451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.809452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.809453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.809469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.809470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.809472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.809478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.809479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 206e 9672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.809481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.809482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.809483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.809484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.819424 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.819426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.819427 LLDP, length 82 [|LLDP] 19:47:32.819454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.819462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.819474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.819475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2076 3792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.819477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.819478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.819479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.819486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.819487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.819489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.819490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.819491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.829418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.829420 LLDP, length 82 [|LLDP] 19:47:32.829451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.829459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.829471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.829472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 207d d8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.829473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.829474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.829475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.829476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.829483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.829484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.829486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.829487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.829489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.839422 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.839424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.839426 LLDP, length 82 [|LLDP] 19:47:32.839454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.839464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.839465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.839466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.839467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.839484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.839487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.839488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2085 79d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.839490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.839491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.839492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.839493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.849445 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.849453 LLDP, length 82 [|LLDP] 19:47:32.849495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.849506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.849520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.849521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 208d 1af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.849522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.849523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.849524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.849526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.849534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.849535 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.849538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.849539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.849541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.859427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.859429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.859430 LLDP, length 82 [|LLDP] 19:47:32.859459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.859469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.859481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.859482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2094 bc12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.859483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.859484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.859486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.859486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.859494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.859495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.859497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.859498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.869418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.869420 LLDP, length 82 [|LLDP] 19:47:32.869450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.869459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.869471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.869472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 209c 5d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.869473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.869474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.869481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.869482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.869484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.869485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.869486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.869487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.869488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.879432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.879441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.879442 LLDP, length 82 [|LLDP] 19:47:32.879478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.879488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.879500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.879501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20a3 fe52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.879503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.879504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.879505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.879506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.879513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.879515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.879517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.879518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.889421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.889423 LLDP, length 82 [|LLDP] 19:47:32.889448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.889457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.889458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.889459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.889475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.889476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.889478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.889484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.889485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ab 9f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.889487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.889488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.889489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.889490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.899425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.899427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.899428 LLDP, length 82 [|LLDP] 19:47:32.899454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.899464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.899476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.899477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20b3 4092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.899478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.899479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.899480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.899487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.899488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.899490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.899491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.899493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.909425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.909427 LLDP, length 82 [|LLDP] 19:47:32.909462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.909472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.909484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.909485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ba e1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.909487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.909488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.909489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.909490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.909498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.909499 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.909502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.909503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.909504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.919428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.919430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.919431 LLDP, length 82 [|LLDP] 19:47:32.919461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.919470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.919471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.919472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.919473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.919489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.919492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.919492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20c2 82d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.919494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.919495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.919496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.919497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.929423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.929425 LLDP, length 82 [|LLDP] 19:47:32.929449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.929458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.929470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.929471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ca 23f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.929473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.929474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.929475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.929476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.929484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.929485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.929487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.929488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.929489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.939531 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.939533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.939534 LLDP, length 82 [|LLDP] 19:47:32.939565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.939575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.939587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.939588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20d1 c512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.939595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.939596 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.939597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.939598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.939606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.939607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.939609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.939610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.949427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.949429 LLDP, length 82 [|LLDP] 19:47:32.949462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.949472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.949485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.949485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20d9 6632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.949487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.949488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.949495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.949496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.949498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.949499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.949500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.949501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.949503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.959430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.959432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.959433 LLDP, length 82 [|LLDP] 19:47:32.959461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.959471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.959483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.959484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20e1 0752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.959485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.959486 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.959488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.959488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.959495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.959497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.959499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.959500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.969420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.969422 LLDP, length 82 [|LLDP] 19:47:32.969454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.969465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.969466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.969467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.969482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.969484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.969486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.969492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.969493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20e8 a872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.969494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.969495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.969496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.969498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.979463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.979466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.979467 LLDP, length 82 [|LLDP] 19:47:32.979519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.979530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.979543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.979544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20f0 4992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.979546 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.979547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.979548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.979557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.979558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.979561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.979562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.979563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.989423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.989425 LLDP, length 82 [|LLDP] 19:47:32.989451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.989461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.989473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.989474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20f7 eab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.989476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.989477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.989478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.989479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.989486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.989487 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.989490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.989491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.989492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.999430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.999432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.999433 LLDP, length 82 [|LLDP] 19:47:32.999461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.999471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.999472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.999473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.999474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.999490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.999493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.999494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ff 8bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.999496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.999497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.999498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.999499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.009422 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.009424 LLDP, length 82 [|LLDP] 19:47:33.009449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.009459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.009471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.009472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2107 2cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.009474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.009474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.009475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.009476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.009484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.009485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.009487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.009488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.009489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.019427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.019429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.019430 LLDP, length 82 [|LLDP] 19:47:33.019458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.019467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.019478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.019479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 210e ce12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.019481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.019482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.019483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.019484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.019491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.019492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.019495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.019496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.029419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.029421 LLDP, length 82 [|LLDP] 19:47:33.029444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.029453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.029465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.029465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2116 6f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.029467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.029468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.029474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.029475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.029477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.029478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.029479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.029480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.029481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.039427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.039429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.039430 LLDP, length 82 [|LLDP] 19:47:33.039457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.039467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.039478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.039479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 211e 1052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.039481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.039482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.039483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.039484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.039491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.039492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.039494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.039495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.049419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.049420 LLDP, length 82 [|LLDP] 19:47:33.049452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.049461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.049462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.049463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.049479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.049480 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.049482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.049488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.049489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2125 b172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.049491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.049492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.049492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.049494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.059428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.059430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.059431 LLDP, length 82 [|LLDP] 19:47:33.059457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.059466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.059478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.059479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 212d 5292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.059481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.059482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.059482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.059489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.059490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.059492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.059494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.059495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.069420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.069422 LLDP, length 82 [|LLDP] 19:47:33.069445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.069454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.069467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.069467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2134 f3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.069469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.069470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.069471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.069472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.069479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.069480 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.069482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.069483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.069485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.079425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.079427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.079435 LLDP, length 82 [|LLDP] 19:47:33.079464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.079479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.079481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.079482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.079483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.079500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.079503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.079504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 213c 94d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.079505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.079506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.079507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.079509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.089434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.089442 LLDP, length 82 [|LLDP] 19:47:33.089473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.089484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.089498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.089499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2144 35f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.089516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.089518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.089519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.089520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.089531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.089532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.089534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.089535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.089537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.099450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.099458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.099459 LLDP, length 82 [|LLDP] 19:47:33.099495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.099507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.099521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.099522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 214b d712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.099524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.099525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.099526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.099527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.099538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.099539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.099542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.099543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.109429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.109431 LLDP, length 82 [|LLDP] 19:47:33.109468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.109478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.109491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.109492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2153 7832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.109494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.109495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.109502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.109503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.109505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.109506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.109507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.109508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.109510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.119436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.119438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.119445 LLDP, length 82 [|LLDP] 19:47:33.119479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.119489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.119502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.119503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 215b 1952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.119505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.119506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.119507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.119508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.119516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.119517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.119519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.119520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.129427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.129428 LLDP, length 82 [|LLDP] 19:47:33.129457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.129466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.129467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.129468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.129484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.129486 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.129488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.129495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.129496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2162 ba72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.129497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.129498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.129499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.129501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.139430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.139432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.139433 LLDP, length 82 [|LLDP] 19:47:33.139459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.139469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.139482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.139483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 216a 5b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.139484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.139485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.139486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.139493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.139494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.139497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.139498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.139499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.149423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.149424 LLDP, length 82 [|LLDP] 19:47:33.149449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.149458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.149470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.149471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2171 fcb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.149473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.149474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.149475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.149476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.149484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.149485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.149487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.149488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.149490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.159428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.159430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.159431 LLDP, length 82 [|LLDP] 19:47:33.159458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.159466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.159467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.159468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.159469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.159486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.159489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.159490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2179 9dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.159492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.159493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.159493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.159495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.169421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.169423 LLDP, length 82 [|LLDP] 19:47:33.169446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.169454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.169468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.169469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2181 3ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.169470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.169471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.169472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.169474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.169482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.169482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.169485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.169486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.169487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.179430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.179432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.179433 LLDP, length 82 [|LLDP] 19:47:33.179462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.179470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.179483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.179484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2188 e012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.179486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.179487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.179488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.179489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.179497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.179498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.179500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.179501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.189424 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.189426 LLDP, length 82 [|LLDP] 19:47:33.189457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.189465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.189478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.189479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2190 8132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.189481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.189482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.189488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.189489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.189491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.189492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.189493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.189494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.189496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.199429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.199431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.199432 LLDP, length 82 [|LLDP] 19:47:33.199460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.199469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.199482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.199483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2198 2252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.199485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.199485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.199487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.199488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.199495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.199497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.199499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.199500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.209422 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.209424 LLDP, length 82 [|LLDP] 19:47:33.209448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.209457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.209458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.209459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.209475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.209476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.209478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.209485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.209485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 219f c372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.209487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.209488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.209489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.209490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.219429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.219430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.219431 LLDP, length 82 [|LLDP] 19:47:33.219467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.219476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.219489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.219490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21a7 6492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.219491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.219492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.219493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.219501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.219502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.219504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.219505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.219506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.229427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.229429 LLDP, length 82 [|LLDP] 19:47:33.229455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.229463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.229476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.229477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21af 05b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.229478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.229479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.229480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.229481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.229489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.229490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.229492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.229493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.229495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.239430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.239432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.239433 LLDP, length 82 [|LLDP] 19:47:33.239459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.239468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.239469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.239470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.239471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.239488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.239491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.239491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21b6 a6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.239493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.239494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.239495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.239497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.249425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.249427 LLDP, length 82 [|LLDP] 19:47:33.249457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.249465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.249478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.249479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21be 47f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.249480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.249481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.249482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.249483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.249491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.249492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.249494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.249495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.249497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.259432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.259434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.259435 LLDP, length 82 [|LLDP] 19:47:33.259468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.259477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.259490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.259491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21c5 e912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.259493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.259494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.259495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.259496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.259504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.259505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.259507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.259509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.269425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.269427 LLDP, length 82 [|LLDP] 19:47:33.269451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.269460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.269473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.269474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21cd 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.269475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.269476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.269483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.269484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.269486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.269487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.269488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.269489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.269490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.279449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.279451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.279452 LLDP, length 82 [|LLDP] 19:47:33.279490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.279501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.279514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.279516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21d5 2b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.279517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.279518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.279519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.279520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.279528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.279529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.279532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.279533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.289434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.289436 LLDP, length 82 [|LLDP] 19:47:33.289463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.289473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.289474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.289475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.289492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.289494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.289496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.289503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.289503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21dc cc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.289505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.289506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.289507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.289509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.299445 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.299446 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.299447 LLDP, length 82 [|LLDP] 19:47:33.299487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.299498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.299512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.299513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21e4 6d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.299515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.299516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.299517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.299525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.299526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.299528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.299529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.299531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.309432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.309434 LLDP, length 82 [|LLDP] 19:47:33.309464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.309473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.309486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.309487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21ec 0eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.309489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.309489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.309491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.309492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.309500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.309501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.309504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.309505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.309507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.319442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.319444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.319445 LLDP, length 82 [|LLDP] 19:47:33.319481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.319491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.319492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.319493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.319494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.319512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.319514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.319515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21f3 afd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.319517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.319518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.319519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.319520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.329436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.329438 LLDP, length 82 [|LLDP] 19:47:33.329477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.329487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.329501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.329502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21fb 50f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.329503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.329504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.329506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.329507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.329515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.329516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.329518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.329519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.329521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.339439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.339441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.339448 LLDP, length 82 [|LLDP] 19:47:33.339483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.339492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.339505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.339506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2202 f212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.339507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.339508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.339509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.339510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.339518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.339519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.339521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.339523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.349437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.349439 LLDP, length 82 [|LLDP] 19:47:33.349468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.349476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.349489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.349490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 220a 9332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.349492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.349493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.349499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.349500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.349502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.349503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.349504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.349506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.349507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.359438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.359440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.359441 LLDP, length 82 [|LLDP] 19:47:33.359474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.359483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.359496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.359497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2212 3452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.359498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.359499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.359500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.359501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.359509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.359510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.359513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.359514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.369432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.369434 LLDP, length 82 [|LLDP] 19:47:33.369463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.369472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.369473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.369474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.369492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.369493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.369495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.369502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.369503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2219 d572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.369505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.369506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.369507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.369508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.379443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.379445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.379446 LLDP, length 82 [|LLDP] 19:47:33.379478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.379486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.379500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.379501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2221 7692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.379502 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.379503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.379505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.379512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.379513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.379515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.379516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.379518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.389432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.389434 LLDP, length 82 [|LLDP] 19:47:33.389469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.389478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.389490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.389491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2229 17b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.389493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.389494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.389495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.389496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.389503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.389505 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.389507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.389508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.389510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.399453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.399454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.399455 LLDP, length 82 [|LLDP] 19:47:33.399497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.399507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.399508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.399509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.399510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.399530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.399532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.399533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2230 b8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.399535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.399536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.399537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.399538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.409433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.409435 LLDP, length 82 [|LLDP] 19:47:33.409464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.409474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.409487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.409488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2238 59f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.409489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.409490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.409491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.409492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.409501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.409502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.409504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.409505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.409507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.419448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.419450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.419451 LLDP, length 82 [|LLDP] 19:47:33.419486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.419496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.419510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.419511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 223f fb12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.419513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.419514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.419515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.419516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.419524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.419525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.419528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.419529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.429435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.429438 LLDP, length 82 [|LLDP] 19:47:33.429468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.429478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.429491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.429492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2247 9c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.429493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.429495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.429502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.429503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.429505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.429506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.429507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.429508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.429510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.439441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.439443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.439444 LLDP, length 82 [|LLDP] 19:47:33.439481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.439494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.439508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.439509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 224f 3d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.439511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.439512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.439513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.439514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.439521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.439523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.439525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.439526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.449432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.449434 LLDP, length 82 [|LLDP] 19:47:33.449467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.449477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.449478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.449479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.449495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.449497 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.449499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.449505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.449506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2256 de72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.449508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.449509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.449510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.449511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.459437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.459439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.459440 LLDP, length 82 [|LLDP] 19:47:33.459478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.459488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.459501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.459502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 225e 7f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.459503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.459504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.459505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.459513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.459514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.459517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.459518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.459519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.469430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.469431 LLDP, length 82 [|LLDP] 19:47:33.469464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.469474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.469487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.469488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2266 20b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.469489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.469490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.469491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.469492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.469501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.469502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.469504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.469505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.469507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.479439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.479441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.479442 LLDP, length 82 [|LLDP] 19:47:33.479473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.479484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.479485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.479486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.479487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.479505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.479507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.479508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 226d c1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.479510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.479511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.479512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.479513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.489429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.489431 LLDP, length 82 [|LLDP] 19:47:33.489456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.489466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.489480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.489481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2275 62f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.489483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.489484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.489485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.489486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.489494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.489495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.489497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.489498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.489500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.499437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.499439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.499440 LLDP, length 82 [|LLDP] 19:47:33.499468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.499479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.499491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.499492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 227d 0412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.499494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.499495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.499496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.499497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.499505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.499506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.499508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.499510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.509434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.509436 LLDP, length 82 [|LLDP] 19:47:33.509471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.509481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.509493 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.509494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2284 a532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.509496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.509497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.509503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.509504 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.509506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.509507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.509508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.509509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.509511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.519438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.519440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.519441 LLDP, length 82 [|LLDP] 19:47:33.519470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.519480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.519493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.519494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 228c 4652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.519495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.519496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.519497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.519499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.519507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.519508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.519511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.519512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.529430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.529431 LLDP, length 82 [|LLDP] 19:47:33.529457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.529469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.529470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.529471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.529487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.529488 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.529490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.529497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.529498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2293 e772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.529499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.529500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.529501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.529503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.539438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.539439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.539440 LLDP, length 82 [|LLDP] 19:47:33.539475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.539485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.539497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.539498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 229b 8892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.539500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.539501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.539502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.539510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.539511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.539513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.539514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.539515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.549429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.549431 LLDP, length 82 [|LLDP] 19:47:33.549456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.549466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.549479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.549480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22a3 29b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.549482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.549483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.549484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.549485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.549493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.549494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.549496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.549497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.549499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.559436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.559438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.559439 LLDP, length 82 [|LLDP] 19:47:33.559472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.559482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.559483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.559484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.559485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.559502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.559505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.559506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22aa cad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.559507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.559508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.559509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.559510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.569432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.569433 LLDP, length 82 [|LLDP] 19:47:33.569456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.569466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.569478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.569479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22b2 6bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.569481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.569482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.569483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.569484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.569491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.569492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.569494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.569495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.569497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.579434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.579436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.579437 LLDP, length 82 [|LLDP] 19:47:33.579463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.579472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.579485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.579486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22ba 0d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.579487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.579489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.579490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.579491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.579498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.579499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.579501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.579503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.589428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.589430 LLDP, length 82 [|LLDP] 19:47:33.589452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.589462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.589475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.589476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22c1 ae32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.589477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.589478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.589484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.589485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.589487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.589488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.589489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.589490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.589492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.599436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.599437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.599438 LLDP, length 82 [|LLDP] 19:47:33.599471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.599480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.599492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.599493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22c9 4f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.599495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.599496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.599497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.599498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.599505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.599506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.599508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.599510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.609427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.609429 LLDP, length 82 [|LLDP] 19:47:33.609452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.609463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.609464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.609465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.609481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.609482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.609485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.609491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.609492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22d0 f072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.609493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.609495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.609496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.609497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.619437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.619438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.619439 LLDP, length 82 [|LLDP] 19:47:33.619472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.619482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.619494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.619495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22d8 9192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.619496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.619497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.619498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.619505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.619506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.619508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.619510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.619511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.629430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.629431 LLDP, length 82 [|LLDP] 19:47:33.629453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.629463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.629475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.629476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22e0 32b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.629477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.629478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.629479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.629480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.629488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.629489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.629491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.629492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.629494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.639437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.639438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.639439 LLDP, length 82 [|LLDP] 19:47:33.639473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.639482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.639483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.639484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.639486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.639502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.639505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.639506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22e7 d3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.639507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.639508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.639509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.639511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.649431 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.649433 LLDP, length 82 [|LLDP] 19:47:33.649463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.649473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.649486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.649486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22ef 74f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.649488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.649489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.649490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.649491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.649499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.649500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.649503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.649503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.649505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.659436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.659438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.659439 LLDP, length 82 [|LLDP] 19:47:33.659473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.659483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.659496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.659497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22f7 1612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.659498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.659499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.659500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.659501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.659509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.659510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.659513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.659514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.669428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.669430 LLDP, length 82 [|LLDP] 19:47:33.669459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.669470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.669482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.669483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22fe b732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.669485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.669486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.669491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.669492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.669495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.669496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.669497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.669498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.669499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.679441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.679442 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.679443 LLDP, length 82 [|LLDP] 19:47:33.679471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.679480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.679492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.679493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2306 5852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.679494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.679495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.679496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.679497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.679505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.679506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.679509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.679510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.689430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.689432 LLDP, length 82 [|LLDP] 19:47:33.689463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.689473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.689474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.689475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.689491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.689492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.689494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.689500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.689501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 230d f972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.689503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.689504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.689505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.689506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.699435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.699436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.699437 LLDP, length 82 [|LLDP] 19:47:33.699464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.699473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.699485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.699486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2315 9a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.699487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.699488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.699489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.699495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.699496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.699499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.699500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.699501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.709429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.709431 LLDP, length 82 [|LLDP] 19:47:33.709459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.709469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.709482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.709483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 231d 3bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.709484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.709485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.709486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.709487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.709495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.709496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.709498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.709499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.709500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.719438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.719439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.719440 LLDP, length 82 [|LLDP] 19:47:33.719465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.719475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.719476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.719477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.719478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.719495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.719497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.719498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2324 dcd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.719499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.719500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.719501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.719502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.729632 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.729634 LLDP, length 82 [|LLDP] 19:47:33.729656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.729665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.729678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.729679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 232c 7df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.729680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.729681 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.729682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.729683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.729691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.729692 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.729694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.729695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.729696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.739436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.739438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.739439 LLDP, length 82 [|LLDP] 19:47:33.739464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.739473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.739485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.739486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2334 1f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.739488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.739489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.739490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.739491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.739499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.739500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.739502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.739503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.749427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.749428 LLDP, length 82 [|LLDP] 19:47:33.749457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.749466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.749478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.749479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 233b c032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.749481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.749482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.749488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.749489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.749491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.749492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.749493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.749494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.749495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.759436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.759438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.759439 LLDP, length 82 [|LLDP] 19:47:33.759464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.759472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.759485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.759486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2343 6152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.759487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.759488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.759489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.759490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.759497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.759499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.759501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.759502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.769427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.769428 LLDP, length 82 [|LLDP] 19:47:33.769456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.769465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.769466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.769467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.769482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.769483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.769485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.769491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.769492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 234b 0272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.769494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.769495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.769496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.769497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.779433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.779435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.779436 LLDP, length 82 [|LLDP] 19:47:33.779466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.779475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.779487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.779488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2352 a392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.779489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.779490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.779491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.779498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.779499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.779501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.779502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.779504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.789430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.789431 LLDP, length 82 [|LLDP] 19:47:33.789453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.789462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.789475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.789475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 235a 44b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.789477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.789478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.789480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.789480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.789488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.789489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.789491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.789492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.789493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.799434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.799436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.799437 LLDP, length 82 [|LLDP] 19:47:33.799461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.799469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.799470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.799471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.799472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.799488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.799491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.799492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2361 e5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.799493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.799494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.799495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.799497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.809428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.809429 LLDP, length 82 [|LLDP] 19:47:33.809448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.809455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.809468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.809469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2369 86f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.809471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.809472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.809473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.809474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.809481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.809482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.809484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.809486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.809487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.819435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.819437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.819438 LLDP, length 82 [|LLDP] 19:47:33.819459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.819466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.819478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.819479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2371 2812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.819480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.819481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.819482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.819483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.819491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.819492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.819494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.819496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.829426 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.829427 LLDP, length 82 [|LLDP] 19:47:33.829453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.829461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.829473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.829474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2378 c932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.829475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.829476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.829482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.829483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.829485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.829486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.829487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.829488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.829489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.839432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.839434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.839435 LLDP, length 82 [|LLDP] 19:47:33.839457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.839464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.839476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.839478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2380 6a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.839479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.839480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.839481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.839482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.839489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.839490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.839493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.839494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.849429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.849431 LLDP, length 82 [|LLDP] 19:47:33.849459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.849468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.849470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.849470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.849486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.849487 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.849490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.849496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.849496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2388 0b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.849498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.849499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.849500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.849502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.859438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.859440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.859441 LLDP, length 82 [|LLDP] 19:47:33.859468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.859477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.859489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.859490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 238f ac92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.859491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.859493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.859494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.859501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.859502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.859504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.859505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.859506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.869431 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.869433 LLDP, length 82 [|LLDP] 19:47:33.869455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.869464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.869476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.869477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2397 4db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.869479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.869480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.869481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.869481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.869488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.869490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.869492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.869493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.869494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.879433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.879435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.879436 LLDP, length 82 [|LLDP] 19:47:33.879466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.879474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.879475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.879476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.879477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.879494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.879496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.879497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 239e eed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.879498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.879500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.879501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.879502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.889427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.889429 LLDP, length 82 [|LLDP] 19:47:33.889454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.889462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.889475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.889475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23a6 8ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.889477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.889478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.889479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.889480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.889487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.889488 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.889490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.889491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.889493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.899434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.899435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.899437 LLDP, length 82 [|LLDP] 19:47:33.899458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.899466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.899478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.899479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23ae 3112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.899480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.899481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.899482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.899483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.899491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.899492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.899494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.899495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.909431 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.909433 LLDP, length 82 [|LLDP] 19:47:33.909452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.909460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.909472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.909473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23b5 d232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.909474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.909476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.909481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.909483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.909485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.909486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.909487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.909487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.909488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.919434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.919436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.919437 LLDP, length 82 [|LLDP] 19:47:33.919459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.919467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.919478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.919479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23bd 7352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.919481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.919482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.919483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.919484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.919491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.919492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.919494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.919495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.929430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.929431 LLDP, length 82 [|LLDP] 19:47:33.929450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.929458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.929459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.929460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.929475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.929476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.929479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.929484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.929485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23c5 1472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.929487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.929488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.929489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.929490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.939434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.939435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.939436 LLDP, length 82 [|LLDP] 19:47:33.939465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.939473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.939485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.939486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23cc b592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.939487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.939488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.939490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.939496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.939497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.939499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.939500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.939502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.949432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.949434 LLDP, length 82 [|LLDP] 19:47:33.949462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.949471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.949484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.949484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23d4 56b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.949486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.949487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.949488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.949505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.949514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.949515 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.949518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.949519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.949521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.959473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.959475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.959476 LLDP, length 82 [|LLDP] 19:47:33.959513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.959524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.959525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.959526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.959527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.959547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.959551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.959552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23db f7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.959553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.959554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.959555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.959557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.969437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.969439 LLDP, length 82 [|LLDP] 19:47:33.969466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.969475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.969489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.969490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23e3 98f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.969491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.969492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.969493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.969494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.969502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.969504 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.969506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.969507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.969508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.979458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.979461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.979461 LLDP, length 82 [|LLDP] 19:47:33.979502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.979512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.979525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.979526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23eb 3a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.979528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.979528 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.979529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.979530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.979539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.979540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.979543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.979544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.989435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.989437 LLDP, length 82 [|LLDP] 19:47:33.989466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.989475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.989488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.989489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23f2 db32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.989490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.989491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.989497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.989498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.989500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.989501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.989503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.989504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.989505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.999436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.999438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.999439 LLDP, length 82 [|LLDP] 19:47:33.999468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.999477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.999489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.999490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23fa 7c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.999491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.999492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.999493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.999495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.999502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.999503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.999506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.999507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.009443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.009445 LLDP, length 82 [|LLDP] 19:47:34.009470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.009481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.009482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.009483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.009507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.009508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.009511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.009517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.009518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2402 1d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.009520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.009521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.009522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.009523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.019447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.019449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.019450 LLDP, length 82 [|LLDP] 19:47:34.019484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.019494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.019507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.019508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2409 be92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.019509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.019510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.019511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.019519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.019520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.019523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.019524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.019526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.029434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.029435 LLDP, length 82 [|LLDP] 19:47:34.029463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.029471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.029483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.029484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2411 5fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.029486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.029486 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.029487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.029488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.029495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.029496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.029498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.029499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.029500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.039438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.039440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.039441 LLDP, length 82 [|LLDP] 19:47:34.039470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.039478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.039479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.039480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.039482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.039498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.039500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.039501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2419 00d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.039502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.039503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.039504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.039506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.049439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.049441 LLDP, length 82 [|LLDP] 19:47:34.049476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.049487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.049500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.049501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2420 a1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.049503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.049504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.049505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.049506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.049514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.049515 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.049517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.049518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.049520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.059443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.059445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.059446 LLDP, length 82 [|LLDP] 19:47:34.059472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.059481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.059493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.059494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2428 4312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.059495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.059496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.059497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.059498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.059506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.059507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.059509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.059511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.069435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.069436 LLDP, length 82 [|LLDP] 19:47:34.069458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.069467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.069480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.069480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 242f e432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.069482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.069483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.069489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.069490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.069493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.069494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.069495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.069496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.069497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.079454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.079456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.079457 LLDP, length 82 [|LLDP] 19:47:34.079490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.079506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.079519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.079520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2437 8552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.079521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.079523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.079524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.079524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.079532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.079534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.079536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.079537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.089437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.089438 LLDP, length 82 [|LLDP] 19:47:34.089463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.089471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.089472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.089473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.089489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.089490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.089492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.089499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.089500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 243f 2672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.089501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.089502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.089503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.089505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.099442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.099444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.099445 LLDP, length 82 [|LLDP] 19:47:34.099476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.099484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.099496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.099497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2446 c792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.099499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.099500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.099501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.099507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.099508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.099510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.099512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.099513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.109433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.109434 LLDP, length 82 [|LLDP] 19:47:34.109455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.109463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.109476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.109477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 244e 68b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.109478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.109479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.109480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.109481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.109488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.109489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.109492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.109493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.109494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.119457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.119460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.119461 LLDP, length 82 [|LLDP] 19:47:34.119507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.119518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.119519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.119520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.119521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.119541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.119543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.119544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2456 09d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.119546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.119547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.119548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.119549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.129453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.129455 LLDP, length 82 [|LLDP] 19:47:34.129485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.129497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.129510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.129511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 245d aaf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.129513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.129514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.129515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.129516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.129524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.129525 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.129527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.129528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.129530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.139449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.139451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.139452 LLDP, length 82 [|LLDP] 19:47:34.139480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.139490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.139503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.139503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2465 4c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.139505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.139506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.139507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.139508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.139516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.139517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.139519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.139521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.149439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.149441 LLDP, length 82 [|LLDP] 19:47:34.149465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.149476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.149489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.149489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 246c ed32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.149491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.149492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.149498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.149499 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.149502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.149503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.149504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.149505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.149507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.159447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.159448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.159450 LLDP, length 82 [|LLDP] 19:47:34.159479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.159489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.159502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.159503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2474 8e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.159505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.159506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.159507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.159508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.159516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.159516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.159519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.159521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.169443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.169444 LLDP, length 82 [|LLDP] 19:47:34.169471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.169482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.169483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.169484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.169501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.169502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.169505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.169511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.169512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 247c 2f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.169513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.169514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.169515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.169517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.179441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.179443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.179444 LLDP, length 82 [|LLDP] 19:47:34.179468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.179476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.179488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.179489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2483 d092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.179490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.179492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.179492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.179499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.179500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.179503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.179504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.179506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.189436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.189437 LLDP, length 82 [|LLDP] 19:47:34.189457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.189465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.189478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.189479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 248b 71b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.189480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.189481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.189482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.189484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.189490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.189492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.189494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.189495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.189496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.199442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.199444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.199445 LLDP, length 82 [|LLDP] 19:47:34.199478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.199487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.199488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.199489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.199490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.199506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.199509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.199510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2493 12d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.199511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.199513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.199514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.199515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.209442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.209444 LLDP, length 82 [|LLDP] 19:47:34.209467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.209477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.209489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.209490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 249a b3f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.209492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.209493 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.209494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.209495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.209502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.209503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.209505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.209506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.209508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.219447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.219449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.219450 LLDP, length 82 [|LLDP] 19:47:34.219476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.219486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.219498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.219499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24a2 5512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.219501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.219502 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.219503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.219504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.219511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.219512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.219515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.219516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.229439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.229440 LLDP, length 82 [|LLDP] 19:47:34.229463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.229474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.229487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.229488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24a9 f632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.229489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.229490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.229497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.229498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.229500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.229501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.229502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.229503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.229504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.239448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.239449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.239450 LLDP, length 82 [|LLDP] 19:47:34.239481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.239491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.239503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.239504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24b1 9752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.239505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.239506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.239507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.239508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.239515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.239517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.239519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.239520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.249441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.249443 LLDP, length 82 [|LLDP] 19:47:34.249466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.249477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.249478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.249479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.249494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.249496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.249498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.249504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.249505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24b9 3872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.249506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.249507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.249508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.249510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.259446 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.259447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.259448 LLDP, length 82 [|LLDP] 19:47:34.259474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.259484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.259496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.259497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24c0 d992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.259499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.259500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.259501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.259508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.259509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.259511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.259512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.259514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.269439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.269441 LLDP, length 82 [|LLDP] 19:47:34.269464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.269474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.269486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.269487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24c8 7ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.269489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.269490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.269491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.269492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.269499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.269500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.269502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.269503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.269505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.279444 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.279446 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.279447 LLDP, length 82 [|LLDP] 19:47:34.279474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.279484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.279485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.279486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.279487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.279504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.279506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.279507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24d0 1bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.279508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.279509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.279510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.279512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.289439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.289441 LLDP, length 82 [|LLDP] 19:47:34.289471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.289482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.289494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.289495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24d7 bcf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.289496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.289497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.289499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.289499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.289507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.289508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.289511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.289512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.289513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.299447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.299449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.299450 LLDP, length 82 [|LLDP] 19:47:34.299475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.299483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.299496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.299496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24df 5e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.299498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.299499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.299500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.299501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.299508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.299509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.299511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.299513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.309441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.309442 LLDP, length 82 [|LLDP] 19:47:34.309464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.309474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.309487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.309487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24e6 ff32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.309489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.309490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.309496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.309497 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.309500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.309501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.309502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.309503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.309504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.319449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.319450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.319451 LLDP, length 82 [|LLDP] 19:47:34.319486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.319496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.319508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.319509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24ee a052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.319510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.319511 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.319512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.319513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.319521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.319522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.319524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.319525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.329440 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.329442 LLDP, length 82 [|LLDP] 19:47:34.329464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.329475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.329476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.329477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.329493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.329494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.329496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.329503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.329504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24f6 4172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.329506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.329507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.329508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.329509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.339447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.339448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.339449 LLDP, length 82 [|LLDP] 19:47:34.339479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.339489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.339501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.339502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24fd e292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.339503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.339505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.339506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.339513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.339514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.339516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.339517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.339519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.349446 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.349448 LLDP, length 82 [|LLDP] 19:47:34.349483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.349493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.349506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.349506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2505 83b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.349508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.349509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.349510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.349511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.349519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.349521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.349523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.349524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.349525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.359449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.359451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.359452 LLDP, length 82 [|LLDP] 19:47:34.359480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.359489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.359490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.359491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.359492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.359508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.359510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.359511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 250d 24d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.359513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.359514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.359515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.359516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.369442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.369443 LLDP, length 82 [|LLDP] 19:47:34.369475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.369484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.369497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.369499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2514 c5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.369500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.369501 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.369502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.369503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.369510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.369512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.369514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.369515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.369516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.379447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.379449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.379450 LLDP, length 82 [|LLDP] 19:47:34.379482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.379491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.379503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.379504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 251c 6712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.379506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.379507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.379508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.379509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.379516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.379517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.379520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.379521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.389451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.389453 LLDP, length 82 [|LLDP] 19:47:34.389481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.389492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.389505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.389506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2524 0832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.389507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.389509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.389515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.389516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.389519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.389520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.389520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.389521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.389523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.399461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.399464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.399465 LLDP, length 82 [|LLDP] 19:47:34.399494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.399503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.399516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.399517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 252b a952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.399519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.399520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.399521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.399522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.399530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.399531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.399534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.399535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.409454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.409456 LLDP, length 82 [|LLDP] 19:47:34.409485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.409495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.409496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.409497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.409515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.409516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.409519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.409526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.409527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2533 4a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.409529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.409530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.409531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.409532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.419447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.419448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.419449 LLDP, length 82 [|LLDP] 19:47:34.419474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.419483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.419496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.419497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 253a eb92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.419498 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.419499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.419500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.419507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.419508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.419510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.419511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.419513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.429438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.429440 LLDP, length 82 [|LLDP] 19:47:34.429460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.429470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.429482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.429483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2542 8cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.429484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.429485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.429486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.429487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.429494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.429495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.429498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.429499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.429500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.439442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.439444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.439445 LLDP, length 82 [|LLDP] 19:47:34.439468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.439476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.439478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.439479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.439480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.439496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.439499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.439500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 254a 2dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.439501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.439502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.439503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.439505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.449438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.449439 LLDP, length 82 [|LLDP] 19:47:34.449467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.449475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.449488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.449489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2551 cef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.449490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.449491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.449492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.449493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.449500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.449502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.449504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.449505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.449506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.459446 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.459447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.459448 LLDP, length 82 [|LLDP] 19:47:34.459471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.459479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.459491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.459492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2559 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.459493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.459494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.459495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.459496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.459503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.459504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.459506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.459507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.469437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.469439 LLDP, length 82 [|LLDP] 19:47:34.469460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.469469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.469481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.469482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2561 1132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.469484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.469485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.469491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.469492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.469494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.469496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.469497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.469498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.469499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.479469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.479471 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.479472 LLDP, length 82 [|LLDP] 19:47:34.479497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.479507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.479519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.479519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2568 b252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.479521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.479522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.479523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.479524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.479531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.479532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.479534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.479536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.489443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.489445 LLDP, length 82 [|LLDP] 19:47:34.489469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.489478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.489479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.489479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.489495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.489496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.489499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.489505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.489506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2570 5372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.489508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.489509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.489509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.489511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.499464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.499465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.499466 LLDP, length 82 [|LLDP] 19:47:34.499491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.499500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.499512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.499513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2577 f492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.499515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.499516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.499517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.499524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.499525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.499527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.499528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.499529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.509438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.509440 LLDP, length 82 [|LLDP] 19:47:34.509466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.509475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.509487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.509488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 257f 95b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.509490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.509491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.509492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.509493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.509500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.509501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.509503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.509504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.509505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.519461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.519463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.519464 LLDP, length 82 [|LLDP] 19:47:34.519490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.519498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.519499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.519500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.519501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.519518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.519521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.519522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2587 36d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.519523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.519524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.519525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.519527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.529439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.529441 LLDP, length 82 [|LLDP] 19:47:34.529462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.529470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.529482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.529483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 258e d7f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.529484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.529485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.529486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.529487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.529494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.529495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.529498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.529499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.529500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.539439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.539441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.539442 LLDP, length 82 [|LLDP] 19:47:34.539465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.539473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.539485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.539486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2596 7912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.539488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.539489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.539490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.539491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.539498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.539499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.539501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.539503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.549437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.549438 LLDP, length 82 [|LLDP] 19:47:34.549463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.549471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.549483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.549484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 259e 1a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.549485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.549486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.549492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.549493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.549495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.549496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.549497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.549498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.549499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.559472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.559474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.559475 LLDP, length 82 [|LLDP] 19:47:34.559497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.559506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.559518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.559519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25a5 bb52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.559521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.559522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.559523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.559524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.559531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.559532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.559534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.559536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.569441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.569442 LLDP, length 82 [|LLDP] 19:47:34.569463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.569472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.569473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.569474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.569489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.569490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.569492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.569498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.569499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25ad 5c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.569501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.569501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.569502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.569504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.579458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.579459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.579460 LLDP, length 82 [|LLDP] 19:47:34.579484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.579492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.579504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.579505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25b4 fd92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.579506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.579507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.579508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.579515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.579516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.579518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.579519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.579521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.589440 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.589442 LLDP, length 82 [|LLDP] 19:47:34.589464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.589472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.589484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.589485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25bc 9eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.589486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.589487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.589488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.589489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.589497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.589498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.589500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.589501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.589503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.599462 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.599464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.599465 LLDP, length 82 [|LLDP] 19:47:34.599498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.599507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.599508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.599509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.599510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.599526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.599529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.599530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25c4 3fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.599531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.599532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.599533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.599535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.609439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.609441 LLDP, length 82 [|LLDP] 19:47:34.609461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.609469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.609481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.609482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25cb e0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.609484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.609485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.609486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.609487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.609494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.609495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.609497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.609498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.609499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.619439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.619441 LLDP, length 82 [|LLDP] 19:47:34.619459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.619467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.619479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.619480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25d3 8212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.619482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.619483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.619484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.619485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.619491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.619492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.619495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.619496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.619497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.629439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.629441 LLDP, length 82 [|LLDP] 19:47:34.629467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.629476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.629489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.629489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25db 2332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.629491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.629492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.629498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.629499 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.629501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.629502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.629503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.629504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.629505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.639460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.639462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.639463 LLDP, length 82 [|LLDP] 19:47:34.639485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.639493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.639505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.639505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25e2 c452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.639507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.639508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.639509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.639510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.639518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.639519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.639521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.639523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.649439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.649441 LLDP, length 82 [|LLDP] 19:47:34.649466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.649474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.649475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.649476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.649491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.649493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.649495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.649500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.649501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25ea 6572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.649502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.649503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.649504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.649505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.659443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.659444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.659445 LLDP, length 82 [|LLDP] 19:47:34.659466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.659474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.659486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.659487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25f2 0692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.659489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.659490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.659491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.659497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.659498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.659500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.659501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.659503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.669441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.669443 LLDP, length 82 [|LLDP] 19:47:34.669461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.669469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.669481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.669482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25f9 a7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.669484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.669485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.669486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.669487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.669494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.669495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.669497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.669498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.669500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.679463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.679464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.679465 LLDP, length 82 [|LLDP] 19:47:34.679489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.679498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.679499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.679500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.679501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.679517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.679519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.679520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2601 48d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.679522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.679523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.679524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.679525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.689444 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.689445 LLDP, length 82 [|LLDP] 19:47:34.689466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.689474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.689486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.689487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2608 e9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.689488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.689489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.689491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.689492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.689499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.689500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.689502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.689503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.689504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.699456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.699457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.699459 LLDP, length 82 [|LLDP] 19:47:34.699492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.699503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.699516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.699517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2610 8b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.699519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.699520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.699521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.699522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.699530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.699531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.699533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.699535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.709450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.709453 LLDP, length 82 [|LLDP] 19:47:34.709485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.709494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.709506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.709507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2618 2c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.709509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.709510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.709516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.709517 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.709520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.709521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.709522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.709523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.709525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.719464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.719466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.719467 LLDP, length 82 [|LLDP] 19:47:34.719493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.719502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.719514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.719515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 261f cd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.719516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.719517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.719518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.719519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.719526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.719527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.719529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.719531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.729442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.729444 LLDP, length 82 [|LLDP] 19:47:34.729463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.729472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.729474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.729475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.729490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.729491 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.729493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.729499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.729500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2627 6e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.729502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.729503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.729504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.729506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.739442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.739444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.739444 LLDP, length 82 [|LLDP] 19:47:34.739475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.739484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.739496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.739497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 262f 0f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.739499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.739500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.739501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.739507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.739508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.739510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.739511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.739513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.749447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.749449 LLDP, length 82 [|LLDP] 19:47:34.749478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.749490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.749504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.749505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2636 b0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.749506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.749507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.749508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.749509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.749517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.749518 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.749521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.749522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.749523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.759485 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.759488 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.759489 LLDP, length 82 [|LLDP] 19:47:34.759525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.759536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.759537 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.759538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.759539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.759558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.759561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.759562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 263e 51d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.759563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.759564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.759565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.759566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.769461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.769463 LLDP, length 82 [|LLDP] 19:47:34.769491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.769499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.769513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.769514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2645 f2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.769516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.769517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.769518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.769519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.769527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.769528 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.769530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.769531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.769533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.779451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.779453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.779454 LLDP, length 82 [|LLDP] 19:47:34.779492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.779501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.779514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.779515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 264d 9412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.779516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.779517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.779518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.779519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.779527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.779529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.779531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.779532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.789447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.789449 LLDP, length 82 [|LLDP] 19:47:34.789475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.789485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.789497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.789498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2655 3532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.789500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.789501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.789507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.789508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.789510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.789511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.789512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.789513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.789514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.799468 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.799469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.799471 LLDP, length 82 [|LLDP] 19:47:34.799498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.799506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.799519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.799520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 265c d652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.799521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.799522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.799523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.799524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.799532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.799533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.799536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.799537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.809452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.809454 LLDP, length 82 [|LLDP] 19:47:34.809478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.809486 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.809487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.809488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.809505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.809506 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.809508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.809515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.809516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2664 7772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.809518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.809533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.809535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.809537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.819503 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.819505 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.819507 LLDP, length 82 [|LLDP] 19:47:34.819543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.819555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.819569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.819570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 266c 1892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.819572 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.819573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.819574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.819583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.819584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.819587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.819588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.819589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.829462 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.829470 LLDP, length 82 [|LLDP] 19:47:34.829504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.829513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.829526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.829527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2673 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.829529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.829530 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.829531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.829532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.829541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.829542 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.829544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.829545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.829547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.839476 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.839478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.839489 LLDP, length 82 [|LLDP] 19:47:34.839518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.839528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.839529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.839530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.839531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.839548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.839551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.839551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 267b 5ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.839553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.839554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.839555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.839557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.849449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.849451 LLDP, length 82 [|LLDP] 19:47:34.849480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.849489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.849501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.849502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2682 fbf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.849504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.849505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.849506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.849507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.849515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.849516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.849518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.849519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.849520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.859470 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.859472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.859472 LLDP, length 82 [|LLDP] 19:47:34.859510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.859519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.859533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.859534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 268a 9d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.859535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.859537 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.859538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.859539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.859547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.859547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.859550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.859551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.869453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.869455 LLDP, length 82 [|LLDP] 19:47:34.869479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.869487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.869500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.869501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2692 3e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.869502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.869503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.869510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.869511 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.869513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.869514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.869515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.869516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.869518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.879473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.879475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.879476 LLDP, length 82 [|LLDP] 19:47:34.879502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.879511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.879524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.879525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2699 df52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.879527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.879528 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.879529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.879530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.879537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.879538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.879540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.879542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.889451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.889453 LLDP, length 82 [|LLDP] 19:47:34.889484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.889493 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.889494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.889495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.889511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.889512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.889514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.889521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.889523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26a1 8072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.889524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.889525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.889526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.889527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.899453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.899455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.899456 LLDP, length 82 [|LLDP] 19:47:34.899484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.899493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.899506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.899507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26a9 2192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.899509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.899510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.899511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.899518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.899519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.899521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.899522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.899524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.909449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.909452 LLDP, length 82 [|LLDP] 19:47:34.909477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.909485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.909497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.909498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26b0 c2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.909500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.909501 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.909502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.909503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.909511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.909512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.909514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.909515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.909516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.919450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.919452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.919453 LLDP, length 82 [|LLDP] 19:47:34.919479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.919488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.919489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.919490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.919491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.919508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.919510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.919511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26b8 63d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.919513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.919514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.919515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.919516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.929449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.929451 LLDP, length 82 [|LLDP] 19:47:34.929474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.929482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.929494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.929495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26c0 04f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.929497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.929498 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.929499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.929500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.929507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.929509 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.929511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.929512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.929514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.939449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.939451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.939452 LLDP, length 82 [|LLDP] 19:47:34.939478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.939488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.939500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.939500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26c7 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.939502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.939503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.939505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.939506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.939513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.939514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.939516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.939517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.949447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.949449 LLDP, length 82 [|LLDP] 19:47:34.949472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.949479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.949492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.949493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26cf 4732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.949494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.949496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.949502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.949503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.949506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.949507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.949508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.949509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.949510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.959451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.959453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.959454 LLDP, length 82 [|LLDP] 19:47:34.959488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.959497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.959509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.959511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26d6 e852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.959512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.959513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.959514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.959515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.959523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.959524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.959526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.959528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.969448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.969449 LLDP, length 82 [|LLDP] 19:47:34.969480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.969488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.969488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.969489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.969506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.969507 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.969509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.969516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.969517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26de 8972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.969519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.969520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.969521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.969522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.979452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.979454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.979455 LLDP, length 82 [|LLDP] 19:47:34.979481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.979489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.979501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.979502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26e6 2a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.979504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.979505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.979506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.979513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.979514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.979516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.979518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.979519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.989451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.989452 LLDP, length 82 [|LLDP] 19:47:34.989485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.989494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.989507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.989508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26ed cbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.989509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.989510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.989511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.989512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.989520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.989521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.989524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.989525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.989527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.999473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.999475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.999476 LLDP, length 82 [|LLDP] 19:47:34.999505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.999513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.999514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.999515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.999516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.999533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.999536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.999537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26f5 6cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.999538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.999539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.999540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.999542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.009453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.009455 LLDP, length 82 [|LLDP] 19:47:35.009480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.009488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.009501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.009502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26fd 0df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.009503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.009505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.009505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.009507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.009515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.009516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.009519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.009520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.009521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.019458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.019459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.019460 LLDP, length 82 [|LLDP] 19:47:35.019487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.019496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.019508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.019509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2704 af12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.019511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.019512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.019513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.019514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.019521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.019522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.019524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.019526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.029453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.029455 LLDP, length 82 [|LLDP] 19:47:35.029488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.029496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.029509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.029509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 270c 5032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.029511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.029512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.029518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.029519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.029521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.029522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.029524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.029525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.029526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.039452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.039453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.039454 LLDP, length 82 [|LLDP] 19:47:35.039481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.039490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.039502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.039503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2713 f152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.039505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.039506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.039507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.039508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.039516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.039517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.039519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.039520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.049450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.049451 LLDP, length 82 [|LLDP] 19:47:35.049483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.049492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.049492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.049493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.049509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.049511 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.049513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.049519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.049520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 271b 9272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.049522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.049523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.049524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.049525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.059449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.059451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.059452 LLDP, length 82 [|LLDP] 19:47:35.059484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.059492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.059505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.059506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2723 3392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.059507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.059508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.059509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.059516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.059517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.059519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.059520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.059521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.069453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.069454 LLDP, length 82 [|LLDP] 19:47:35.069486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.069494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.069507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.069507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 272a d4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.069509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.069510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.069511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.069512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.069520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.069521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.069523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.069524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.069525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.079449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.079451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.079452 LLDP, length 82 [|LLDP] 19:47:35.079480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.079490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.079491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.079492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.079493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.079510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.079513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.079514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2732 75d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.079515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.079516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.079517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.079518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.089452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.089453 LLDP, length 82 [|LLDP] 19:47:35.089479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.089487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.089500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.089501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 273a 16f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.089503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.089504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.089505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.089506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.089514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.089515 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.089517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.089518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.089519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.099455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.099457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.099458 LLDP, length 82 [|LLDP] 19:47:35.099490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.099499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.099512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.099513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2741 b812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.099515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.099516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.099517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.099518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.099525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.099526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.099529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.099530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.109454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.109456 LLDP, length 82 [|LLDP] 19:47:35.109482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.109490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.109503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.109504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2749 5932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.109506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.109507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.109513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.109514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.109516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.109518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.109519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.109520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.109521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.119461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.119470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.119471 LLDP, length 82 [|LLDP] 19:47:35.119510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.119519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.119532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.119533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2750 fa52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.119535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.119536 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.119537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.119538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.119547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.119548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.119550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.119552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.129462 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.129464 LLDP, length 82 [|LLDP] 19:47:35.129498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.129509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.129510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.129511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.129528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.129529 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.129531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.129539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.129540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2758 9b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.129541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.129542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.129543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.129545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.139455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.139457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.139458 LLDP, length 82 [|LLDP] 19:47:35.139485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.139494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.139506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.139507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2760 3c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.139509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.139510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.139511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.139518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.139519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.139521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.139522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.139523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.149461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.149463 LLDP, length 82 [|LLDP] 19:47:35.149506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.149515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.149528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.149529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2767 ddb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.149531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.149532 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.149533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.149534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.149543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.149544 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.149546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.149547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.149548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.159473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.159475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.159476 LLDP, length 82 [|LLDP] 19:47:35.159511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.159522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.159523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.159524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.159525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.159543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.159546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.159547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 276f 7ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.159548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.159549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.159551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.159552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.169455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.169457 LLDP, length 82 [|LLDP] 19:47:35.169487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.169495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.169508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.169509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2777 1ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.169511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.169512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.169513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.169514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.169521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.169522 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.169524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.169525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.169527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.179459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.179461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.179462 LLDP, length 82 [|LLDP] 19:47:35.179497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.179506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.179518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.179519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 277e c112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.179521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.179522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.179523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.179524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.179532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.179533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.179535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.179537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.189469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.189472 LLDP, length 82 [|LLDP] 19:47:35.189505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.189515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.189529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.189530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2786 6232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.189532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.189533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.189540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.189541 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.189544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.189545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.189546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.189547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.189548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.199460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.199462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.199463 LLDP, length 82 [|LLDP] 19:47:35.199492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.199501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.199514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.199514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 278e 0352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.199516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.199517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.199518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.199519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.199527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.199528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.199531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.199532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.209455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.209457 LLDP, length 82 [|LLDP] 19:47:35.209480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.209488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.209489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.209490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.209506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.209508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.209510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.209517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.209518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2795 a472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.209519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.209520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.209521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.209523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.219472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.219475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.219482 LLDP, length 82 [|LLDP] 19:47:35.219523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.219533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.219546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.219547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 279d 4592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.219549 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.219550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.219551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.219559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.219560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.219563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.219564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.219566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.229463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.229465 LLDP, length 82 [|LLDP] 19:47:35.229498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.229506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.229519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.229520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27a4 e6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.229521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.229522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.229523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.229524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.229532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.229533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.229535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.229536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.229537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.239456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.239457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.239458 LLDP, length 82 [|LLDP] 19:47:35.239486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.239496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.239497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.239498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.239499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.239516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.239519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.239520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27ac 87d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.239521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.239522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.239524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.239525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.249471 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.249473 LLDP, length 82 [|LLDP] 19:47:35.249515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.249526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.249540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.249541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27b4 28f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.249542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.249543 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.249544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.249546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.249554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.249555 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.249558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.249559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.249560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.259481 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.259483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.259484 LLDP, length 82 [|LLDP] 19:47:35.259530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.259541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.259555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.259556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27bb ca12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.259557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.259559 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.259560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.259561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.259570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.259571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.259573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.259575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.269458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.269460 LLDP, length 82 [|LLDP] 19:47:35.269489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.269497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.269509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.269510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27c3 6b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.269512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.269513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.269520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.269521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.269523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.269524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.269525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.269526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.269528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.279458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.279460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.279461 LLDP, length 82 [|LLDP] 19:47:35.279496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.279505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.279518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.279519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27cb 0c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.279520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.279522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.279523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.279524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.279531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.279532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.279534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.279536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.289455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.289457 LLDP, length 82 [|LLDP] 19:47:35.289480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.289489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.289490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.289491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.289507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.289508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.289510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.289517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.289518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27d2 ad72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.289519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.289520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.289522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.289523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.299455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.299457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.299458 LLDP, length 82 [|LLDP] 19:47:35.299487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.299497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.299510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.299511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27da 4e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.299513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.299514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.299515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.299522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.299523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.299525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.299526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.299528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.309454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.309456 LLDP, length 82 [|LLDP] 19:47:35.309480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.309488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.309500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.309501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27e1 efb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.309503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.309504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.309505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.309506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.309513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.309514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.309516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.309517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.309519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.319459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.319460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.319461 LLDP, length 82 [|LLDP] 19:47:35.319498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.319506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.319507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.319508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.319509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.319526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.319529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.319530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27e9 90d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.319531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.319532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.319533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.319534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.329455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.329457 LLDP, length 82 [|LLDP] 19:47:35.329481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.329489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.329502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.329503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27f1 31f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.329504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.329505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.329506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.329507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.329514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.329516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.329518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.329519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.329521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.339452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.339454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.339455 LLDP, length 82 [|LLDP] 19:47:35.339483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.339492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.339506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.339507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27f8 d312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.339508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.339509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.339510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.339512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.339519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.339520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.339522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.339524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.349456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.349457 LLDP, length 82 [|LLDP] 19:47:35.349487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.349496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.349508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.349509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2800 7432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.349511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.349512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.349519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.349520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.349522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.349523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.349524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.349525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.349527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.359457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.359459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.359460 LLDP, length 82 [|LLDP] 19:47:35.359494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.359503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.359515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.359516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2808 1552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.359517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.359519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.359520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.359521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.359528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.359530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.359532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.359533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.369455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.369457 LLDP, length 82 [|LLDP] 19:47:35.369482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.369490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.369490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.369491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.369508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.369509 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.369511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.369518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.369519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 280f b672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.369520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.369521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.369522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.369523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.379456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.379458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.379459 LLDP, length 82 [|LLDP] 19:47:35.379485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.379493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.379505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.379506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2817 5792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.379508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.379509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.379510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.379517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.379518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.379520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.379521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.379522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.389455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.389457 LLDP, length 82 [|LLDP] 19:47:35.389479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.389488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.389500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.389501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 281e f8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.389503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.389504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.389505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.389506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.389513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.389514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.389516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.389517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.389519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.399454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.399456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.399457 LLDP, length 82 [|LLDP] 19:47:35.399489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.399498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.399499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.399500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.399501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.399519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.399521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.399522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2826 99d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.399523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.399525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.399526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.399527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.409463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.409465 LLDP, length 82 [|LLDP] 19:47:35.409494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.409504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.409518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.409518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 282e 3af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.409520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.409521 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.409522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.409523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.409530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.409532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.409534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.409535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.409536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.419459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.419460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.419462 LLDP, length 82 [|LLDP] 19:47:35.419490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.419498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.419511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.419512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2835 dc12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.419513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.419515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.419516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.419517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.419525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.419526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.419528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.419529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.429460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.429462 LLDP, length 82 [|LLDP] 19:47:35.429488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.429496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.429509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.429510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 283d 7d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.429511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.429512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.429519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.429520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.429522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.429523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.429524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.429525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.429526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.439458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.439460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.439461 LLDP, length 82 [|LLDP] 19:47:35.439494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.439503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.439515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.439516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2845 1e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.439518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.439519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.439520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.439521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.439528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.439529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.439531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.439533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.449456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.449457 LLDP, length 82 [|LLDP] 19:47:35.449488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.449496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.449497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.449498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.449515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.449516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.449518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.449525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.449526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 284c bf72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.449527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.449528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.449529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.449531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.459458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.459460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.459461 LLDP, length 82 [|LLDP] 19:47:35.459496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.459504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.459517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.459518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2854 6092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.459519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.459520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.459521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.459529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.459530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.459532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.459533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.459534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.469456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.469458 LLDP, length 82 [|LLDP] 19:47:35.469488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.469496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.469509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.469509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 285c 01b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.469511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.469512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.469513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.469514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.469522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.469523 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.469525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.469526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.469527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.479457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.479459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.479460 LLDP, length 82 [|LLDP] 19:47:35.479487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.479496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.479497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.479498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.479499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.479516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.479518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.479519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2863 a2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.479520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.479522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.479523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.479524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.489459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.489461 LLDP, length 82 [|LLDP] 19:47:35.489486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.489494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.489506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.489507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 286b 43f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.489509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.489510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.489511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.489512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.489519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.489521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.489523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.489524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.489525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.499456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.499458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.499459 LLDP, length 82 [|LLDP] 19:47:35.499492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.499500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.499512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.499513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2872 e512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.499515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.499516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.499517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.499518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.499525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.499526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.499528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.499530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.509458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.509460 LLDP, length 82 [|LLDP] 19:47:35.509484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.509492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.509505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.509506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 287a 8632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.509507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.509508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.509515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.509516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.509518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.509519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.509520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.509521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.509522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.519458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.519460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.519461 LLDP, length 82 [|LLDP] 19:47:35.519488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.519497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.519509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.519510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2882 2752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.519512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.519513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.519514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.519515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.519522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.519523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.519526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.519527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.529459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.529460 LLDP, length 82 [|LLDP] 19:47:35.529486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.529494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.529495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.529496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.529513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.529514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.529516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.529522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.529523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2889 c872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.529525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.529526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.529527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.529528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.539460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.539462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.539463 LLDP, length 82 [|LLDP] 19:47:35.539489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.539498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.539510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.539511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2891 6992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.539513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.539514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.539515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.539521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.539522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.539525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.539526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.539527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.549459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.549461 LLDP, length 82 [|LLDP] 19:47:35.549485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.549493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.549506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.549507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2899 0ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.549508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.549509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.549511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.549512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.549519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.549520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.549522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.549523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.549525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.559458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.559459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.559460 LLDP, length 82 [|LLDP] 19:47:35.559487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.559495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.559496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.559497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.559498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.559515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.559518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.559519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28a0 abd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.559521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.559522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.559523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.559524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.569455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.569456 LLDP, length 82 [|LLDP] 19:47:35.569486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.569495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.569507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.569508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28a8 4cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.569509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.569510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.569511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.569512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.569519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.569521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.569523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.569524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.569526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.579457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.579459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.579460 LLDP, length 82 [|LLDP] 19:47:35.579493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.579502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.579515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.579516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28af ee12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.579517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.579518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.579519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.579520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.579527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.579528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.579530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.579531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.589457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.589459 LLDP, length 82 [|LLDP] 19:47:35.589482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.589490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.589503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.589504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28b7 8f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.589505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.589506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.589512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.589513 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.589516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.589517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.589518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.589519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.589520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.599464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.599466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.599467 LLDP, length 82 [|LLDP] 19:47:35.599493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.599501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.599513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.599514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28bf 3052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.599516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.599517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.599518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.599519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.599526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.599527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.599529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.599531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.609458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.609460 LLDP, length 82 [|LLDP] 19:47:35.609484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.609492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.609493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.609494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.609510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.609512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.609514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.609520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.609521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28c6 d172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.609523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.609524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.609525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.609527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.619464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.619466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.619467 LLDP, length 82 [|LLDP] 19:47:35.619493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.619502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.619514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.619516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28ce 7292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.619517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.619518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.619519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.619527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.619527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.619530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.619531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.619533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.629459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.629461 LLDP, length 82 [|LLDP] 19:47:35.629485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.629493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.629505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.629506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28d6 13b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.629508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.629509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.629510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.629511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.629518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.629519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.629521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.629522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.629524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.639459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.639461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.639462 LLDP, length 82 [|LLDP] 19:47:35.639497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.639507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.639508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.639509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.639510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.639527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.639529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.639531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28dd b4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.639532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.639533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.639534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.639535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.649459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.649460 LLDP, length 82 [|LLDP] 19:47:35.649489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.649498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.649510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.649511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28e5 55f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.649513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.649514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.649515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.649516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.649523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.649524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.649527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.649528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.649529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.659467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.659469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.659470 LLDP, length 82 [|LLDP] 19:47:35.659496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.659506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.659519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.659520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28ec f712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.659522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.659523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.659524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.659525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.659532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.659533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.659536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.659538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.669461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.669463 LLDP, length 82 [|LLDP] 19:47:35.669494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.669502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.669514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.669515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28f4 9832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.669517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.669518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.669524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.669525 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.669527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.669528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.669529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.669530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.669547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.679493 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.679501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.679502 LLDP, length 82 [|LLDP] 19:47:35.679539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.679552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.679567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.679568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28fc 3952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.679570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.679571 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.679572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.679573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.679582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.679583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.679586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.679587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.689467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.689475 LLDP, length 82 [|LLDP] 19:47:35.689509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.689519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.689520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.689521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.689538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.689539 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.689541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.689548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.689549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2903 da72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.689551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.689552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.689553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.689555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.699464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.699466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.699473 LLDP, length 82 [|LLDP] 19:47:35.699502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.699511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.699524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.699525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 290b 7b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.699526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.699527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.699528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.699535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.699536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.699539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.699540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.699541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.709465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.709467 LLDP, length 82 [|LLDP] 19:47:35.709493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.709502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.709514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.709515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2913 1cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.709517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.709518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.709519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.709520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.709528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.709529 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.709531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.709532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.709534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.719464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.719466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.719467 LLDP, length 82 [|LLDP] 19:47:35.719495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.719505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.719506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.719507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.719508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.719526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.719529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.719530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 291a bdd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.719531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.719532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.719533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.719534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.729463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.729465 LLDP, length 82 [|LLDP] 19:47:35.729497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.729506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.729518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.729520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2922 5ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.729521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.729522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.729523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.729524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.729532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.729533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.729535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.729536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.729538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.739463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.739466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.739467 LLDP, length 82 [|LLDP] 19:47:35.739502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.739510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.739523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.739524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 292a 0012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.739525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.739526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.739527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.739528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.739536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.739537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.739540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.739541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.749464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.749467 LLDP, length 82 [|LLDP] 19:47:35.749498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.749507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.749519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.749520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2931 a132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.749522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.749523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.749529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.749530 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.749533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.749534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.749535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.749536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.749537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.759464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.759466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.759467 LLDP, length 82 [|LLDP] 19:47:35.759500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.759509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.759522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.759523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2939 4252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.759524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.759526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.759527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.759528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.759535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.759536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.759539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.759540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.769464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.769466 LLDP, length 82 [|LLDP] 19:47:35.769499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.769507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.769508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.769509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.769525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.769526 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.769528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.769535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.769536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2940 e372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.769537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.769538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.769539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.769541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.779482 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.779484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.779485 LLDP, length 82 [|LLDP] 19:47:35.779523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.779534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.779548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.779549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2948 8492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.779551 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.779552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.779553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.779561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.779562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.779565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.779566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.779567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.789464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.789466 LLDP, length 82 [|LLDP] 19:47:35.789498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.789508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.789521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.789522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2950 25b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.789523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.789525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.789526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.789527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.789535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.789536 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.789538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.789539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.789541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.799464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.799466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.799467 LLDP, length 82 [|LLDP] 19:47:35.799501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.799509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.799510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.799511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.799512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.799530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.799532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.799533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2957 c6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.799535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.799536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.799537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.799538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.809463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.809465 LLDP, length 82 [|LLDP] 19:47:35.809489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.809497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.809509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.809510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 295f 67f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.809512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.809513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.809514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.809515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.809522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.809524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.809526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.809527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.809528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.819465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.819467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.819468 LLDP, length 82 [|LLDP] 19:47:35.819503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.819512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.819525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.819526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2967 0912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.819527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.819528 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.819529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.819530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.819538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.819539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.819541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.819542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.829465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.829467 LLDP, length 82 [|LLDP] 19:47:35.829492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.829501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.829513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.829514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 296e aa32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.829516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.829517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.829523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.829524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.829527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.829528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.829529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.829530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.829531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.839465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.839467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.839468 LLDP, length 82 [|LLDP] 19:47:35.839505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.839513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.839525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.839526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2976 4b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.839528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.839529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.839530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.839531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.839539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.839540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.839542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.839543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.849465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.849468 LLDP, length 82 [|LLDP] 19:47:35.849501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.849509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.849510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.849511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.849528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.849529 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.849531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.849538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.849539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 297d ec72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.849540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.849541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.849542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.849544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.859464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.859466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.859467 LLDP, length 82 [|LLDP] 19:47:35.859495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.859505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.859517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.859518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2985 8d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.859519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.859520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.859522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.859528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.859530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.859532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.859533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.859535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.869463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.869465 LLDP, length 82 [|LLDP] 19:47:35.869488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.869497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.869510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.869511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 298d 2eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.869512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.869513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.869514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.869515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.869523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.869524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.869526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.869527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.869529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.879464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.879466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.879467 LLDP, length 82 [|LLDP] 19:47:35.879494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.879502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.879503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.879504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.879506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.879522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.879525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.879526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2994 cfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.879527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.879529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.879530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.879531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.889464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.889466 LLDP, length 82 [|LLDP] 19:47:35.889489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.889497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.889509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.889510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 299c 70f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.889512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.889513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.889514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.889515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.889522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.889523 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.889525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.889526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.889528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.899464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.899466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.899467 LLDP, length 82 [|LLDP] 19:47:35.899493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.899500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.899512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.899513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29a4 1212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.899515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.899516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.899517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.899518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.899525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.899527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.899529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.899530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.909463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.909465 LLDP, length 82 [|LLDP] 19:47:35.909488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.909496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.909508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.909509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ab b332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.909511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.909512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.909518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.909519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.909522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.909523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.909524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.909525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.909526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.919463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.919465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.919466 LLDP, length 82 [|LLDP] 19:47:35.919494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.919503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.919517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.919518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29b3 5452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.919519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.919520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.919521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.919522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.919529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.919530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.919533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.919534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.929464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.929466 LLDP, length 82 [|LLDP] 19:47:35.929489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.929498 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.929499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.929500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.929516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.929517 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.929520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.929526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.929527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ba f572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.929528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.929529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.929530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.929532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.939465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.939467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.939468 LLDP, length 82 [|LLDP] 19:47:35.939502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.939511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.939523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.939524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29c2 9692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.939526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.939527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.939528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.939535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.939536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.939538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.939539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.939541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.949465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.949467 LLDP, length 82 [|LLDP] 19:47:35.949499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.949507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.949519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.949520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ca 37b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.949522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.949523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.949524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.949525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.949532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.949533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.949535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.949536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.949538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.959464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.959466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.959467 LLDP, length 82 [|LLDP] 19:47:35.959495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.959503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.959504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.959505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.959506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.959523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.959526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.959527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29d1 d8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.959528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.959529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.959530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.959532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.969463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.969465 LLDP, length 82 [|LLDP] 19:47:35.969490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.969498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.969510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.969511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29d9 79f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.969512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.969514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.969515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.969516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.969523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.969524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.969527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.969528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.969529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.979465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.979467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.979468 LLDP, length 82 [|LLDP] 19:47:35.979501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.979510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.979523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.979524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29e1 1b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.979525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.979526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.979527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.979528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.979535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.979536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.979538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.979540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.989466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.989468 LLDP, length 82 [|LLDP] 19:47:35.989491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.989500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.989512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.989513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29e8 bc32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.989515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.989516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.989522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.989524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.989526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.989527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.989528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.989529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.989531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.999465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.999467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.999468 LLDP, length 82 [|LLDP] 19:47:35.999501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.999509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.999521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.999522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29f0 5d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.999524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.999525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.999526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.999527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.999534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.999535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.999537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.999538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.009467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.009469 LLDP, length 82 [|LLDP] 19:47:36.009492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.009500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.009501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.009502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.009518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.009519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.009521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.009527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.009528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29f7 fe72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.009530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.009531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.009532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.009533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.019465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.019467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.019468 LLDP, length 82 [|LLDP] 19:47:36.019493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.019501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.019513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.019515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ff 9f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.019516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.019517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.019518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.019525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.019526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.019528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.019529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.019531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.029467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.029469 LLDP, length 82 [|LLDP] 19:47:36.029496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.029504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.029517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.029518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a07 40b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.029520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.029521 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.029522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.029523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.029531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.029532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.029534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.029535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.029536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.039468 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.039470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.039471 LLDP, length 82 [|LLDP] 19:47:36.039505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.039513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.039515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.039516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.039517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.039534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.039536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.039537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a0e e1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.039539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.039540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.039541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.039542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.049469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.049471 LLDP, length 82 [|LLDP] 19:47:36.049495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.049503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.049515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.049516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a16 82f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.049518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.049519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.049520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.049521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.049529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.049530 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.049532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.049533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.049535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.059467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.059469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.059470 LLDP, length 82 [|LLDP] 19:47:36.059497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.059505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.059518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.059519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a1e 2412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.059520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.059521 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.059522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.059523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.059530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.059531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.059533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.059535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.069466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.069468 LLDP, length 82 [|LLDP] 19:47:36.069491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.069499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.069512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.069512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a25 c532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.069514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.069515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.069522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.069522 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.069525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.069526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.069527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.069528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.069529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.079464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.079466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.079467 LLDP, length 82 [|LLDP] 19:47:36.079494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.079502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.079515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.079516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a2d 6652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.079518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.079519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.079519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.079521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.079528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.079529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.079532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.079533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.089467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.089468 LLDP, length 82 [|LLDP] 19:47:36.089493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.089500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.089502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.089503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.089518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.089519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.089522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.089528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.089529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a35 0772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.089530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.089531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.089532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.089534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.099467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.099469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.099470 LLDP, length 82 [|LLDP] 19:47:36.099505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.099514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.099527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.099528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a3c a892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.099529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.099530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.099531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.099538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.099539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.099541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.099542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.099544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.109470 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.109472 LLDP, length 82 [|LLDP] 19:47:36.109496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.109504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.109517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.109518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a44 49b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.109519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.109520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.109521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.109522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.109529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.109531 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.109533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.109534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.109535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.119467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.119469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.119469 LLDP, length 82 [|LLDP] 19:47:36.119495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.119503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.119505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.119506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.119507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.119524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.119526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.119527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a4b ead2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.119528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.119529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.119530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.119532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.129468 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.129469 LLDP, length 82 [|LLDP] 19:47:36.129502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.129510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.129522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.129523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a53 8bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.129525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.129526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.129527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.129528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.129536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.129537 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.129539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.129540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.129542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.139466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.139468 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.139469 LLDP, length 82 [|LLDP] 19:47:36.139502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.139510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.139522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.139523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a5b 2d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.139524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.139525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.139527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.139528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.139536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.139537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.139539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.139540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.149483 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.149485 LLDP, length 82 [|LLDP] 19:47:36.149519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.149532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.149547 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.149548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a62 ce32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.149550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.149551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.149558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.149560 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.149562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.149563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.149564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.149565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.149567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.159496 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.159498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.159499 LLDP, length 82 [|LLDP] 19:47:36.159546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.159559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.159573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.159574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a6a 6f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.159575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.159576 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.159577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.159578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.159588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.159589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.159592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.159593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.169487 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.169489 LLDP, length 82 [|LLDP] 19:47:36.169526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.169538 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.169539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.169540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.169557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.169558 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.169560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.169568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.169569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a72 1072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.169570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.169572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.169572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.169574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.179476 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.179478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.179479 LLDP, length 82 [|LLDP] 19:47:36.179516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.179526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.179538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.179539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a79 b192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.179541 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.179542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.179543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.179551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.179552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.179554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.179555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.179557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.189472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.189473 LLDP, length 82 [|LLDP] 19:47:36.189506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.189517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.189530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.189531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a81 52b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.189532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.189533 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.189534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.189535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.189543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.189545 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.189547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.189548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.189549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.199470 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.199472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.199473 LLDP, length 82 [|LLDP] 19:47:36.199500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.199509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.199510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.199511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.199512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.199528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.199530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.199531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a88 f3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.199533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.199534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.199535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.199536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.209524 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.209527 LLDP, length 82 [|LLDP] 19:47:36.209586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.209605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.209620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.209621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a90 94f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.209622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.209623 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.209625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.209626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.209638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.209639 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.209642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.209643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.209644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.219517 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.219520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.219521 LLDP, length 82 [|LLDP] 19:47:36.219583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.219597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.219613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.219614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a98 3612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.219615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.219617 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.219618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.219619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.219630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.219631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.219634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.219636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.229504 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.229507 LLDP, length 82 [|LLDP] 19:47:36.229561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.229574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.229589 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.229590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a9f d732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.229592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.229593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.229602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.229603 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.229606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.229607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.229608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.229609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.229611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.239524 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.239526 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.239527 LLDP, length 82 [|LLDP] 19:47:36.239596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.239611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.239626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.239627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2aa7 7852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.239629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.239630 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.239632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.239633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.239644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.239645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.239649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.239650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.249528 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.249531 LLDP, length 82 [|LLDP] 19:47:36.249592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.249606 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.249607 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.249609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.249628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.249629 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.249632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.249643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.249644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2aaf 1972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.249645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.249647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.249648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.249649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.259525 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.259527 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.259528 LLDP, length 82 [|LLDP] 19:47:36.259603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.259616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.259631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.259633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ab6 ba92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.259634 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.259635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.259637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.259647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.259648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.259651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.259652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.259654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.269526 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.269529 LLDP, length 82 [|LLDP] 19:47:36.269586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.269599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.269614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.269615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2abe 5bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.269617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.269618 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.269619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.269620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.269630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.269631 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.269634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.269635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.269636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.279518 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.279521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.279522 LLDP, length 82 [|LLDP] 19:47:36.279581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.279596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.279597 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.279599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.279600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.279622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.279625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.279626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ac5 fcd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.279627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.279629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.279630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.279632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.289495 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.289498 LLDP, length 82 [|LLDP] 19:47:36.289537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.289549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.289563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.289564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2acd 9df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.289565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.289567 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.289568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.289569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.289578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.289579 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.289581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.289582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.289584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.299502 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.299505 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.299506 LLDP, length 82 [|LLDP] 19:47:36.299555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.299568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.299582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.299584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ad5 3f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.299585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.299586 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.299587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.299588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.299597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.299598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.299601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.299602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.309494 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.309496 LLDP, length 82 [|LLDP] 19:47:36.309531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.309545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.309558 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.309559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2adc e032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.309561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.309562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.309569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.309570 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.309573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.309574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.309575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.309576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.309577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.319500 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.319502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.319504 LLDP, length 82 [|LLDP] 19:47:36.319551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.319565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.319578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.319579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ae4 8152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.319581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.319582 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.319583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.319584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.319594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.319595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.319598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.319599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15196 packets captured 15211 packets received by filter 0 packets dropped by kernel 3 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 19:47:26.199358 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.199361 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.199362 LLDP, length 82 [|LLDP] 19:47:26.199431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.199443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.199444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.199445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.199446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.199467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.199470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.199471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cbb 8ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.199473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.199474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.199475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.199476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.209365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.209367 LLDP, length 82 [|LLDP] 19:47:26.209423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.209440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.209455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.209456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cc3 2ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.209458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.209458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.209459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.209461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.209472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.209473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.209476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.209477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.209479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.219368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.219371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.219372 LLDP, length 82 [|LLDP] 19:47:26.219461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.219476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.219491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.219493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cca d112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.219494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.219495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.219496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.219498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.219509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.219510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.219513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.219514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.229364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.229366 LLDP, length 82 [|LLDP] 19:47:26.229422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.229437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.229452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.229453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cd2 7232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.229455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.229456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.229466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.229467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.229470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.229471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.229472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.229473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.229474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.239369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.239372 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.239373 LLDP, length 82 [|LLDP] 19:47:26.239454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.239469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.239485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.239486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cda 1352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.239488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.239489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.239490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.239491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.239502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.239503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.239506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.239507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.249369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.249371 LLDP, length 82 [|LLDP] 19:47:26.249429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.249443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.249444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.249445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.249466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.249467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.249470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.249480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.249481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ce1 b472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.249483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.249484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.249485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.249487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.259365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.259368 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.259369 LLDP, length 82 [|LLDP] 19:47:26.259451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.259464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.259480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.259481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ce9 5592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.259482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.259483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.259485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.259495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.259496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.259499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.259500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.259502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.269371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.269373 LLDP, length 82 [|LLDP] 19:47:26.269432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.269447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.269462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.269463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cf0 f6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.269465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.269466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.269467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.269468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.269479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.269480 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.269483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.269484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.269486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.279364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.279367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.279369 LLDP, length 82 [|LLDP] 19:47:26.279454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.279468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.279469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.279470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.279471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.279494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.279497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.279498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0cf8 97d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.279500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.279501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.279502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.279503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.286763 LLDP, length 226: localhost 19:47:26.289316 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.289318 LLDP, length 82 [|LLDP] 19:47:26.289346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.289357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.289370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.289371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d00 38f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.289372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.289373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.289374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.289375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.289383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.289384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.289386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.289387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.289389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.299327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.299330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.299331 LLDP, length 82 [|LLDP] 19:47:26.299361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.299373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.299398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.299399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d07 da12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.299400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.299401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.299402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.299403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.299411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.299412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.299415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.299416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.309317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.309320 LLDP, length 82 [|LLDP] 19:47:26.309345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.309356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.309368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.309369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d0f 7b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.309371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.309372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.309378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.309379 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.309381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.309382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.309383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.309384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.309385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.319315 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.319317 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.319319 LLDP, length 82 [|LLDP] 19:47:26.319346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.319356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.319368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.319369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d17 1c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.319371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.319372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.319373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.319374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.319381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.319382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.319384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.319395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.329324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.329326 LLDP, length 82 [|LLDP] 19:47:26.329353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.329363 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.329365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.329365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.329382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.329383 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.329385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.329393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.329394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d1e bd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.329395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.329397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.329397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.329399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.339313 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.339315 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.339316 LLDP, length 82 [|LLDP] 19:47:26.339342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.339351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.339363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.339364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d26 5e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.339366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.339367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.339368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.339375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.339376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.339378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.339379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.339381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.349315 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.349316 LLDP, length 82 [|LLDP] 19:47:26.349346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.349355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.349368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.349369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d2d ffb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.349370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.349372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.349372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.349373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.349381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.349382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.349384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.349385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.349386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.359315 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.359317 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.359318 LLDP, length 82 [|LLDP] 19:47:26.359343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.359352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.359353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.359354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.359354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.359372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.359374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.359376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d35 a0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.359377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.359378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.359379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.359381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.369314 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.369316 LLDP, length 82 [|LLDP] 19:47:26.369343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.369351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.369364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.369365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d3d 41f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.369366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.369367 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.369368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.369369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.369377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.369378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.369380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.369381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.369382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.379312 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.379314 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.379315 LLDP, length 82 [|LLDP] 19:47:26.379344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.379353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.379365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.379366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d44 e312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.379367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.379368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.379369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.379371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.379378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.379379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.379381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.379382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.389310 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.389311 LLDP, length 82 [|LLDP] 19:47:26.389332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.389340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.389352 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.389353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d4c 8432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.389355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.389356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.389362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.389363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.389365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.389366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.389367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.389368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.389370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.399310 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.399312 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.399313 LLDP, length 82 [|LLDP] 19:47:26.399334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.399343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.399355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.399356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d54 2552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.399358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.399359 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.399360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.399361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.399368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.399369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.399371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.399373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.409318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.409319 LLDP, length 82 [|LLDP] 19:47:26.409347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.409356 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.409358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.409359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.409376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.409377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.409379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.409386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.409387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d5b c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.409388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.409389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.409390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.409392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.419317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.419319 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.419320 LLDP, length 82 [|LLDP] 19:47:26.419344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.419352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.419365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.419366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d63 6792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.419367 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.419368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.419369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.419377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.419378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.419380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.419381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.419383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.429312 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.429314 LLDP, length 82 [|LLDP] 19:47:26.429335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.429343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.429355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.429356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d6b 08b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.429358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.429359 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.429360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.429361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.429368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.429370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.429372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.429373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.429374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.439312 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.439314 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.439315 LLDP, length 82 [|LLDP] 19:47:26.439344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.439352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.439353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.439354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.439355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.439372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.439374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.439375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d72 a9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.439377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.439378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.439379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.439380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.449320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.449322 LLDP, length 82 [|LLDP] 19:47:26.449351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.449361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.449373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.449374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d7a 4af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.449376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.449377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.449378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.449379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.449387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.449389 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.449391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.449392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.449393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.459320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.459321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.459322 LLDP, length 82 [|LLDP] 19:47:26.459359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.459368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.459381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.459382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d81 ec12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.459383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.459384 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.459393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.459394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.459403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.459404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.459407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.459408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.469320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.469322 LLDP, length 82 [|LLDP] 19:47:26.469349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.469359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.469371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.469372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d89 8d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.469374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.469375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.469381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.469382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.469384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.469385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.469386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.469387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.469388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.479321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.479323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.479324 LLDP, length 82 [|LLDP] 19:47:26.479357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.479367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.479379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.479380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d91 2e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.479381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.479383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.479384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.479385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.479401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.479402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.479404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.479406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.489327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.489329 LLDP, length 82 [|LLDP] 19:47:26.489355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.489365 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.489366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.489367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.489383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.489384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.489386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.489393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.489394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0d98 cf72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.489396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.489397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.489398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.489399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.499319 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.499321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.499322 LLDP, length 82 [|LLDP] 19:47:26.499356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.499366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.499378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.499379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0da0 7092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.499381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.499382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.499383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.499401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.499402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.499405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.499406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.499407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.509317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.509319 LLDP, length 82 [|LLDP] 19:47:26.509344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.509354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.509366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.509367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0da8 11b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.509369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.509370 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.509371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.509371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.509379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.509380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.509382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.509383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.509385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.519318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.519320 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.519321 LLDP, length 82 [|LLDP] 19:47:26.519349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.519359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.519360 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.519361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.519362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.519378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.519381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.519382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0daf b2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.519384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.519394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.519396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.519397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.529320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.529321 LLDP, length 82 [|LLDP] 19:47:26.529347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.529357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.529370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.529371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0db7 53f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.529372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.529373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.529374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.529375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.529383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.529384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.529386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.529387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.529389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.539325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.539327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.539328 LLDP, length 82 [|LLDP] 19:47:26.539356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.539365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.539377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.539378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dbe f512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.539380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.539381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.539382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.539383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.539400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.539401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.539404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.539406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.549318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.549320 LLDP, length 82 [|LLDP] 19:47:26.549347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.549356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.549369 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.549370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dc6 9632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.549371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.549372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.549378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.549379 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.549382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.549383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.549384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.549385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.549386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.559323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.559325 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.559326 LLDP, length 82 [|LLDP] 19:47:26.559356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.559365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.559378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.559379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dce 3752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.559380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.559381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.559382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.559383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.559400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.559402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.559404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.559406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.569323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.569325 LLDP, length 82 [|LLDP] 19:47:26.569359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.569368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.569369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.569370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.569386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.569388 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.569390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.569397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.569397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dd5 d872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.569399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.569400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.569401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.569402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.579321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.579322 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.579323 LLDP, length 82 [|LLDP] 19:47:26.579351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.579362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.579374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.579375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ddd 7992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.579377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.579378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.579379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.579396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.579397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.579399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.579400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.579402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.589319 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.589321 LLDP, length 82 [|LLDP] 19:47:26.589345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.589355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.589367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.589368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0de5 1ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.589370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.589371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.589372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.589373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.589380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.589381 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.589383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.589384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.589385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.599323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.599324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.599325 LLDP, length 82 [|LLDP] 19:47:26.599352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.599362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.599363 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.599364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.599365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.599382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.599384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.599395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dec bbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.599397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.599398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.599399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.599400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.609324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.609326 LLDP, length 82 [|LLDP] 19:47:26.609357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.609366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.609379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.609380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0df4 5cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.609381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.609382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.609383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.609385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.609392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.609394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.609396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.609397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.609398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.619325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.619327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.619328 LLDP, length 82 [|LLDP] 19:47:26.619356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.619367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.619380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.619381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0dfb fe12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.619383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.619384 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.619393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.619395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.619402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.619404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.619406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.619408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.629327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.629329 LLDP, length 82 [|LLDP] 19:47:26.629361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.629370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.629383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.629384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e03 9f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.629385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.629386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.629392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.629393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.629396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.629396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.629397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.629399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.629400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.639320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.639321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.639322 LLDP, length 82 [|LLDP] 19:47:26.639351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.639361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.639374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.639374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e0b 4052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.639376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.639377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.639378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.639379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.639397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.639398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.639401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.639402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.649321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.649322 LLDP, length 82 [|LLDP] 19:47:26.649357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.649366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.649368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.649369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.649385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.649386 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.649388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.649395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.649396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e12 e172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.649398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.649399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.649400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.649401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.659322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.659323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.659324 LLDP, length 82 [|LLDP] 19:47:26.659353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.659363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.659375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.659376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e1a 8292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.659378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.659379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.659380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.659396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.659397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.659400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.659401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.659402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.669322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.669323 LLDP, length 82 [|LLDP] 19:47:26.669355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.669364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.669377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.669378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e22 23b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.669380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.669381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.669382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.669383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.669391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.669392 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.669394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.669395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.669396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.679324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.679326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.679327 LLDP, length 82 [|LLDP] 19:47:26.679357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.679367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.679368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.679369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.679370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.679395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.679398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.679399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e29 c4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.679400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.679401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.679402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.679404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.689325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.689327 LLDP, length 82 [|LLDP] 19:47:26.689353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.689362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.689374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.689375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e31 65f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.689377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.689378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.689379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.689380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.689387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.689388 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.689390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.689392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.689393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.699325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.699327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.699328 LLDP, length 82 [|LLDP] 19:47:26.699356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.699366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.699379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.699379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e39 0712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.699381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.699382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.699383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.699384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.699401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.699402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.699405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.699406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.709321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.709322 LLDP, length 82 [|LLDP] 19:47:26.709353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.709362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.709375 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.709376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e40 a832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.709377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.709378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.709384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.709385 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.709388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.709389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.709390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.709391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.709392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.719326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.719328 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.719329 LLDP, length 82 [|LLDP] 19:47:26.719358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.719367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.719379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.719380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e48 4952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.719382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.719383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.719384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.719394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.719402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.719404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.719406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.719407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.729324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.729326 LLDP, length 82 [|LLDP] 19:47:26.729351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.729361 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.729362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.729363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.729379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.729380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.729382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.729389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.729389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e4f ea72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.729391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.729392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.729393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.729394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.739322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.739324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.739325 LLDP, length 82 [|LLDP] 19:47:26.739353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.739364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.739376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.739377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e57 8b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.739379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.739380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.739381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.739397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.739399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.739401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.739402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.739404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.749323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.749325 LLDP, length 82 [|LLDP] 19:47:26.749350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.749360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.749372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.749373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e5f 2cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.749374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.749375 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.749376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.749377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.749384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.749385 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.749387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.749388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.749389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.759322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.759324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.759325 LLDP, length 82 [|LLDP] 19:47:26.759355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.759364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.759365 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.759366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.759367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.759384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.759395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.759396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e66 cdd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.759398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.759399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.759400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.759401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.769322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.769324 LLDP, length 82 [|LLDP] 19:47:26.769357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.769367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.769379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.769380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e6e 6ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.769382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.769383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.769384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.769385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.769392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.769393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.769395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.769396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.769397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.779321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.779323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.779324 LLDP, length 82 [|LLDP] 19:47:26.779353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.779362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.779375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.779375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e76 1012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.779377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.779378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.779379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.779380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.779396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.779397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.779400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.779401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.789324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.789326 LLDP, length 82 [|LLDP] 19:47:26.789351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.789359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.789372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.789373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e7d b132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.789374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.789375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.789381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.789382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.789385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.789386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.789387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.789388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.789389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.799323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.799324 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.799325 LLDP, length 82 [|LLDP] 19:47:26.799360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.799370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.799383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.799383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e85 5252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.799393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.799394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.799395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.799396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.799404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.799405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.799407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.799409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.809325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.809327 LLDP, length 82 [|LLDP] 19:47:26.809358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.809368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.809369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.809370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.809386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.809387 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.809389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.809395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.809396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e8c f372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.809398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.809399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.809400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.809401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.819325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.819326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.819327 LLDP, length 82 [|LLDP] 19:47:26.819354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.819364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.819376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.819377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e94 9492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.819379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.819380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.819381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.819397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.819398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.819401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.819401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.819403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.829321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.829323 LLDP, length 82 [|LLDP] 19:47:26.829347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.829357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.829369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.829370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0e9c 35b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.829372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.829373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.829374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.829375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.829382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.829383 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.829385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.829386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.829388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.839322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.839323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.839324 LLDP, length 82 [|LLDP] 19:47:26.839350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.839360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.839361 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.839362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.839363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.839380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.839382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.839383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ea3 d6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.839384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.839394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.839395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.839396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.849322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.849323 LLDP, length 82 [|LLDP] 19:47:26.849354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.849363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.849376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.849376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eab 77f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.849378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.849379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.849380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.849381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.849388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.849390 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.849392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.849393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.849395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.859319 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.859321 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.859322 LLDP, length 82 [|LLDP] 19:47:26.859348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.859356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.859368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.859369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eb3 1912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.859371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.859372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.859372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.859373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.859381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.859382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.859385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.859394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.869322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.869324 LLDP, length 82 [|LLDP] 19:47:26.869353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.869361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.869374 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.869375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eba ba32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.869376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.869377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.869383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.869384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.869386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.869387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.869388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.869389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.869391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.879321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.879323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.879324 LLDP, length 82 [|LLDP] 19:47:26.879356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.879364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.879376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.879377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ec2 5b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.879379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.879379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.879380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.879382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.879397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.879398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.879401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.879402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.889320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.889322 LLDP, length 82 [|LLDP] 19:47:26.889348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.889356 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.889358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.889359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.889374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.889375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.889378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.889384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.889384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ec9 fc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.889386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.889387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.889388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.889389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.899318 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.899320 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.899321 LLDP, length 82 [|LLDP] 19:47:26.899342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.899351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.899363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.899364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ed1 9d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.899366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.899367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.899368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.899374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.899375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.899377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.899378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.899380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.909321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.909323 LLDP, length 82 [|LLDP] 19:47:26.909342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.909350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.909362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.909363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ed9 3eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.909365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.909366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.909367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.909368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.909375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.909376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.909378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.909379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.909381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.919317 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.919319 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.919320 LLDP, length 82 [|LLDP] 19:47:26.919349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.919357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.919358 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.919359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.919360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.919376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.919378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.919379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ee0 dfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.919381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.919382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.919383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.919385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.929322 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.929323 LLDP, length 82 [|LLDP] 19:47:26.929342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.929350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.929362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.929363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ee8 80f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.929365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.929366 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.929367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.929368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.929375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.929376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.929378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.929379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.929380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.939320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.939321 LLDP, length 82 [|LLDP] 19:47:26.939347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.939355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.939368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.939369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ef0 2212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.939370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.939372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.939373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.939374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.939381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.939382 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.939384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.939392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.939394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.949321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.949323 LLDP, length 82 [|LLDP] 19:47:26.949353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.949361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.949373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.949374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ef7 c332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.949376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.949377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.949383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.949384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.949386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.949387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.949388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.949389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.949390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.959321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.959323 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.959324 LLDP, length 82 [|LLDP] 19:47:26.959351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.959359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.959372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.959373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0eff 6452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.959374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.959375 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.959376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.959377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.959384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.959391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.959394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.959395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.969332 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.969334 LLDP, length 82 [|LLDP] 19:47:26.969362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.969371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.969372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.969373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.969389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.969390 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.969392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.969399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.969400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f07 0572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.969402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.969403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.969404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.969405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.979325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.979328 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.979329 LLDP, length 82 [|LLDP] 19:47:26.979358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.979368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.979380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.979381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f0e a692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.979383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.979384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.979385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.979399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.979400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.979402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.979403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.979405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.989328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.989329 LLDP, length 82 [|LLDP] 19:47:26.989355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.989365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.989377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.989377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f16 47b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.989379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.989380 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.989381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.989382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.989389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.989390 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.989392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.989393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.989395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:26.999328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.999330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:26.999331 LLDP, length 82 [|LLDP] 19:47:26.999360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:26.999370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:26.999371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:26.999372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:26.999373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.999398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:26.999401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:26.999402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f1d e8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:26.999403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:26.999404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:26.999405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:26.999407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.009327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.009329 LLDP, length 82 [|LLDP] 19:47:27.009361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.009371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.009383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.009384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f25 89f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.009386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.009387 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.009387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.009388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.009395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.009397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.009399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.009400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.009401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.019326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.019328 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.019330 LLDP, length 82 [|LLDP] 19:47:27.019362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.019372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.019384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.019392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f2d 2b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.019393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.019394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.019395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.019396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.019403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.019404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.019407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.019409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.029326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.029328 LLDP, length 82 [|LLDP] 19:47:27.029352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.029361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.029373 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.029374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f34 cc32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.029376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.029376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.029383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.029384 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.029386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.029387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.029388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.029389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.029390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.039325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.039327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.039329 LLDP, length 82 [|LLDP] 19:47:27.039356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.039366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.039378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.039379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f3c 6d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.039380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.039381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.039382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.039383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.039399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.039400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.039402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.039403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.049328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.049330 LLDP, length 82 [|LLDP] 19:47:27.049359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.049368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.049369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.049370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.049386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.049387 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.049389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.049395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.049396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f44 0e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.049397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.049399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.049399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.049401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.059325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.059347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.059349 LLDP, length 82 [|LLDP] 19:47:27.059377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.059393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.059407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.059408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f4b af92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.059410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.059411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.059412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.059419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.059420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.059422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.059423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.059425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.069360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.069362 LLDP, length 82 [|LLDP] 19:47:27.069399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.069412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.069427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.069428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f53 50b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.069430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.069431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.069432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.069433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.069443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.069445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.069447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.069448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.069450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.079336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.079338 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.079339 LLDP, length 82 [|LLDP] 19:47:27.079379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.079396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.079397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.079399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.079400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.079419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.079421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.079422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f5a f1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.079424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.079425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.079426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.079427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.089329 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.089331 LLDP, length 82 [|LLDP] 19:47:27.089358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.089367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.089379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.089380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f62 92f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.089382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.089383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.089384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.089385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.089393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.089394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.089397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.089398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.089399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.099328 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.099330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.099331 LLDP, length 82 [|LLDP] 19:47:27.099361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.099371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.099383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.099384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f6a 3412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.099393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.099394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.099395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.099397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.099405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.099406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.099408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.099410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.109333 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.109335 LLDP, length 82 [|LLDP] 19:47:27.109362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.109372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.109384 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.109385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f71 d532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.109387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.109388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.109394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.109396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.109398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.109399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.109400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.109401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.109402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.119327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.119329 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.119330 LLDP, length 82 [|LLDP] 19:47:27.119358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.119366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.119378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.119379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f79 7652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.119381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.119382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.119383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.119384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.119400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.119401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.119403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.119405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.129337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.129339 LLDP, length 82 [|LLDP] 19:47:27.129367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.129377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.129378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.129379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.129396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.129397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.129399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.129406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.129407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f81 1772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.129408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.129409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.129411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.129412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.139327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.139330 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.139331 LLDP, length 82 [|LLDP] 19:47:27.139358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.139367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.139380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.139381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f88 b892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.139382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.139383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.139384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.139399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.139401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.139403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.139404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.139406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.149326 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.149328 LLDP, length 82 [|LLDP] 19:47:27.149357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.149367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.149379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.149380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f90 59b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.149381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.149383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.149384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.149385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.149392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.149393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.149396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.149397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.149398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.159337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.159340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.159341 LLDP, length 82 [|LLDP] 19:47:27.159380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.159396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.159397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.159398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.159399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.159418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.159421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.159422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f97 fad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.159423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.159424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.159426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.159427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.169336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.169338 LLDP, length 82 [|LLDP] 19:47:27.169372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.169381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.169393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.169394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0f9f 9bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.169396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.169397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.169398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.169399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.169406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.169407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.169410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.169411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.169412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.180969 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.180971 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.180972 LLDP, length 82 [|LLDP] 19:47:27.181001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.181010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.181022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.181023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fa7 3d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.181025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.181025 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.181026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.181027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.181035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.181036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.181038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.181040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.190890 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.190892 LLDP, length 82 [|LLDP] 19:47:27.190925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.190935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.190948 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.190949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fae de32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.190950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.190952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.190958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.190959 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.190962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.190963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.190964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.190964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.190966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.199335 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.199337 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.199338 LLDP, length 82 [|LLDP] 19:47:27.199369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.199374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.199393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.199394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fb6 7f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.199396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.199397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.199398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.199399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.199407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.199408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.199410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.199412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.209497 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.209499 LLDP, length 82 [|LLDP] 19:47:27.209514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.209517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.209518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.209519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.209533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.209534 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.209536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.209541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.209542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fbe 2072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.209543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.209544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.209545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.209546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.219320 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.219322 LLDP, length 82 [|LLDP] 19:47:27.219337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.219339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.219350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.219351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fc5 c192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.219352 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.219353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.219354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.219360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.219361 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.219363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.219364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.219365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.219366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.229339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.229341 LLDP, length 82 [|LLDP] 19:47:27.229364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.229368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.229379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.229380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fcd 62b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.229381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.229382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.229383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.229384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.229392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.229392 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.229395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.229396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.229397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.239321 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.239322 LLDP, length 82 [|LLDP] 19:47:27.239337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.239340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.239341 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.239342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.239343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.239357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.239358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.239364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.239365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fd5 03d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.239367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.239368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.239369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.239370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.251554 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.251555 LLDP, length 82 [|LLDP] 19:47:27.251571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.251573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.251584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.251585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fdc a4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.251587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.251588 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.251589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.251590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.251596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.251597 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.251599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.251600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.251601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.259327 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.259329 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.259330 LLDP, length 82 [|LLDP] 19:47:27.259365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.259368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.259379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.259380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0fe4 4612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.259382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.259383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.259384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.259398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.259406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.259407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.259410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.259411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.269323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.269324 LLDP, length 82 [|LLDP] 19:47:27.269340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.269343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.269353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.269354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0feb e732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.269356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.269357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.269362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.269363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.269365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.269366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.269367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.269368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.269369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.279353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.279355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.279356 LLDP, length 82 [|LLDP] 19:47:27.279408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.279413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.279426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.279427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ff3 8852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.279429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.279430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.279431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.279432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.279440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.279441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.279444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.279445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.289387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.289390 LLDP, length 82 [|LLDP] 19:47:27.289454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.289460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.289461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.289463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.289481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.289483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.289485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.289500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.289501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 0ffb 2972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.289502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.289503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.289504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.289506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.299382 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.299385 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.299397 LLDP, length 82 [|LLDP] 19:47:27.299461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.299468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.299482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.299483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1002 ca92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.299485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.299486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.299487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.299496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.299498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.299500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.299501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.299503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.309330 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.309332 LLDP, length 82 [|LLDP] 19:47:27.309360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.309363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.309375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.309376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 100a 6bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.309378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.309379 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.309380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.309381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.309388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.309389 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.309392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.309392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.309394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.319325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.319326 LLDP, length 82 [|LLDP] 19:47:27.319352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.319355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.319356 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.319356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.319358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.319373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.319374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.319380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.319380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1012 0cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.319382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.319383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.319384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.319392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.329325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.329326 LLDP, length 82 [|LLDP] 19:47:27.329343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.329345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.329356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.329357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1019 adf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.329359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.329360 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.329360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.329361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.329368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.329369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.329372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.329373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.329374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.339324 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.339325 LLDP, length 82 [|LLDP] 19:47:27.339348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.339351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.339361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.339362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1021 4f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.339364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.339365 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.339366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.339367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.339373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.339374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.339377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.339378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.339379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.349323 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.349324 LLDP, length 82 [|LLDP] 19:47:27.349339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.349342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.349353 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.349353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1028 f032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.349355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.349356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.349361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.349363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.349365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.349366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.349367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.349368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.349369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.359325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.359326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.359327 LLDP, length 82 [|LLDP] 19:47:27.359353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.359355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.359366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.359367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1030 9152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.359368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.359369 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.359370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.359371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.359378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.359379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.359381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.359383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.369325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.369327 LLDP, length 82 [|LLDP] 19:47:27.369344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.369347 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.369348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.369349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.369363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.369364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.369366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.369371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.369372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1038 3272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.369373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.369374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.369375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.369376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.379325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.379326 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.379327 LLDP, length 82 [|LLDP] 19:47:27.379347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.379350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.379361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.379362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 103f d392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.379363 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.379364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.379365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.379371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.379372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.379374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.379375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.379377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.389329 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.389331 LLDP, length 82 [|LLDP] 19:47:27.389354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.389357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.389368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.389369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1047 74b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.389370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.389371 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.389372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.389373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.389380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.389381 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.389383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.389384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.389385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.399325 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.399327 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.399327 LLDP, length 82 [|LLDP] 19:47:27.399355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.399358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.399359 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.399360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.399361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.399376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.399378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.399379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 104f 15d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.399381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.399382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.399382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.399384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.409368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.409370 LLDP, length 82 [|LLDP] 19:47:27.409422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.409439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.409455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.409456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1056 b6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.409458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.409459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.409460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.409461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.409471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.409473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.409475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.409476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.409478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.419356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.419358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.419359 LLDP, length 82 [|LLDP] 19:47:27.419418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.419429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.419443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.419444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 105e 5812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.419445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.419447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.419448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.419449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.419457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.419458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.419461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.419463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.429340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.429342 LLDP, length 82 [|LLDP] 19:47:27.429372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.429384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.429397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.429398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1065 f932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.429400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.429401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.429408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.429409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.429411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.429412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.429413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.429414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.429416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.439343 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.439345 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.439352 LLDP, length 82 [|LLDP] 19:47:27.439384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.439406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.439420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.439422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 106d 9a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.439423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.439424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.439425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.439426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.439434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.439435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.439438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.439439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.449353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.449355 LLDP, length 82 [|LLDP] 19:47:27.449391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.449402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.449403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.449404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.449421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.449422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.449425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.449433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.449434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1075 3b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.449435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.449436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.449438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.449439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.459346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.459348 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.459349 LLDP, length 82 [|LLDP] 19:47:27.459393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.459404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.459420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.459421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 107c dc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.459423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.459424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.459425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.459434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.459435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.459438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.459439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.459440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.469358 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.469360 LLDP, length 82 [|LLDP] 19:47:27.469393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.469403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.469416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.469417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1084 7db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.469419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.469420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.469421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.469422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.469431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.469432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.469434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.469435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.469436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.479347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.479349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.479350 LLDP, length 82 [|LLDP] 19:47:27.479395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.479405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.479406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.479407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.479408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.479428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.479431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.479432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 108c 1ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.479433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.479434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.479436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.479438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.489344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.489346 LLDP, length 82 [|LLDP] 19:47:27.489380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.489392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.489406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.489407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1093 bff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.489408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.489410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.489411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.489412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.489420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.489421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.489423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.489424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.489425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.499353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.499355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.499356 LLDP, length 82 [|LLDP] 19:47:27.499408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.499421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.499436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.499436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 109b 6112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.499438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.499439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.499440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.499441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.499449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.499451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.499453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.499454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.509348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.509350 LLDP, length 82 [|LLDP] 19:47:27.509385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.509398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.509412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.509413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10a3 0232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.509414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.509415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.509422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.509423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.509425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.509427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.509428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.509429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.509430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.519349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.519351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.519352 LLDP, length 82 [|LLDP] 19:47:27.519400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.519412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.519428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.519429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10aa a352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.519430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.519431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.519432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.519433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.519442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.519443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.519446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.519447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.529352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.529354 LLDP, length 82 [|LLDP] 19:47:27.529387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.529397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.529398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.529399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.529417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.529418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.529421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.529429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.529430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10b2 4472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.529431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.529432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.529434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.529435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.539349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.539351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.539352 LLDP, length 82 [|LLDP] 19:47:27.539397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.539407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.539422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.539422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10b9 e592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.539424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.539425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.539426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.539434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.539435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.539438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.539439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.539440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.549344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.549346 LLDP, length 82 [|LLDP] 19:47:27.549379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.549389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.549402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.549403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10c1 86b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.549405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.549406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.549407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.549408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.549416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.549418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.549420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.549421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.549423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.559345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.559354 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.559356 LLDP, length 82 [|LLDP] 19:47:27.559399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.559409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.559410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.559411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.559412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.559433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.559435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.559436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10c9 27d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.559438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.559439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.559440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.559442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.569345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.569347 LLDP, length 82 [|LLDP] 19:47:27.569385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.569395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.569408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.569409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10d0 c8f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.569411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.569412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.569413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.569414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.569422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.569423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.569426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.569427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.569428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.579346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.579348 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.579355 LLDP, length 82 [|LLDP] 19:47:27.579405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.579417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.579432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.579433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10d8 6a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.579434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.579435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.579436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.579437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.579446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.579448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.579450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.579451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.589344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.589346 LLDP, length 82 [|LLDP] 19:47:27.589380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.589389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.589403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.589404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10e0 0b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.589405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.589406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.589413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.589414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.589417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.589418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.589418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.589419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.589421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.599357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.599359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.599361 LLDP, length 82 [|LLDP] 19:47:27.599408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.599418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.599433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.599433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10e7 ac52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.599435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.599436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.599437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.599439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.599447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.599448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.599451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.599452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.609350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.609352 LLDP, length 82 [|LLDP] 19:47:27.609393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.609406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.609407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.609408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.609425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.609426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.609429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.609436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.609437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10ef 4d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.609439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.609440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.609441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.609443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.619353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.619355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.619356 LLDP, length 82 [|LLDP] 19:47:27.619404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.619416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.619430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.619431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10f6 ee92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.619432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.619433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.619434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.619443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.619444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.619447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.619448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.619450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.629344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.629346 LLDP, length 82 [|LLDP] 19:47:27.629379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.629389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.629402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.629403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 10fe 8fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.629405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.629406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.629407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.629408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.629416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.629417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.629420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.629421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.629422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.639350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.639352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.639353 LLDP, length 82 [|LLDP] 19:47:27.639396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.639405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.639407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.639408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.639408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.639427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.639430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.639431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1106 30d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.639433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.639434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.639435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.639436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.649344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.649346 LLDP, length 82 [|LLDP] 19:47:27.649374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.649385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.649398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.649398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 110d d1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.649400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.649401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.649402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.649403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.649411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.649412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.649414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.649415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.649417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.659349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.659351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.659352 LLDP, length 82 [|LLDP] 19:47:27.659395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.659405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.659419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.659420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1115 7312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.659422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.659423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.659424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.659425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.659433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.659434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.659436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.659437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.669342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.669344 LLDP, length 82 [|LLDP] 19:47:27.669376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.669386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.669398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.669399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 111d 1432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.669401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.669402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.669408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.669409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.669411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.669412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.669413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.669414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.669416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.679344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.679346 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.679347 LLDP, length 82 [|LLDP] 19:47:27.679379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.679398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.679413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.679413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1124 b552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.679415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.679416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.679417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.679418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.679427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.679428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.679430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.679432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.689340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.689342 LLDP, length 82 [|LLDP] 19:47:27.689367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.689378 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.689379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.689380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.689396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.689397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.689399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.689406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.689407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 112c 5672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.689408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.689409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.689410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.689412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.699339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.699341 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.699342 LLDP, length 82 [|LLDP] 19:47:27.699375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.699392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.699406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.699407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1133 f792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.699409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.699410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.699411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.699418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.699420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.699422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.699423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.699425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.709344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.709346 LLDP, length 82 [|LLDP] 19:47:27.709383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.709392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.709406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.709407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 113b 98b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.709408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.709409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.709410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.709412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.709420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.709421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.709423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.709424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.709426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.719339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.719341 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.719342 LLDP, length 82 [|LLDP] 19:47:27.719373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.719381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.719382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.719383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.719384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.719412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.719416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.719417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1143 39d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.719418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.719419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.719420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.719422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.729338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.729340 LLDP, length 82 [|LLDP] 19:47:27.729373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.729380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.729393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.729394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 114a daf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.729396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.729396 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.729397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.729398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.729407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.729408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.729410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.729411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.729413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.739339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.739340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.739341 LLDP, length 82 [|LLDP] 19:47:27.739374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.739382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.739404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.739404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1152 7c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.739406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.739407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.739408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.739410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.739417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.739419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.739421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.739422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.749337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.749338 LLDP, length 82 [|LLDP] 19:47:27.749367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.749375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.749388 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.749388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 115a 1d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.749390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.749391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.749397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.749398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.749401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.749402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.749403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.749404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.749405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.759337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.759339 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.759340 LLDP, length 82 [|LLDP] 19:47:27.759366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.759374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.759396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.759397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1161 be52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.759399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.759399 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.759400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.759402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.759410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.759411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.759413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.759415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.769340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.769342 LLDP, length 82 [|LLDP] 19:47:27.769365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.769372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.769373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.769374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.769390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.769391 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.769394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.769400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.769401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1169 5f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.769403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.769404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.769405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.769406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.779336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.779338 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.779339 LLDP, length 82 [|LLDP] 19:47:27.779363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.779371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.779383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.779385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1171 0092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.779394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.779395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.779396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.779404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.779405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.779407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.779408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.779410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.789338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.789340 LLDP, length 82 [|LLDP] 19:47:27.789369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.789377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.789389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.789390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1178 a1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.789392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.789393 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.789394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.789395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.789403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.789404 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.789406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.789407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.789409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.799336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.799338 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.799339 LLDP, length 82 [|LLDP] 19:47:27.799362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.799371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.799372 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.799373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.799374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.799400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.799402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.799403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1180 42d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.799405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.799406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.799407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.799408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.809339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.809340 LLDP, length 82 [|LLDP] 19:47:27.809365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.809374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.809386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.809387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1187 e3f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.809389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.809390 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.809391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.809392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.809400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.809401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.809404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.809405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.809406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.819338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.819340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.819340 LLDP, length 82 [|LLDP] 19:47:27.819368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.819376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.819398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.819399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 118f 8512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.819401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.819402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.819403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.819404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.819412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.819413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.819416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.819417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.829340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.829342 LLDP, length 82 [|LLDP] 19:47:27.829372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.829381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.829394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.829395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1197 2632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.829396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.829397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.829404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.829405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.829407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.829408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.829409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.829410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.829411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.839337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.839339 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.839340 LLDP, length 82 [|LLDP] 19:47:27.839368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.839376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.839399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.839400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 119e c752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.839401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.839402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.839403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.839404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.839412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.839413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.839415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.839417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.849336 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.849338 LLDP, length 82 [|LLDP] 19:47:27.849361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.849368 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.849369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.849370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.849386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.849388 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.849390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.849396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.849397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11a6 6872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.849399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.849400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.849401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.849402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.859340 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.859342 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.859343 LLDP, length 82 [|LLDP] 19:47:27.859374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.859381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.859404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.859405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11ae 0992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.859406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.859407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.859408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.859416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.859417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.859419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.859420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.859422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.869339 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.869340 LLDP, length 82 [|LLDP] 19:47:27.869369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.869376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.869389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.869390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11b5 aab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.869391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.869392 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.869393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.869394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.869402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.869403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.869406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.869407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.869408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.879337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.879339 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.879340 LLDP, length 82 [|LLDP] 19:47:27.879366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.879373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.879374 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.879375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.879376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.879404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.879407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.879408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11bd 4bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.879409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.879410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.879411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.879413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.889337 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.889338 LLDP, length 82 [|LLDP] 19:47:27.889360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.889368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.889380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.889381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11c4 ecf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.889382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.889383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.889384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.889385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.889393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.889394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.889396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.889397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.889399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.899338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.899340 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.899341 LLDP, length 82 [|LLDP] 19:47:27.899374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.899382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.899403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.899404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11cc 8e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.899406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.899407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.899408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.899409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.899417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.899418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.899420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.899422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.909338 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.909339 LLDP, length 82 [|LLDP] 19:47:27.909361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.909370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.909382 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.909383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11d4 2f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.909384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.909386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.909392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.909393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.909395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.909396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.909397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.909398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.909399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.919342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.919344 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.919345 LLDP, length 82 [|LLDP] 19:47:27.919372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.919401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.919418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.919419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11db d052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.919421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.919422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.919423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.919424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.919432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.919433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.919435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.919437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.929364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.929366 LLDP, length 82 [|LLDP] 19:47:27.929398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.929409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.929410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.929411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.929430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.929431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.929434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.929443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.929444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11e3 7172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.929445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.929447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.929448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.929449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.939350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.939352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.939353 LLDP, length 82 [|LLDP] 19:47:27.939395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.939406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.939421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.939422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11eb 1292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.939423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.939424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.939426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.939434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.939435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.939437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.939438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.939440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.949356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.949359 LLDP, length 82 [|LLDP] 19:47:27.949391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.949402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.949416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.949417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11f2 b3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.949418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.949419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.949420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.949421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.949430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.949431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.949433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.949434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.949436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.959345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.959347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.959348 LLDP, length 82 [|LLDP] 19:47:27.959379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.959394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.959395 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.959396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.959397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.959417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.959420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.959421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 11fa 54d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.959422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.959423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.959424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.959426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.969344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.969346 LLDP, length 82 [|LLDP] 19:47:27.969371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.969380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.969393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.969393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1201 f5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.969395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.969396 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.969397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.969398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.969405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.969407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.969409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.969410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.969411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.979348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.979349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.979350 LLDP, length 82 [|LLDP] 19:47:27.979378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.979393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.979407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.979408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1209 9712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.979410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.979411 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.979412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.979413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.979420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.979421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.979424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.979425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.989345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.989347 LLDP, length 82 [|LLDP] 19:47:27.989371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.989381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.989394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.989394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1211 3832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.989396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.989397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.989404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.989405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.989407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.989408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.989409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.989410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.989412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:27.999342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.999344 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:27.999345 LLDP, length 82 [|LLDP] 19:47:27.999371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:27.999379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:27.999401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:27.999402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1218 d952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:27.999403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:27.999404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:27.999405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:27.999406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.999415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:27.999416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:27.999418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:27.999419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.009343 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.009345 LLDP, length 82 [|LLDP] 19:47:28.009369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.009377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.009378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.009379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.009395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.009397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.009399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.009405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.009407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1220 7a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.009408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.009409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.009410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.009411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.019342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.019344 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.019345 LLDP, length 82 [|LLDP] 19:47:28.019381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.019397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.019411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.019412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1228 1b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.019414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.019415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.019416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.019423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.019424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.019426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.019427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.019429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.029342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.029344 LLDP, length 82 [|LLDP] 19:47:28.029370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.029378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.029391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.029392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 122f bcb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.029393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.029394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.029395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.029396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.029404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.029405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.029408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.029409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.029410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.039346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.039347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.039348 LLDP, length 82 [|LLDP] 19:47:28.039377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.039384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.039392 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.039393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.039395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.039413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.039416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.039417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1237 5dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.039418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.039419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.039420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.039422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.049343 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.049345 LLDP, length 82 [|LLDP] 19:47:28.049375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.049384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.049396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.049397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 123e fef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.049399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.049400 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.049401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.049402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.049409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.049410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.049413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.049414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.049415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.059342 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.059343 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.059345 LLDP, length 82 [|LLDP] 19:47:28.059372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.059380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.059402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.059403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1246 a012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.059405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.059406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.059407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.059408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.059416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.059417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.059420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.059421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.069345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.069347 LLDP, length 82 [|LLDP] 19:47:28.069370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.069379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.069392 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.069393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 124e 4132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.069394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.069395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.069402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.069403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.069405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.069406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.069407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.069408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.069410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.079344 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.079346 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.079347 LLDP, length 82 [|LLDP] 19:47:28.079374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.079383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.079404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.079405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1255 e252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.079407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.079407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.079409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.079410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.079418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.079419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.079421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.079423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.089346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.089348 LLDP, length 82 [|LLDP] 19:47:28.089372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.089381 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.089381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.089382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.089399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.089401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.089403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.089410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.089411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 125d 8372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.089412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.089413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.089414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.089416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.099351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.099352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.099353 LLDP, length 82 [|LLDP] 19:47:28.099381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.099398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.099412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.099413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1265 2492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.099415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.099416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.099417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.099424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.099425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.099427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.099428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.099430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.109347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.109349 LLDP, length 82 [|LLDP] 19:47:28.109371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.109380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.109393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.109394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 126c c5b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.109396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.109397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.109398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.109399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.109406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.109407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.109409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.109411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.109412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.119345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.119346 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.119347 LLDP, length 82 [|LLDP] 19:47:28.119374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.119382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.119383 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.119384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.119392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.119411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.119414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.119415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1274 66d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.119416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.119417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.119419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.119420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.129359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.129360 LLDP, length 82 [|LLDP] 19:47:28.129393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.129404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.129418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.129419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 127c 07f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.129421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.129422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.129423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.129424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.129432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.129434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.129436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.129437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.129438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.139347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.139349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.139350 LLDP, length 82 [|LLDP] 19:47:28.139395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.139405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.139420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.139421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1283 a912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.139422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.139423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.139424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.139425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.139434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.139435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.139437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.139438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.149350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.149351 LLDP, length 82 [|LLDP] 19:47:28.149376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.149386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.149400 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.149401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 128b 4a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.149403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.149404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.149410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.149411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.149413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.149414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.149415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.149417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.149418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.159350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.159352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.159353 LLDP, length 82 [|LLDP] 19:47:28.159382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.159398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.159413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.159414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1292 eb52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.159416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.159417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.159418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.159419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.159427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.159428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.159430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.159432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.169348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.169349 LLDP, length 82 [|LLDP] 19:47:28.169380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.169390 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.169391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.169392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.169409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.169411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.169413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.169420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.169421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 129a 8c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.169422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.169424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.169425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.169426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.179351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.179353 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.179354 LLDP, length 82 [|LLDP] 19:47:28.179383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.179399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.179416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.179416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12a2 2d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.179418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.179419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.179420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.179427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.179428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.179430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.179432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.179433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.189351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.189352 LLDP, length 82 [|LLDP] 19:47:28.189378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.189388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.189402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.189403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12a9 ceb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.189404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.189405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.189406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.189408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.189416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.189416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.189419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.189420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.189421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.199352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.199354 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.199355 LLDP, length 82 [|LLDP] 19:47:28.199384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.199400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.199401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.199402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.199403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.199422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.199425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.199426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12b1 6fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.199427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.199429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.199430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.199432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.209349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.209350 LLDP, length 82 [|LLDP] 19:47:28.209375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.209385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.209399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.209399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12b9 10f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.209401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.209402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.209403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.209404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.209412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.209413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.209416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.209417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.209418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.219355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.219356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.219357 LLDP, length 82 [|LLDP] 19:47:28.219395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.219406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.219421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.219422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12c0 b212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.219424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.219425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.219426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.219427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.219434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.219435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.219438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.219439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.229350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.229352 LLDP, length 82 [|LLDP] 19:47:28.229379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.229388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.229401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.229402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12c8 5332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.229404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.229405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.229412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.229413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.229416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.229416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.229417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.229418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.229420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.239349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.239351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.239352 LLDP, length 82 [|LLDP] 19:47:28.239381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.239397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.239411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.239412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12cf f452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.239414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.239415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.239416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.239417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.239425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.239426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.239429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.239430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.249349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.249351 LLDP, length 82 [|LLDP] 19:47:28.249378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.249387 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.249388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.249389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.249405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.249406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.249409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.249416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.249417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12d7 9572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.249418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.249419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.249420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.249422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.259350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.259351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.259352 LLDP, length 82 [|LLDP] 19:47:28.259393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.259403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.259418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.259419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12df 3692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.259420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.259421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.259422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.259430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.259431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.259433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.259434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.259436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.269352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.269354 LLDP, length 82 [|LLDP] 19:47:28.269378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.269387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.269400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.269401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12e6 d7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.269402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.269403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.269404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.269405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.269413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.269414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.269416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.269417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.269419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.279359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.279361 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.279370 LLDP, length 82 [|LLDP] 19:47:28.279413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.279422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.279423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.279425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.279425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.279445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.279448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.279449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12ee 78d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.279451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.279452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.279453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.279454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.289355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.289358 LLDP, length 82 [|LLDP] 19:47:28.289385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.289394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.289408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.289409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12f6 19f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.289411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.289412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.289413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.289414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.289422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.289423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.289425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.289427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.289428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.299360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.299363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.299364 LLDP, length 82 [|LLDP] 19:47:28.299413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.299422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.299436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.299437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 12fd bb12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.299438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.299439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.299440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.299442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.299451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.299452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.299454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.299455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.309352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.309354 LLDP, length 82 [|LLDP] 19:47:28.309381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.309390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.309403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.309404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1305 5c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.309405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.309406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.309412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.309413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.309416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.309417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.309418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.309419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.309421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.319348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.319350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.319351 LLDP, length 82 [|LLDP] 19:47:28.319379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.319394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.319409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.319410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 130c fd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.319411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.319413 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.319414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.319415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.319422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.319423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.319425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.319427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.329357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.329359 LLDP, length 82 [|LLDP] 19:47:28.329394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.329402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.329403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.329404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.329422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.329423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.329425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.329434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.329435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1314 9e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.329436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.329437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.329438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.329439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.339349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.339351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.339352 LLDP, length 82 [|LLDP] 19:47:28.339396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.339411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.339427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.339428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 131c 3f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.339430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.339431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.339431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.339438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.339439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.339442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.339443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.339444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.349359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.349360 LLDP, length 82 [|LLDP] 19:47:28.349389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.349401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.349414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.349415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1323 e0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.349417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.349418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.349419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.349420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.349428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.349429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.349431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.349432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.349434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.359364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.359366 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.359367 LLDP, length 82 [|LLDP] 19:47:28.359410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.359436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.359437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.359438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.359439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.359461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.359463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.359464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 132b 81d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.359466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.359467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.359468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.359469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.369363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.369365 LLDP, length 82 [|LLDP] 19:47:28.369398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.369408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.369421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.369422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1333 22f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.369423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.369424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.369425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.369426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.369435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.369436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.369439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.369440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.369441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.379355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.379356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.379357 LLDP, length 82 [|LLDP] 19:47:28.379407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.379420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.379433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.379434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 133a c412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.379436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.379437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.379438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.379439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.379447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.379448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.379450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.379452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.389350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.389352 LLDP, length 82 [|LLDP] 19:47:28.389377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.389388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.389401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.389402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1342 6532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.389403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.389404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.389410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.389411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.389414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.389415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.389416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.389417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.389418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.399362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.399370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.399371 LLDP, length 82 [|LLDP] 19:47:28.399418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.399429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.399442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.399443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 134a 0652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.399444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.399446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.399447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.399448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.399456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.399457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.399460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.399461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.409352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.409354 LLDP, length 82 [|LLDP] 19:47:28.409379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.409391 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.409392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.409393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.409409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.409410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.409413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.409421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.409422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1351 a772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.409423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.409424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.409425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.409427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.419352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.419353 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.419354 LLDP, length 82 [|LLDP] 19:47:28.419381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.419400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.419414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.419415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1359 4892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.419417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.419418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.419419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.419426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.419427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.419429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.419430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.419431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.429376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.429378 LLDP, length 82 [|LLDP] 19:47:28.429424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.429435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.429449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.429450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1360 e9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.429452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.429453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.429454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.429455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.429464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.429465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.429468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.429469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.429471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.439357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.439360 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.439361 LLDP, length 82 [|LLDP] 19:47:28.439402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.439413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.439414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.439415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.439416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.439435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.439438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.439439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1368 8ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.439440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.439441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.439442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.439444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.449355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.449356 LLDP, length 82 [|LLDP] 19:47:28.449382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.449392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.449405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.449405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1370 2bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.449407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.449408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.449409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.449410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.449418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.449419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.449421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.449422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.449423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.459352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.459354 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.459355 LLDP, length 82 [|LLDP] 19:47:28.459382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.459401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.459415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.459416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1377 cd12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.459417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.459418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.459420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.459421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.459428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.459429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.459432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.459433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.469353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.469354 LLDP, length 82 [|LLDP] 19:47:28.469385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.469395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.469408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.469409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 137f 6e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.469411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.469412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.469418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.469419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.469421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.469422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.469423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.469424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.469426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.479356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.479358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.479359 LLDP, length 82 [|LLDP] 19:47:28.479402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.479413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.479427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.479428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1387 0f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.479429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.479430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.479431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.479432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.479439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.479440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.479442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.479444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.489357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.489359 LLDP, length 82 [|LLDP] 19:47:28.489383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.489394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.489396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.489397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.489413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.489414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.489416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.489423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.489424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 138e b072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.489425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.489427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.489428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.489429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.499351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.499352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.499353 LLDP, length 82 [|LLDP] 19:47:28.499394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.499404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.499420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.499421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1396 5192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.499422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.499423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.499424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.499431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.499432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.499435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.499436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.499437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.509348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.509350 LLDP, length 82 [|LLDP] 19:47:28.509382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.509394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.509407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.509407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 139d f2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.509409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.509410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.509411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.509412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.509420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.509421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.509423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.509425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.509426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.519348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.519350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.519351 LLDP, length 82 [|LLDP] 19:47:28.519394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.519404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.519404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.519406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.519407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.519425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.519428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.519429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13a5 93d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.519430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.519431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.519432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.519434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.529352 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.529354 LLDP, length 82 [|LLDP] 19:47:28.529379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.529388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.529401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.529402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13ad 34f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.529403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.529404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.529405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.529406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.529413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.529414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.529417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.529418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.529419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.539353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.539355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.539356 LLDP, length 82 [|LLDP] 19:47:28.539399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.539409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.539423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.539424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13b4 d612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.539426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.539427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.539428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.539429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.539437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.539438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.539440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.539441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.549351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.549353 LLDP, length 82 [|LLDP] 19:47:28.549379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.549388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.549401 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.549402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13bc 7732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.549403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.549404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.549410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.549412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.549414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.549415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.549415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.549417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.549418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.559355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.559357 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.559358 LLDP, length 82 [|LLDP] 19:47:28.559394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.559404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.559419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.559420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13c4 1852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.559422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.559423 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.559424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.559425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.559433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.559434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.559436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.559437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.569355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.569357 LLDP, length 82 [|LLDP] 19:47:28.569382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.569393 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.569394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.569395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.569411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.569412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.569414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.569422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.569423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13cb b972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.569425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.569426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.569427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.569428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.579351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.579353 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.579354 LLDP, length 82 [|LLDP] 19:47:28.579395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.579406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.579420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.579421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13d3 5a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.579422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.579423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.579424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.579432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.579433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.579435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.579436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.579437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.589354 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.589356 LLDP, length 82 [|LLDP] 19:47:28.589387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.589398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.589411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.589412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13da fbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.589413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.589415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.589416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.589417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.589424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.589425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.589427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.589428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.589430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.599353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.599355 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.599356 LLDP, length 82 [|LLDP] 19:47:28.599396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.599407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.599408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.599409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.599410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.599428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.599431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.599432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13e2 9cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.599433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.599434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.599435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.599436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.609353 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.609355 LLDP, length 82 [|LLDP] 19:47:28.609380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.609390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.609403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.609404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13ea 3df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.609406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.609407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.609408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.609409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.609417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.609418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.609420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.609421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.609423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.619348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.619350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.619351 LLDP, length 82 [|LLDP] 19:47:28.619373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.619382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.619403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.619404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13f1 df12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.619406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.619407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.619409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.619410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.619417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.619418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.619420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.619421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.629347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.629348 LLDP, length 82 [|LLDP] 19:47:28.629368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.629376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.629388 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.629389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 13f9 8032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.629390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.629391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.629397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.629398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.629400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.629401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.629402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.629403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.629405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.639345 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.639347 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.639348 LLDP, length 82 [|LLDP] 19:47:28.639377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.639392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.639405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.639407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1401 2152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.639408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.639409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.639410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.639411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.639418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.639419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.639421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.639423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.649348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.649350 LLDP, length 82 [|LLDP] 19:47:28.649378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.649387 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.649388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.649389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.649404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.649405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.649408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.649414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.649415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1408 c272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.649417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.649418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.649419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.649421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.659354 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.659356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.659357 LLDP, length 82 [|LLDP] 19:47:28.659381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.659396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.659410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.659411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1410 6392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.659413 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.659414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.659415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.659421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.659422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.659425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.659426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.659428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.669348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.669350 LLDP, length 82 [|LLDP] 19:47:28.669379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.669388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.669400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.669401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1418 04b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.669403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.669404 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.669405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.669406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.669413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.669414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.669416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.669417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.669418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.679347 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.679349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.679349 LLDP, length 82 [|LLDP] 19:47:28.679378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.679392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.679394 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.679395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.679396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.679413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.679415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.679416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 141f a5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.679418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.679419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.679420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.679421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.689346 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.689348 LLDP, length 82 [|LLDP] 19:47:28.689367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.689375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.689388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.689389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1427 46f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.689390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.689391 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.689392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.689393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.689401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.689402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.689404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.689405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.689407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.699350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.699351 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.699352 LLDP, length 82 [|LLDP] 19:47:28.699375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.699384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.699403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.699404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 142e e812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.699406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.699407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.699408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.699409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.699416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.699417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.699419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.699421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.709351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.709352 LLDP, length 82 [|LLDP] 19:47:28.709377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.709386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.709398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.709399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1436 8932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.709400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.709401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.709407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.709408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.709411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.709412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.709412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.709413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.709415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.719349 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.719350 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.719351 LLDP, length 82 [|LLDP] 19:47:28.719373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.719381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.719403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.719404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 143e 2a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.719406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.719407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.719408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.719409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.719417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.719418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.719420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.719422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.729348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.729350 LLDP, length 82 [|LLDP] 19:47:28.729369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.729377 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.729378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.729379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.729394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.729395 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.729397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.729403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.729404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1445 cb72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.729405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.729406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.729407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.729409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.739348 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.739349 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.739350 LLDP, length 82 [|LLDP] 19:47:28.739371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.739379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.739399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.739400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 144d 6c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.739402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.739403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.739404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.739411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.739412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.739414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.739415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.739417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.749351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.749353 LLDP, length 82 [|LLDP] 19:47:28.749375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.749384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.749396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.749397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1455 0db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.749398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.749399 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.749400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.749401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.749409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.749410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.749412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.749413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.749415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.759351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.759352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.759354 LLDP, length 82 [|LLDP] 19:47:28.759392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.759401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.759402 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.759403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.759404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.759422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.759425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.759425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 145c aed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.759427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.759428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.759429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.759430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.769351 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.769353 LLDP, length 82 [|LLDP] 19:47:28.769373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.769382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.769394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.769395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1464 4ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.769396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.769397 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.769398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.769399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.769406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.769408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.769410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.769411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.769412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.779350 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.779352 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.779353 LLDP, length 82 [|LLDP] 19:47:28.779375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.779384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.779403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.779404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 146b f112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.779418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.779420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.779421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.779422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.779429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.779431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.779433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.779435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.789384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.789386 LLDP, length 82 [|LLDP] 19:47:28.789420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.789433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.789447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.789448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1473 9232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.789449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.789451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.789460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.789461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.789464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.789465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.789466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.789467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.789469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.799368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.799370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.799371 LLDP, length 82 [|LLDP] 19:47:28.799417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.799427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.799441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.799442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 147b 3352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.799443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.799445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.799446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.799447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.799455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.799456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.799458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.799460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.809355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.809357 LLDP, length 82 [|LLDP] 19:47:28.809388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.809398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.809399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.809400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.809415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.809416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.809419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.809425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.809426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1482 d472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.809427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.809428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.809429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.809430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.819357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.819359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.819360 LLDP, length 82 [|LLDP] 19:47:28.819399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.819410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.819423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.819423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 148a 7592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.819425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.819426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.819427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.819434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.819435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.819437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.819438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.819440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.829357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.829359 LLDP, length 82 [|LLDP] 19:47:28.829389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.829398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.829411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.829412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1492 16b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.829413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.829414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.829415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.829416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.829424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.829425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.829427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.829428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.829429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.839356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.839358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.839359 LLDP, length 82 [|LLDP] 19:47:28.839394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.839405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.839406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.839407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.839408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.839426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.839428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.839429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1499 b7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.839431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.839432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.839433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.839434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.849355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.849357 LLDP, length 82 [|LLDP] 19:47:28.849383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.849393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.849406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.849407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14a1 58f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.849408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.849409 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.849410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.849411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.849418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.849420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.849422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.849423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.849424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.859355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.859356 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.859357 LLDP, length 82 [|LLDP] 19:47:28.859392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.859403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.859417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.859418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14a8 fa12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.859420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.859421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.859422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.859423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.859430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.859431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.859433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.859435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.869358 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.869360 LLDP, length 82 [|LLDP] 19:47:28.869385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.869394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.869406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.869407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14b0 9b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.869409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.869410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.869416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.869417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.869419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.869420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.869421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.869422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.869424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.879356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.879358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.879359 LLDP, length 82 [|LLDP] 19:47:28.879392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.879402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.879415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.879416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14b8 3c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.879418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.879419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.879420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.879421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.879428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.879429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.879431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.879432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.889360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.889362 LLDP, length 82 [|LLDP] 19:47:28.889387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.889396 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.889397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.889398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.889414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.889415 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.889418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.889424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.889425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14bf dd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.889427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.889428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.889429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.889430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.899356 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.899357 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.899358 LLDP, length 82 [|LLDP] 19:47:28.899393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.899404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.899418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.899419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14c7 7e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.899421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.899422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.899423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.899429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.899430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.899433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.899434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.899435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.909354 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.909356 LLDP, length 82 [|LLDP] 19:47:28.909379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.909390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.909403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.909404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14cf 1fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.909406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.909407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.909408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.909409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.909416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.909417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.909419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.909420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.909422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.919357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.919358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.919359 LLDP, length 82 [|LLDP] 19:47:28.919393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.919404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.919405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.919406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.919407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.919425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.919427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.919428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14d6 c0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.919429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.919430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.919431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.919433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.929355 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.929357 LLDP, length 82 [|LLDP] 19:47:28.929389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.929398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.929410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.929411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14de 61f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.929412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.929413 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.929414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.929415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.929422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.929423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.929426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.929427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.929428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.939357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.939358 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.939359 LLDP, length 82 [|LLDP] 19:47:28.939398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.939408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.939423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.939424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14e6 0312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.939426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.939427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.939428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.939429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.939436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.939438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.939440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.939441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.949378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.949380 LLDP, length 82 [|LLDP] 19:47:28.949416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.949426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.949440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.949441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14ed a432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.949442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.949443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.949450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.949451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.949454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.949455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.949456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.949457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.949459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.959372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.959374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.959375 LLDP, length 82 [|LLDP] 19:47:28.959422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.959434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.959447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.959448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14f5 4552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.959450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.959451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.959452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.959453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.959461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.959462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.959465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.959466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.969365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.969367 LLDP, length 82 [|LLDP] 19:47:28.969398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.969407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.969408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.969409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.969426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.969428 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.969430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.969437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.969438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 14fc e672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.969440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.969441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.969442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.969443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.979365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.979366 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.979368 LLDP, length 82 [|LLDP] 19:47:28.979407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.979417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.979431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.979432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1504 8792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.979433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.979435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.979436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.979443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.979444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.979446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.979447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.979448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.989362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.989364 LLDP, length 82 [|LLDP] 19:47:28.989389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.989400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.989412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.989413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 150c 28b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.989415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.989416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.989416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.989417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.989424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.989425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.989428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.989429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.989430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:28.999363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.999365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:28.999366 LLDP, length 82 [|LLDP] 19:47:28.999399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:28.999409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:28.999410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:28.999411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:28.999412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.999429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:28.999432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:28.999433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1513 c9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:28.999434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:28.999435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:28.999436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:28.999438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.009367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.009369 LLDP, length 82 [|LLDP] 19:47:29.009393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.009402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.009415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.009416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 151b 6af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.009417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.009418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.009419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.009420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.009427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.009428 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.009430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.009431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.009432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.019357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.019359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.019360 LLDP, length 82 [|LLDP] 19:47:29.019399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.019409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.019422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.019423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1523 0c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.019424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.019425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.019426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.019427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.019434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.019436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.019438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.019439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.029911 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.029913 LLDP, length 82 [|LLDP] 19:47:29.029944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.029953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.029967 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.029968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 152a ad32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.029969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.029970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.029977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.029978 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.029980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.029981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.029983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.029984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.029985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.039363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.039365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.039366 LLDP, length 82 [|LLDP] 19:47:29.039406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.039417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.039431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.039431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1532 4e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.039433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.039434 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.039436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.039436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.039444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.039446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.039448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.039449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.049364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.049366 LLDP, length 82 [|LLDP] 19:47:29.049402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.049414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.049415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.049416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.049432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.049433 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.049436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.049443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.049444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1539 ef72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.049445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.049446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.049447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.049448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.059361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.059363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.059364 LLDP, length 82 [|LLDP] 19:47:29.059400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.059410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.059424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.059425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1541 9092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.059426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.059427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.059428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.059435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.059436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.059439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.059440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.059441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.069360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.069362 LLDP, length 82 [|LLDP] 19:47:29.069389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.069398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.069410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.069412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1549 31b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.069413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.069414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.069415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.069416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.069424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.069425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.069427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.069428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.069429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.079357 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.079359 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.079360 LLDP, length 82 [|LLDP] 19:47:29.079395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.079406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.079408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.079409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.079410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.079430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.079433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.079434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1550 d2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.079436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.079437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.079439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.079440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.089375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.089377 LLDP, length 82 [|LLDP] 19:47:29.089411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.089420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.089433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.089434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1558 73f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.089436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.089437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.089438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.089439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.089448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.089449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.089452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.089453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.089454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.099368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.099370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.099371 LLDP, length 82 [|LLDP] 19:47:29.099414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.099425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.099438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.099439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1560 1512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.099440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.099442 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.099443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.099444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.099452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.099453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.099456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.099457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.109365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.109366 LLDP, length 82 [|LLDP] 19:47:29.109392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.109401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.109414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.109415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1567 b632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.109417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.109418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.109424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.109426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.109428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.109429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.109430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.109431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.109433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.119367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.119369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.119371 LLDP, length 82 [|LLDP] 19:47:29.119412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.119422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.119436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.119437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 156f 5752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.119438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.119440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.119441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.119442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.119451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.119452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.119454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.119456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.129368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.129370 LLDP, length 82 [|LLDP] 19:47:29.129396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.129406 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.129407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.129409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.129425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.129426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.129429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.129436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.129436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1576 f872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.129438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.129439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.129440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.129442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.139363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.139365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.139366 LLDP, length 82 [|LLDP] 19:47:29.139404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.139414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.139428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.139429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 157e 9992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.139430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.139432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.139433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.139440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.139441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.139444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.139445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.139446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.149363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.149365 LLDP, length 82 [|LLDP] 19:47:29.149390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.149400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.149413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.149414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1586 3ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.149416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.149417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.149417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.149418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.149426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.149427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.149430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.149431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.149432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.159362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.159364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.159365 LLDP, length 82 [|LLDP] 19:47:29.159401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.159411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.159412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.159413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.159414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.159433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.159436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.159436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 158d dbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.159438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.159439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.159440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.159441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.169367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.169369 LLDP, length 82 [|LLDP] 19:47:29.169397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.169408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.169421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.169422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1595 7cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.169423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.169425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.169426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.169427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.169434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.169435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.169438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.169439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.169440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.179360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.179362 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.179363 LLDP, length 82 [|LLDP] 19:47:29.179404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.179412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.179426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.179427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 159d 1e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.179428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.179429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.179430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.179431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.179439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.179440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.179442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.179444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.189367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.189369 LLDP, length 82 [|LLDP] 19:47:29.189393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.189401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.189414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.189415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15a4 bf32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.189416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.189417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.189423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.189424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.189426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.189427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.189428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.189430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.189431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.199366 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.199367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.199368 LLDP, length 82 [|LLDP] 19:47:29.199403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.199413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.199426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.199427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15ac 6052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.199428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.199429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.199430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.199431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.199439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.199440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.199442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.199444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.209364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.209366 LLDP, length 82 [|LLDP] 19:47:29.209396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.209405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.209406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.209407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.209423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.209424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.209427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.209434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.209434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15b4 0172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.209436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.209437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.209438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.209440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.219362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.219364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.219364 LLDP, length 82 [|LLDP] 19:47:29.219408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.219416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.219430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.219430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15bb a292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.219432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.219433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.219434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.219441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.219442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.219445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.219446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.219447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.229361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.229363 LLDP, length 82 [|LLDP] 19:47:29.229386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.229396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.229408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.229409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15c3 43b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.229410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.229411 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.229412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.229413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.229421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.229422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.229424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.229425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.229426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.239361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.239363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.239364 LLDP, length 82 [|LLDP] 19:47:29.239397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.239406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.239407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.239408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.239409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.239428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.239431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.239432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15ca e4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.239433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.239434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.239435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.239436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.253439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.253441 LLDP, length 82 [|LLDP] 19:47:29.253465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.253473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.253486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.253487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15d2 85f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.253489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.253490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.253491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.253492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.253500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.253501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.253503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.253504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.253506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.259359 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.259360 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.259361 LLDP, length 82 [|LLDP] 19:47:29.259396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.259405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.259419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.259420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15da 2712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.259421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.259422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.259424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.259425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.259432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.259433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.259435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.259436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.269362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.269364 LLDP, length 82 [|LLDP] 19:47:29.269389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.269398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.269410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.269411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15e1 c832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.269412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.269413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.269420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.269421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.269423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.269424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.269425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.269426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.269428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.279363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.279365 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.279366 LLDP, length 82 [|LLDP] 19:47:29.279403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.279412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.279425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.279425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15e9 6952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.279427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.279428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.279429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.279430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.279438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.279439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.279442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.279443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.289363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.289365 LLDP, length 82 [|LLDP] 19:47:29.289390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.289398 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.289399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.289400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.289415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.289417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.289419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.289426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.289427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15f1 0a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.289429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.289430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.289431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.289432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.299362 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.299364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.299365 LLDP, length 82 [|LLDP] 19:47:29.299405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.299413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.299426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.299427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 15f8 ab92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.299429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.299430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.299431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.299438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.299439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.299441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.299442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.299443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.309364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.309366 LLDP, length 82 [|LLDP] 19:47:29.309391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.309400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.309413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.309413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1600 4cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.309415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.309416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.309417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.309418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.309426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.309427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.309429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.309430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.309432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.319360 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.319362 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.319363 LLDP, length 82 [|LLDP] 19:47:29.319401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.319409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.319410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.319411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.319412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.319431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.319434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.319435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1607 edd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.319436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.319437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.319438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.319440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.329363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.329365 LLDP, length 82 [|LLDP] 19:47:29.329390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.329399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.329411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.329412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 160f 8ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.329413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.329414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.329416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.329417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.329424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.329425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.329428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.329429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.329430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.339361 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.339363 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.339364 LLDP, length 82 [|LLDP] 19:47:29.339398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.339408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.339421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.339422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1617 3012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.339424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.339425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.339426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.339427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.339435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.339436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.339438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.339440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.349370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.349372 LLDP, length 82 [|LLDP] 19:47:29.349401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.349411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.349425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.349425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 161e d132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.349427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.349428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.349435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.349436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.349438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.349440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.349440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.349441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.349443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.359364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.359366 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.359367 LLDP, length 82 [|LLDP] 19:47:29.359409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.359418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.359431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.359432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1626 7252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.359434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.359434 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.359435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.359436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.359444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.359445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.359448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.359449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.369363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.369365 LLDP, length 82 [|LLDP] 19:47:29.369396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.369405 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.369407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.369408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.369424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.369425 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.369428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.369435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.369436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 162e 1372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.369438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.369439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.369440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.369442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.379369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.379371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.379372 LLDP, length 82 [|LLDP] 19:47:29.379408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.379421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.379435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.379436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1635 b492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.379438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.379438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.379440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.379446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.379447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.379450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.379451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.379452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.389379 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.389380 LLDP, length 82 [|LLDP] 19:47:29.389419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.389431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.389444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.389445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 163d 55b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.389447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.389447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.389448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.389449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.389457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.389458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.389460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.389461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.389462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.399368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.399370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.399371 LLDP, length 82 [|LLDP] 19:47:29.399409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.399420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.399421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.399422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.399423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.399441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.399443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.399445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1644 f6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.399446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.399447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.399448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.399449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.409370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.409372 LLDP, length 82 [|LLDP] 19:47:29.409399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.409409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.409422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.409423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 164c 97f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.409424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.409425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.409426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.409427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.409435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.409436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.409439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.409440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.409441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.419369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.419370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.419371 LLDP, length 82 [|LLDP] 19:47:29.419414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.419424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.419438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.419438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1654 3912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.419440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.419441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.419442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.419443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.419450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.419451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.419454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.419455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.429387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.429395 LLDP, length 82 [|LLDP] 19:47:29.429447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.429461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.429476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.429477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 165b da32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.429478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.429480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.429487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.429489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.429491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.429492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.429493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.429494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.429496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.439376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.439378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.439379 LLDP, length 82 [|LLDP] 19:47:29.439417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.439428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.439441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.439442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1663 7b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.439444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.439445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.439445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.439446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.439454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.439455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.439457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.439459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.449367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.449369 LLDP, length 82 [|LLDP] 19:47:29.449393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.449403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.449404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.449405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.449421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.449422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.449424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.449431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.449431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 166b 1c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.449433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.449434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.449435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.449436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.459367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.459369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.459370 LLDP, length 82 [|LLDP] 19:47:29.459410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.459420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.459432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.459433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1672 bd92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.459435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.459436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.459437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.459443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.459444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.459446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.459447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.459449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.469372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.469374 LLDP, length 82 [|LLDP] 19:47:29.469414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.469425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.469437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.469438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 167a 5eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.469440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.469441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.469442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.469443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.469450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.469451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.469454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.469455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.469456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.479368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.479370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.479378 LLDP, length 82 [|LLDP] 19:47:29.479414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.479424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.479425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.479426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.479427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.479445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.479447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.479448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1681 ffd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.479449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.479450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.479451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.479453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.489369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.489371 LLDP, length 82 [|LLDP] 19:47:29.489404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.489413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.489425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.489426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1689 a0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.489427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.489428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.489429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.489430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.489437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.489439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.489441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.489442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.489443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.499375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.499378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.499379 LLDP, length 82 [|LLDP] 19:47:29.499425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.499435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.499447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.499448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1691 4212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.499449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.499450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.499451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.499452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.499461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.499462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.499464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.499466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.509368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.509370 LLDP, length 82 [|LLDP] 19:47:29.509395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.509403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.509415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.509416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1698 e332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.509418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.509419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.509425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.509426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.509428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.509429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.509430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.509431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.509432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.519372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.519374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.519375 LLDP, length 82 [|LLDP] 19:47:29.519413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.519424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.519436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.519436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16a0 8452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.519438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.519439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.519440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.519441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.519449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.519450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.519452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.519453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.529377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.529379 LLDP, length 82 [|LLDP] 19:47:29.529406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.529417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.529418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.529419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.529435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.529437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.529445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.529452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.529453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16a8 2572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.529454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.529456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.529457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.529458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.539376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.539378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.539379 LLDP, length 82 [|LLDP] 19:47:29.539423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.539434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.539446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.539447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16af c692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.539449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.539450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.539451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.539458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.539459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.539461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.539462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.539464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.549370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.549372 LLDP, length 82 [|LLDP] 19:47:29.549404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.549415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.549427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.549428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16b7 67b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.549430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.549431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.549432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.549433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.549441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.549442 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.549444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.549445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.549447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.559371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.559373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.559373 LLDP, length 82 [|LLDP] 19:47:29.559413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.559423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.559424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.559425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.559426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.559443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.559445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.559447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16bf 08d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.559448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.559449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.559450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.559451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.569402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.569404 LLDP, length 82 [|LLDP] 19:47:29.569454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.569467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.569480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.569481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16c6 a9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.569483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.569484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.569485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.569486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.569497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.569498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.569501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.569502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.569503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.579375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.579377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.579378 LLDP, length 82 [|LLDP] 19:47:29.579423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.579433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.579447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.579448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16ce 4b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.579449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.579451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.579451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.579452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.579461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.579465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.579466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.589375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.589376 LLDP, length 82 [|LLDP] 19:47:29.589406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.589417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.589430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.589431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16d5 ec32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.589432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.589433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.589440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.589441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.589443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.589444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.589445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.589446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.589448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.599375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.599377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.599378 LLDP, length 82 [|LLDP] 19:47:29.599417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.599427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.599440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.599441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16dd 8d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.599443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.599444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.599445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.599446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.599454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.599455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.599457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.599458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.609367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.609369 LLDP, length 82 [|LLDP] 19:47:29.609394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.609403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.609404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.609405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.609421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.609422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.609424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.609431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.609432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16e5 2e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.609433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.609434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.609435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.609437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.619371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.619373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.619374 LLDP, length 82 [|LLDP] 19:47:29.619407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.619417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.619430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.619430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16ec cf92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.619432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.619433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.619434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.619440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.619441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.619443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.619444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.619446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.629368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.629370 LLDP, length 82 [|LLDP] 19:47:29.629400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.629410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.629423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.629424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16f4 70b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.629425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.629426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.629427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.629428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.629436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.629437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.629439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.629440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.629441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.639374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.639376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.639377 LLDP, length 82 [|LLDP] 19:47:29.639411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.639421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.639422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.639423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.639424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.639441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.639443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.639459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 16fc 11d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.639461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.639462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.639463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.639464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.649396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.649398 LLDP, length 82 [|LLDP] 19:47:29.649432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.649445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.649459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.649460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1703 b2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.649462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.649463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.649464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.649465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.649474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.649475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.649478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.649479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.649480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.659375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.659377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.659378 LLDP, length 82 [|LLDP] 19:47:29.659420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.659431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.659444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.659445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 170b 5412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.659446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.659447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.659448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.659449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.659457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.659458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.659461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.659462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.669372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.669373 LLDP, length 82 [|LLDP] 19:47:29.669398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.669408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.669421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.669422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1712 f532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.669424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.669425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.669431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.669432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.669435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.669436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.669437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.669438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.669439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.679368 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.679369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.679370 LLDP, length 82 [|LLDP] 19:47:29.679402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.679411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.679424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.679424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 171a 9652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.679426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.679427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.679428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.679429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.679436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.679438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.679440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.679442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.689373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.689374 LLDP, length 82 [|LLDP] 19:47:29.689400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.689410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.689411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.689412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.689428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.689429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.689431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.689438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.689439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1722 3772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.689440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.689441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.689442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.689443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.699366 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.699367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.699369 LLDP, length 82 [|LLDP] 19:47:29.699400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.699410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.699424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.699425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1729 d892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.699426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.699427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.699428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.699435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.699436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.699438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.699439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.699440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.709365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.709367 LLDP, length 82 [|LLDP] 19:47:29.709393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.709401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.709414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.709415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1731 79b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.709417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.709418 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.709419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.709420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.709427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.709428 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.709430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.709431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.709433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.719363 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.719364 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.719365 LLDP, length 82 [|LLDP] 19:47:29.719400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.719409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.719410 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.719411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.719412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.719428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.719431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.719432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1739 1ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.719433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.719434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.719435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.719437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.729364 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.729365 LLDP, length 82 [|LLDP] 19:47:29.729383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.729392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.729404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.729405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1740 bbf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.729406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.729408 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.729409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.729410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.729417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.729418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.729420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.729421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.729422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.739365 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.739367 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.739368 LLDP, length 82 [|LLDP] 19:47:29.739396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.739408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.739422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.739423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1748 5d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.739425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.739426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.739427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.739428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.739435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.739436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.739439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.739440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.749386 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.749388 LLDP, length 82 [|LLDP] 19:47:29.749423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.749434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.749448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.749449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 174f fe32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.749450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.749451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.749458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.749459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.749462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.749463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.749464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.749465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.749466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.759379 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.759381 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.759382 LLDP, length 82 [|LLDP] 19:47:29.759419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.759430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.759443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.759444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1757 9f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.759446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.759447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.759448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.759449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.759457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.759458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.759460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.759462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.769373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.769374 LLDP, length 82 [|LLDP] 19:47:29.769409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.769417 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.769418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.769419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.769436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.769438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.769440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.769447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.769448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 175f 4072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.769449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.769450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.769451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.769452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.779378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.779379 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.779380 LLDP, length 82 [|LLDP] 19:47:29.779418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.779428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.779441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.779442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1766 e192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.779443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.779445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.779446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.779453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.779454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.779456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.779458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.779459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.789377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.789378 LLDP, length 82 [|LLDP] 19:47:29.789404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.789413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.789426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.789427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 176e 82b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.789428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.789430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.789431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.789432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.789439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.789440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.789443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.789444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.789445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.799376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.799377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.799378 LLDP, length 82 [|LLDP] 19:47:29.799415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.799429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.799430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.799431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.799432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.799451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.799453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.799454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1776 23d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.799456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.799457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.799458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.799459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.809371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.809373 LLDP, length 82 [|LLDP] 19:47:29.809398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.809408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.809421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.809422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 177d c4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.809424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.809425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.809425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.809426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.809434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.809435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.809438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.809439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.809440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.819371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.819373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.819374 LLDP, length 82 [|LLDP] 19:47:29.819411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.819421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.819434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.819435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1785 6612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.819437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.819438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.819439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.819440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.819447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.819448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.819451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.819452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.829375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.829377 LLDP, length 82 [|LLDP] 19:47:29.829403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.829413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.829427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.829428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 178d 0732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.829429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.829430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.829436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.829437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.829440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.829441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.829442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.829443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.829444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.839367 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.839369 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.839370 LLDP, length 82 [|LLDP] 19:47:29.839399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.839410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.839424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.839425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1794 a852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.839426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.839428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.839429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.839430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.839437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.839438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.839441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.839442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.849378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.849379 LLDP, length 82 [|LLDP] 19:47:29.849413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.849422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.849423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.849424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.849441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.849443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.849445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.849452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.849453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 179c 4972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.849454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.849455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.849456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.849458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.859378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.859380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.859381 LLDP, length 82 [|LLDP] 19:47:29.859417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.859427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.859440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.859441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17a3 ea92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.859443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.859444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.859445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.859452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.859453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.859456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.859457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.859459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.869377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.869379 LLDP, length 82 [|LLDP] 19:47:29.869403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.869412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.869425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.869426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ab 8bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.869427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.869428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.869429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.869430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.869438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.869439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.869441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.869442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.869444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.879373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.879375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.879376 LLDP, length 82 [|LLDP] 19:47:29.879414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.879423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.879424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.879425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.879426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.879443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.879446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.879447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17b3 2cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.879449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.879450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.879451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.879452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.889375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.889377 LLDP, length 82 [|LLDP] 19:47:29.889405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.889414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.889429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.889430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ba cdf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.889431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.889433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.889434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.889435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.889442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.889443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.889445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.889446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.889448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.899375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.899376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.899378 LLDP, length 82 [|LLDP] 19:47:29.899413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.899422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.899435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.899436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17c2 6f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.899437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.899438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.899439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.899441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.899449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.899450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.899452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.899453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.909372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.909373 LLDP, length 82 [|LLDP] 19:47:29.909399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.909407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.909421 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.909422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ca 1032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.909423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.909425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.909431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.909433 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.909435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.909436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.909437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.909438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.909440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.919376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.919378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.919379 LLDP, length 82 [|LLDP] 19:47:29.919415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.919424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.919436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.919437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17d1 b152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.919438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.919439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.919440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.919441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.919450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.919451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.919453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.919454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.929372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.929374 LLDP, length 82 [|LLDP] 19:47:29.929398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.929407 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.929408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.929409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.929425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.929426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.929428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.929435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.929436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17d9 5272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.929437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.929438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.929440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.929441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.939372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.939374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.939375 LLDP, length 82 [|LLDP] 19:47:29.939408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.939418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.939431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.939432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17e0 f392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.939433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.939434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.939435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.939442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.939443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.939445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.939446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.939448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.949372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.949374 LLDP, length 82 [|LLDP] 19:47:29.949397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.949406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.949418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.949419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17e8 94b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.949421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.949422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.949423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.949424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.949431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.949432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.949435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.949436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.949437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.959374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.959376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.959377 LLDP, length 82 [|LLDP] 19:47:29.959414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.959423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.959424 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.959425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.959426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.959444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.959447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.959448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17f0 35d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.959449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.959450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.959451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.959452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.969374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.969375 LLDP, length 82 [|LLDP] 19:47:29.969400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.969409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.969422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.969423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17f7 d6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.969424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.969425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.969426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.969428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.969435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.969436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.969438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.969439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.969441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.979375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.979377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.979378 LLDP, length 82 [|LLDP] 19:47:29.979416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.979425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.979438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.979438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 17ff 7812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.979440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.979441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.979442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.979443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.979451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.979453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.979455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.979456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.989373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.989375 LLDP, length 82 [|LLDP] 19:47:29.989399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.989408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.989420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.989421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1807 1932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.989423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.989424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.989430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.989431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.989433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.989434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.989435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.989436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.989437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:29.999374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.999375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:29.999376 LLDP, length 82 [|LLDP] 19:47:29.999411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:29.999421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:29.999433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:29.999434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 180e ba52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:29.999436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:29.999437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:29.999438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:29.999439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.999447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:29.999448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:29.999450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:29.999451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.009374 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.009376 LLDP, length 82 [|LLDP] 19:47:30.009407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.009415 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.009416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.009416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.009432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.009434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.009436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.009443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.009444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1816 5b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.009445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.009446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.009447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.009449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.019375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.019376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.019377 LLDP, length 82 [|LLDP] 19:47:30.019411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.019424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.019438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.019439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 181d fc92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.019440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.019441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.019442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.019449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.019450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.019453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.019454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.019455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.029385 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.029386 LLDP, length 82 [|LLDP] 19:47:30.029414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.029425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.029438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.029439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1825 9db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.029440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.029441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.029442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.029443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.029451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.029452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.029454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.029455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.029457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.039378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.039380 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.039381 LLDP, length 82 [|LLDP] 19:47:30.039416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.039427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.039428 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.039429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.039430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.039447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.039450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.039451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 182d 3ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.039453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.039454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.039455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.039456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.049378 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.049380 LLDP, length 82 [|LLDP] 19:47:30.049404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.049415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.049428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.049429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1834 dff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.049430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.049431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.049432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.049433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.049440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.049441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.049444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.049445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.049446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.059376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.059378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.059379 LLDP, length 82 [|LLDP] 19:47:30.059412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.059423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.059435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.059436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 183c 8112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.059437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.059438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.059439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.059440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.059448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.059449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.059452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.059453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.069377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.069379 LLDP, length 82 [|LLDP] 19:47:30.069403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.069413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.069425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.069426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1844 2232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.069428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.069429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.069435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.069436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.069439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.069440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.069441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.069442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.069443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.079376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.079378 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.079379 LLDP, length 82 [|LLDP] 19:47:30.079413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.079424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.079436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.079437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 184b c352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.079439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.079440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.079441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.079442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.079450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.079451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.079453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.079454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.089377 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.089378 LLDP, length 82 [|LLDP] 19:47:30.089409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.089419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.089420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.089421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.089437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.089438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.089441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.089448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.089449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1853 6472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.089450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.089451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.089452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.089454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.102341 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.102343 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.102344 LLDP, length 82 [|LLDP] 19:47:30.102369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.102378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.102391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.102392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 185b 0592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.102393 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.102395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.102396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.102403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.102404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.102406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.102407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.102409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.109380 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.109382 LLDP, length 82 [|LLDP] 19:47:30.109416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.109426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.109439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.109440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1862 a6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.109441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.109442 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.109443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.109444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.109452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.109453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.109456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.109457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.109458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.119373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.119374 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.119375 LLDP, length 82 [|LLDP] 19:47:30.119409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.119418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.119419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.119420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.119421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.119437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.119440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.119441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 186a 47d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.119443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.119444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.119444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.119446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.129373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.129375 LLDP, length 82 [|LLDP] 19:47:30.129396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.129404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.129416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.129417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1871 e8f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.129418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.129419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.129420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.129421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.129428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.129429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.129431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.129432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.129434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.139375 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.139376 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.139377 LLDP, length 82 [|LLDP] 19:47:30.139406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.139415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.139427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.139428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1879 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.139429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.139431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.139431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.139432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.139440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.139441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.139443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.139444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.149369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.149370 LLDP, length 82 [|LLDP] 19:47:30.149391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.149398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.149411 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.149412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1881 2b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.149413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.149414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.149420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.149421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.149424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.149425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.149425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.149426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.149428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.162469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.162471 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.162472 LLDP, length 82 [|LLDP] 19:47:30.162493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.162501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.162512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.162513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1888 cc52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.162515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.162516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.162517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.162518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.162524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.162525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.162527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.162528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.169369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.169371 LLDP, length 82 [|LLDP] 19:47:30.169396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.169403 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.169405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.169406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.169421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.169422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.169424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.169430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.169431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1890 6d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.169433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.169434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.169435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.169436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.179369 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.179370 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.179371 LLDP, length 82 [|LLDP] 19:47:30.179404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.179412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.179424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.179425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1898 0e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.179426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.179427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.179428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.179434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.179435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.179437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.179438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.179439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.189372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.189374 LLDP, length 82 [|LLDP] 19:47:30.189393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.189401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.189413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.189414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 189f afb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.189415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.189416 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.189417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.189418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.189425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.189426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.189428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.189429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.189431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.199370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.199371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.199372 LLDP, length 82 [|LLDP] 19:47:30.199405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.199413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.199414 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.199415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.199416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.199432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.199435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.199436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18a7 50d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.199437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.199438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.199439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.199441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.209372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.209374 LLDP, length 82 [|LLDP] 19:47:30.209402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.209411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.209423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.209424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18ae f1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.209425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.209426 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.209427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.209429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.209436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.209437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.209439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.209440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.209441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.223545 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.223547 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.223548 LLDP, length 82 [|LLDP] 19:47:30.223571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.223579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.223592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.223593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18b6 9312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.223594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.223595 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.223596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.223597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.223604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.223605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.223607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.223608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.229370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.229372 LLDP, length 82 [|LLDP] 19:47:30.229392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.229400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.229412 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.229413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18be 3432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.229414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.229415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.229421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.229422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.229425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.229426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.229427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.229428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.229429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.239373 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.239375 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.239376 LLDP, length 82 [|LLDP] 19:47:30.239405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.239413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.239426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.239427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18c5 d552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.239428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.239429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.239430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.239431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.239438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.239439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.239442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.239443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.249371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.249372 LLDP, length 82 [|LLDP] 19:47:30.249392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.249400 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.249401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.249402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.249417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.249418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.249421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.249427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.249428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18cd 7672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.249429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.249430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.249431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.249432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.259370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.259371 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.259372 LLDP, length 82 [|LLDP] 19:47:30.259405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.259412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.259424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.259425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18d5 1792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.259427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.259428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.259429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.259435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.259436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.259438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.259439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.259441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.269371 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.269373 LLDP, length 82 [|LLDP] 19:47:30.269399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.269407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.269419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.269420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18dc b8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.269421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.269422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.269423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.269424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.269431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.269432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.269434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.269435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.269436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.279372 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.279373 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.279375 LLDP, length 82 [|LLDP] 19:47:30.279410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.279418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.279419 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.279420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.279421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.279438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.279441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.279441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18e4 59d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.279443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.279444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.279445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.279446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.289370 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.289372 LLDP, length 82 [|LLDP] 19:47:30.289397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.289404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.289417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.289418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18eb faf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.289419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.289420 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.289421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.289422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.289429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.289430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.289432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.289433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.289435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.299376 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.299377 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.299378 LLDP, length 82 [|LLDP] 19:47:30.299421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.299433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.299446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.299448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18f3 9c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.299449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.299450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.299451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.299452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.299460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.299461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.299464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.299465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.309398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.309400 LLDP, length 82 [|LLDP] 19:47:30.309438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.309449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.309463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.309464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 18fb 3d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.309466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.309467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.309475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.309476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.309479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.309480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.309481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.309482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.309483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.319397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.319399 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.319401 LLDP, length 82 [|LLDP] 19:47:30.319439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.319450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.319463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.319464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1902 de52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.319466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.319467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.319468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.319469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.319478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.319480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.319482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.319484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.329402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.329404 LLDP, length 82 [|LLDP] 19:47:30.329446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.329457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.329458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.329459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.329478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.329479 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.329481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.329490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.329491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 190a 7f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.329493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.329494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.329495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.329496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.339391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.339394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.339395 LLDP, length 82 [|LLDP] 19:47:30.339429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.339439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.339452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.339453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1912 2092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.339454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.339455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.339456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.339464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.339465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.339467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.339468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.339470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.349396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.349398 LLDP, length 82 [|LLDP] 19:47:30.349433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.349444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.349458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.349459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1919 c1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.349461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.349462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.349463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.349464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.349473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.349474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.349477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.349478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.349479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.359402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.359403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.359411 LLDP, length 82 [|LLDP] 19:47:30.359449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.359459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.359460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.359461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.359462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.359480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.359483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.359484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1921 62d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.359486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.359487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.359488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.359489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.369389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.369392 LLDP, length 82 [|LLDP] 19:47:30.369423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.369435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.369448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.369449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1929 03f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.369450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.369451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.369453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.369454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.369462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.369464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.369466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.369467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.369469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.379396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.379398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.379399 LLDP, length 82 [|LLDP] 19:47:30.379437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.379448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.379461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.379462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1930 a512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.379464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.379465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.379466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.379467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.379475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.379476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.379478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.379480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.389392 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.389394 LLDP, length 82 [|LLDP] 19:47:30.389427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.389438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.389452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.389453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1938 4632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.389454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.389455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.389463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.389464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.389466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.389467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.389468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.389469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.389471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.399400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.399402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.399404 LLDP, length 82 [|LLDP] 19:47:30.399442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.399453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.399466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.399467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 193f e752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.399468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.399470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.399471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.399472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.399480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.399481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.399484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.399485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.409395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.409397 LLDP, length 82 [|LLDP] 19:47:30.409432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.409443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.409444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.409445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.409463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.409464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.409467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.409474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.409475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1947 8872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.409477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.409478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.409479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.409480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.419401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.419402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.419404 LLDP, length 82 [|LLDP] 19:47:30.419439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.419450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.419463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.419464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 194f 2992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.419466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.419467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.419468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.419476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.419477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.419479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.419480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.419482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.429389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.429391 LLDP, length 82 [|LLDP] 19:47:30.429428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.429438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.429451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.429452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1956 cab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.429453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.429454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.429455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.429456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.429464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.429466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.429468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.429469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.429470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.439384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.439392 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.439393 LLDP, length 82 [|LLDP] 19:47:30.439429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.439438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.439439 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.439440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.439441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.439460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.439463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.439463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 195e 6bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.439465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.439466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.439467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.439468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.449390 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.449392 LLDP, length 82 [|LLDP] 19:47:30.449423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.449433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.449447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.449448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1966 0cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.449449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.449450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.449451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.449452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.449461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.449462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.449464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.449465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.449467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.459396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.459398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.459399 LLDP, length 82 [|LLDP] 19:47:30.459435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.459444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.459458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.459459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 196d ae12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.459460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.459461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.459462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.459464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.459471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.459473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.459475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.459477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.469391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.469393 LLDP, length 82 [|LLDP] 19:47:30.469423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.469432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.469445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.469446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1975 4f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.469448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.469449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.469456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.469457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.469460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.469461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.469462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.469463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.469464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.479399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.479401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.479402 LLDP, length 82 [|LLDP] 19:47:30.479439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.479451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.479464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.479465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 197c f052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.479466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.479467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.479468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.479469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.479477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.479478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.479480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.479482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.489388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.489390 LLDP, length 82 [|LLDP] 19:47:30.489421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.489432 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.489433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.489434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.489451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.489452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.489454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.489461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.489462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1984 9172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.489464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.489465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.489466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.489467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.499395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.499397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.499398 LLDP, length 82 [|LLDP] 19:47:30.499432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.499441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.499454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.499455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 198c 3292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.499457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.499458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.499459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.499466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.499467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.499470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.499486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.499489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.509406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.509408 LLDP, length 82 [|LLDP] 19:47:30.509440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.509453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.509466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.509467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1993 d3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.509469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.509470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.509471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.509473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.509483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.509484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.509487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.509488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.509489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.519401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.519404 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.519405 LLDP, length 82 [|LLDP] 19:47:30.519449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.519459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.519460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.519461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.519462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.519481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.519484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.519485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 199b 74d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.519487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.519488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.519489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.519490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.529394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.529396 LLDP, length 82 [|LLDP] 19:47:30.529430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.529439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.529452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.529453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19a3 15f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.529455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.529456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.529457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.529458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.529466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.529467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.529470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.529471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.529472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.539412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.539416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.539417 LLDP, length 82 [|LLDP] 19:47:30.539470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.539481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.539495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.539496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19aa b712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.539498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.539499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.539500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.539501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.539511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.539512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.539515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.539517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.549394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.549403 LLDP, length 82 [|LLDP] 19:47:30.549443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.549453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.549466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.549468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19b2 5832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.549469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.549470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.549478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.549479 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.549482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.549483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.549484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.549485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.549487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.559398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.559400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.559408 LLDP, length 82 [|LLDP] 19:47:30.559440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.559449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.559462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.559463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19b9 f952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.559464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.559465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.559466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.559467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.559475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.559477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.559479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.559480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.569395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.569398 LLDP, length 82 [|LLDP] 19:47:30.569435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.569444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.569445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.569446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.569464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.569465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.569468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.569476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.569477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19c1 9a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.569478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.569479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.569480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.569482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.579384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.579393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.579395 LLDP, length 82 [|LLDP] 19:47:30.579425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.579434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.579447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.579447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19c9 3b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.579449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.579450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.579451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.579458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.579460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.579463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.579465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.589384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.589386 LLDP, length 82 [|LLDP] 19:47:30.589416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.589424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.589437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.589438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19d0 dcb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.589440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.589441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.589442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.589443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.589451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.589452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.589454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.589455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.589456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.599403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.599406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.599413 LLDP, length 82 [|LLDP] 19:47:30.599445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.599460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.599461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.599462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.599463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.599482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.599485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.599486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19d8 7dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.599487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.599489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.599490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.599491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.609391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.609393 LLDP, length 82 [|LLDP] 19:47:30.609425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.609434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.609447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.609448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19e0 1ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.609449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.609450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.609452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.609453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.609461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.609462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.609464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.609465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.609466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.619383 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.619394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.619395 LLDP, length 82 [|LLDP] 19:47:30.619424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.619433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.619446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.619447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19e7 c012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.619448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.619449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.619451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.619452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.619459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.619460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.619463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.619464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.629383 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.629385 LLDP, length 82 [|LLDP] 19:47:30.629418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.629428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.629443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.629444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19ef 6132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.629445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.629446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.629453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.629454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.629456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.629457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.629458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.629459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.629461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.639399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.639408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.639409 LLDP, length 82 [|LLDP] 19:47:30.639447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.639457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.639470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.639470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19f7 0252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.639472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.639473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.639474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.639475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.639484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.639485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.639487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.639489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.649388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.649390 LLDP, length 82 [|LLDP] 19:47:30.649417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.649427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.649428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.649429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.649445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.649446 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.649448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.649456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.649457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 19fe a372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.649458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.649459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.649460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.649462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.659384 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.659398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.659399 LLDP, length 82 [|LLDP] 19:47:30.659427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.659436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.659448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.659449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a06 4492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.659451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.659452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.659453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.659460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.659461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.659463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.659464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.659466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.669391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.669393 LLDP, length 82 [|LLDP] 19:47:30.669438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.669450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.669464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.669465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a0d e5b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.669467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.669468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.669469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.669470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.669478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.669479 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.669481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.669482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.669483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.679399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.679401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.679409 LLDP, length 82 [|LLDP] 19:47:30.679444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.679452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.679454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.679455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.679456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.679473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.679475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.679476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a15 86d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.679478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.679479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.679480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.679481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.689387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.689389 LLDP, length 82 [|LLDP] 19:47:30.689421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.689430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.689443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.689444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a1d 27f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.689446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.689447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.689448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.689449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.689456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.689458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.689460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.689461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.689462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.699383 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.699394 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.699395 LLDP, length 82 [|LLDP] 19:47:30.699425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.699435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.699447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.699448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a24 c912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.699450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.699450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.699452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.699453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.699460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.699461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.699463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.699464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.709409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.709417 LLDP, length 82 [|LLDP] 19:47:30.709465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.709477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.709490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.709491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a2c 6a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.709492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.709494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.709503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.709504 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.709506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.709508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.709509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.709510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.709511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.719403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.719405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.719406 LLDP, length 82 [|LLDP] 19:47:30.719441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.719451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.719464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.719465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a34 0b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.719466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.719467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.719468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.719469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.719477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.719478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.719480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.719482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.729388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.729389 LLDP, length 82 [|LLDP] 19:47:30.729423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.729433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.729434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.729435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.729451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.729452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.729455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.729462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.729462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a3b ac72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.729464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.729465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.729466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.729467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.739398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.739400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.739401 LLDP, length 82 [|LLDP] 19:47:30.739432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.739442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.739455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.739455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a43 4d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.739457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.739458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.739459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.739466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.739467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.739469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.739470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.739472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.749386 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.749388 LLDP, length 82 [|LLDP] 19:47:30.749413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.749421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.749434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.749435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a4a eeb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.749436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.749437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.749438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.749439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.749446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.749447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.749450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.749450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.749452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.759391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.759393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.759394 LLDP, length 82 [|LLDP] 19:47:30.759425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.759434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.759435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.759436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.759437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.759454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.759456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.759457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a52 8fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.759459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.759460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.759461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.759462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.769389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.769390 LLDP, length 82 [|LLDP] 19:47:30.769415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.769424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.769437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.769438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a5a 30f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.769440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.769441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.769442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.769443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.769450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.769451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.769453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.769455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.769456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.779412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.779414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.779415 LLDP, length 82 [|LLDP] 19:47:30.779455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.779466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.779479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.779480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a61 d212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.779482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.779483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.779484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.779485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.779493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.779494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.779497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.779498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.789394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.789396 LLDP, length 82 [|LLDP] 19:47:30.789425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.789434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.789447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.789448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a69 7332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.789450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.789451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.789458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.789459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.789461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.789462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.789463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.789464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.789466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.799393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.799395 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.799396 LLDP, length 82 [|LLDP] 19:47:30.799426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.799436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.799448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.799449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a71 1452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.799450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.799452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.799453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.799453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.799461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.799462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.799464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.799465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.809387 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.809389 LLDP, length 82 [|LLDP] 19:47:30.809421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.809430 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.809431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.809432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.809448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.809449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.809452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.809458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.809459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a78 b572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.809461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.809462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.809463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.809464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.819394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.819396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.819397 LLDP, length 82 [|LLDP] 19:47:30.819433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.819443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.819456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.819457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a80 5692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.819459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.819460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.819461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.819467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.819468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.819470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.819471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.819473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.829389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.829391 LLDP, length 82 [|LLDP] 19:47:30.829417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.829427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.829440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.829441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a87 f7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.829442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.829443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.829444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.829445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.829453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.829454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.829456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.829458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.829459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.839395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.839397 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.839398 LLDP, length 82 [|LLDP] 19:47:30.839428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.839437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.839438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.839439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.839440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.839457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.839460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.839461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a8f 98d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.839462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.839463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.839464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.839466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.849386 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.849388 LLDP, length 82 [|LLDP] 19:47:30.849414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.849422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.849435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.849436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a97 39f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.849437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.849438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.849439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.849440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.849447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.849449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.849451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.849452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.849453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.859399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.859400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.859402 LLDP, length 82 [|LLDP] 19:47:30.859432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.859440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.859452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.859453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1a9e db12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.859454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.859455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.859457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.859458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.859465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.859466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.859469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.859470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.869389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.869390 LLDP, length 82 [|LLDP] 19:47:30.869415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.869424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.869436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.869437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1aa6 7c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.869438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.869440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.869446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.869447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.869449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.869450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.869451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.869452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.869453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.879396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.879398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.879399 LLDP, length 82 [|LLDP] 19:47:30.879435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.879443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.879456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.879456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1aae 1d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.879458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.879459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.879460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.879461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.879469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.879470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.879472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.879474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.889391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.889393 LLDP, length 82 [|LLDP] 19:47:30.889418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.889427 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.889428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.889429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.889444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.889445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.889448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.889454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.889455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ab5 be72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.889457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.889458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.889458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.889460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.899395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.899396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.899398 LLDP, length 82 [|LLDP] 19:47:30.899426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.899436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.899448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.899449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1abd 5f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.899450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.899451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.899452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.899459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.899460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.899462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.899463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.899465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.909388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.909390 LLDP, length 82 [|LLDP] 19:47:30.909423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.909432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.909444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.909445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ac5 00b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.909447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.909448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.909449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.909450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.909457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.909458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.909460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.909461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.909463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.919394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.919396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.919397 LLDP, length 82 [|LLDP] 19:47:30.919434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.919443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.919444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.919445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.919447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.919463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.919466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.919467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1acc a1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.919468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.919469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.919470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.919472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.929408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.929416 LLDP, length 82 [|LLDP] 19:47:30.929454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.929465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.929479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.929479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ad4 42f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.929481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.929482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.929483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.929484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.929493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.929494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.929497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.929498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.929499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.939395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.939396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.939397 LLDP, length 82 [|LLDP] 19:47:30.939432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.939441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.939453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.939454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1adb e412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.939456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.939457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.939458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.939459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.939466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.939467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.939469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.939471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.949390 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.949392 LLDP, length 82 [|LLDP] 19:47:30.949416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.949425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.949438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.949439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ae3 8532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.949440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.949441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.949447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.949448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.949450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.949451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.949453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.949454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.949455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.959394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.959396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.959397 LLDP, length 82 [|LLDP] 19:47:30.959431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.959440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.959452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.959453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1aeb 2652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.959455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.959456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.959457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.959458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.959465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.959466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.959468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.959470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.969391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.969393 LLDP, length 82 [|LLDP] 19:47:30.969422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.969431 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.969432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.969433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.969448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.969450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.969452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.969458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.969459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1af2 c772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.969461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.969462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.969463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.969464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.979399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.979401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.979402 LLDP, length 82 [|LLDP] 19:47:30.979430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.979438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.979450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.979452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1afa 6892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.979453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.979454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.979455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.979461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.979462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.979465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.979466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.979467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.989389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.989391 LLDP, length 82 [|LLDP] 19:47:30.989425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.989435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.989448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.989449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b02 09b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.989450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.989452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.989452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.989453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.989461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.989462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.989465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.989466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.989467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:30.999399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.999401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:30.999402 LLDP, length 82 [|LLDP] 19:47:30.999434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:30.999443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:30.999445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:30.999446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:30.999447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.999463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:30.999466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:30.999467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b09 aad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:30.999468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:30.999469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:30.999470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:30.999472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.009389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.009391 LLDP, length 82 [|LLDP] 19:47:31.009416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.009425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.009437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.009438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b11 4bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.009440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.009441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.009442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.009443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.009450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.009451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.009453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.009454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.009456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.019393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.019395 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.019396 LLDP, length 82 [|LLDP] 19:47:31.019430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.019438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.019451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.019452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b18 ed12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.019453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.019454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.019455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.019456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.019463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.019464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.019467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.019468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.029389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.029391 LLDP, length 82 [|LLDP] 19:47:31.029413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.029422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.029435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.029436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b20 8e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.029437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.029438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.029444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.029445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.029447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.029448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.029450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.029450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.029452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.039391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.039393 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.039394 LLDP, length 82 [|LLDP] 19:47:31.039420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.039429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.039442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.039443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b28 2f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.039444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.039445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.039446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.039447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.039455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.039456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.039458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.039459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.049390 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.049392 LLDP, length 82 [|LLDP] 19:47:31.049417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.049425 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.049426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.049427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.049443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.049444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.049446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.049453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.049454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b2f d072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.049455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.049456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.049457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.049459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.059398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.059400 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.059402 LLDP, length 82 [|LLDP] 19:47:31.059430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.059438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.059450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.059451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b37 7192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.059452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.059453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.059454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.059461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.059462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.059464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.059465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.059467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.069391 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.069393 LLDP, length 82 [|LLDP] 19:47:31.069417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.069426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.069438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.069439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b3f 12b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.069441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.069442 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.069443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.069443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.069451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.069452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.069454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.069455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.069457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.079399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.079401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.079402 LLDP, length 82 [|LLDP] 19:47:31.079430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.079439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.079440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.079441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.079442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.079458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.079460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.079461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b46 b3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.079463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.079464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.079465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.079466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.089388 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.089390 LLDP, length 82 [|LLDP] 19:47:31.089420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.089429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.089441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.089442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b4e 54f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.089444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.089444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.089445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.089446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.089454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.089455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.089457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.089458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.089459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.099396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.099398 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.099399 LLDP, length 82 [|LLDP] 19:47:31.099434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.099443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.099455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.099456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b55 f612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.099457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.099458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.099460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.099461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.099468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.099469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.099471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.099473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.109389 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.109392 LLDP, length 82 [|LLDP] 19:47:31.109422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.109431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.109444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.109444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b5d 9732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.109446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.109447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.109453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.109454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.109456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.109457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.109458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.109459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.109461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.119394 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.119396 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.119397 LLDP, length 82 [|LLDP] 19:47:31.119430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.119440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.119452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.119453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b65 3852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.119454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.119455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.119456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.119457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.119464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.119465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.119467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.119468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.129401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.129403 LLDP, length 82 [|LLDP] 19:47:31.129436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.129446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.129447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.129449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.129465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.129466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.129468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.129476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.129477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b6c d972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.129479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.129480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.129481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.129483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.139401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.139403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.139404 LLDP, length 82 [|LLDP] 19:47:31.139438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.139448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.139460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.139461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b74 7a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.139462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.139463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.139464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.139471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.139472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.139474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.139475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.139477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.149415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.149417 LLDP, length 82 [|LLDP] 19:47:31.149458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.149470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.149484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.149485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b7c 1bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.149487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.149488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.149489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.149490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.149499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.149500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.149503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.149504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.149505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.159408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.159410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.159411 LLDP, length 82 [|LLDP] 19:47:31.159448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.159458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.159459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.159461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.159462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.159479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.159482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.159483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b83 bcd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.159485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.159486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.159487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.159488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.169405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.169407 LLDP, length 82 [|LLDP] 19:47:31.169445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.169454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.169467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.169468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b8b 5df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.169470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.169471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.169472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.169473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.169481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.169483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.169485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.169487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.169488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.179408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.179416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.179417 LLDP, length 82 [|LLDP] 19:47:31.179452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.179464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.179477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.179478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b92 ff12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.179479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.179480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.179481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.179482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.179491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.179492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.179494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.179496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.189396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.189398 LLDP, length 82 [|LLDP] 19:47:31.189423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.189433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.189445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.189446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1b9a a032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.189447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.189448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.189454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.189455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.189457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.189459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.189460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.189461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.189462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.199402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.199404 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.199405 LLDP, length 82 [|LLDP] 19:47:31.199440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.199451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.199463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.199464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ba2 4152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.199465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.199466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.199467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.199468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.199476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.199477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.199479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.199480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.209450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.209453 LLDP, length 82 [|LLDP] 19:47:31.209515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.209533 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.209535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.209536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.209557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.209558 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.209561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.209573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.209574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ba9 e272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.209575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.209576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.209577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.209579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.219458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.219461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.219462 LLDP, length 82 [|LLDP] 19:47:31.219527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.219540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.219555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.219556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bb1 8392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.219558 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.219559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.219561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.219572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.219573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.219576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.219577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.219579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.229435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.229437 LLDP, length 82 [|LLDP] 19:47:31.229490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.229503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.229519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.229520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bb9 24b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.229522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.229523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.229524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.229526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.229537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.229538 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.229541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.229542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.229544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.239472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.239475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.239476 LLDP, length 82 [|LLDP] 19:47:31.239547 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.239568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.239569 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.239570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.239571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.239596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.239600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.239601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bc0 c5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.239603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.239604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.239605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.239607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.249466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.249469 LLDP, length 82 [|LLDP] 19:47:31.249513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.249530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.249547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.249548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bc8 66f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.249549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.249551 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.249552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.249553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.249566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.249567 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.249570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.249571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.249572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.259452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.259455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.259457 LLDP, length 82 [|LLDP] 19:47:31.259523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.259537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.259553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.259554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bd0 0812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.259556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.259556 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.259558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.259560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.259570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.259571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.259575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.259576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.269430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.269433 LLDP, length 82 [|LLDP] 19:47:31.269488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.269503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.269517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.269518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bd7 a932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.269520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.269521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.269531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.269532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.269535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.269536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.269537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.269538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.269540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.279448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.279451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.279452 LLDP, length 82 [|LLDP] 19:47:31.279515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.279529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.279545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.279545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bdf 4a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.279547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.279549 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.279550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.279551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.279561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.279563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.279565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.279567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.289408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.289410 LLDP, length 82 [|LLDP] 19:47:31.289449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.289460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.289461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.289462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.289480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.289481 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.289483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.289491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.289492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1be6 eb72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.289494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.289495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.289496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.289497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.299409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.299411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.299419 LLDP, length 82 [|LLDP] 19:47:31.299452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.299462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.299476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.299477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bee 8c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.299478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.299479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.299480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.299488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.299489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.299491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.299492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.299494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.309396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.309398 LLDP, length 82 [|LLDP] 19:47:31.309431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.309441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.309454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.309455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bf6 2db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.309456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.309457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.309459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.309460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.309468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.309469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.309471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.309472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.309473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.319403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.319405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.319406 LLDP, length 82 [|LLDP] 19:47:31.319435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.319446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.319447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.319448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.319449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.319466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.319468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.319469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1bfd ced2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.319471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.319472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.319473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.319474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.329393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.329395 LLDP, length 82 [|LLDP] 19:47:31.329420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.329430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.329442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.329444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c05 6ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.329445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.329446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.329447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.329448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.329456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.329457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.329459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.329460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.329461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.339404 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.339406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.339407 LLDP, length 82 [|LLDP] 19:47:31.339440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.339450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.339463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.339463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c0d 1112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.339465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.339466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.339467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.339468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.339475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.339477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.339479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.339480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.349401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.349403 LLDP, length 82 [|LLDP] 19:47:31.349438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.349449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.349462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.349463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c14 b232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.349464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.349465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.349472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.349473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.349476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.349477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.349478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.349479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.349481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.359408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.359409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.359410 LLDP, length 82 [|LLDP] 19:47:31.359443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.359453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.359466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.359467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c1c 5352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.359469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.359470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.359471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.359472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.359480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.359481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.359483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.359485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.369414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.369416 LLDP, length 82 [|LLDP] 19:47:31.369446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.369456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.369457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.369458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.369475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.369476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.369479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.369486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.369487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c23 f472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.369488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.369489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.369491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.369492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.379435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.379444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.379445 LLDP, length 82 [|LLDP] 19:47:31.379482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.379495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.379509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.379510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c2b 9592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.379512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.379513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.379514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.379525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.379526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.379528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.379530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.379531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.389407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.389409 LLDP, length 82 [|LLDP] 19:47:31.389445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.389457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.389470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.389471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c33 36b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.389473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.389474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.389475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.389476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.389484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.389485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.389487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.389488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.389490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.399406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.399408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.399409 LLDP, length 82 [|LLDP] 19:47:31.399443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.399454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.399455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.399456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.399457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.399473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.399476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.399477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c3a d7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.399478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.399479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.399480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.399482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.409414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.409416 LLDP, length 82 [|LLDP] 19:47:31.409453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.409466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.409479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.409480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c42 78f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.409482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.409483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.409484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.409485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.409492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.409493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.409496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.409497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.409498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.419410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.419412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.419413 LLDP, length 82 [|LLDP] 19:47:31.419447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.419459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.419472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.419473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c4a 1a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.419474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.419475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.419476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.419477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.419485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.419486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.419489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.419490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.429401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.429403 LLDP, length 82 [|LLDP] 19:47:31.429434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.429444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.429457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.429458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c51 bb32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.429460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.429461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.429467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.429468 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.429470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.429471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.429473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.429474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.429475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.439405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.439406 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.439407 LLDP, length 82 [|LLDP] 19:47:31.439430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.439439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.439451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.439452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c59 5c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.439454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.439455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.439456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.439457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.439464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.439465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.439467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.439469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.449392 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.449394 LLDP, length 82 [|LLDP] 19:47:31.449413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.449422 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.449423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.449424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.449439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.449440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.449443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.449448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.449449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c60 fd72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.449451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.449452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.449453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.449454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.459397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.459399 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.459400 LLDP, length 82 [|LLDP] 19:47:31.459429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.459437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.459450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.459451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c68 9e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.459452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.459453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.459454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.459461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.459462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.459464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.459465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.459467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.469396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.469398 LLDP, length 82 [|LLDP] 19:47:31.469421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.469430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.469442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.469443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c70 3fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.469444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.469445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.469446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.469447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.469455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.469456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.469459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.469460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.469461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.479406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.479408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.479409 LLDP, length 82 [|LLDP] 19:47:31.479439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.479450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.479451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.479452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.479453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.479470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.479472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.479473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c77 e0d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.479475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.479476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.479477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.479478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.489395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.489396 LLDP, length 82 [|LLDP] 19:47:31.489424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.489433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.489445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.489446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c7f 81f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.489448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.489449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.489450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.489451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.489458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.489459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.489461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.489462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.489463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.499400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.499402 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.499402 LLDP, length 82 [|LLDP] 19:47:31.499433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.499441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.499453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.499454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c87 2312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.499456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.499457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.499458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.499459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.499466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.499467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.499470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.499471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.509393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.509395 LLDP, length 82 [|LLDP] 19:47:31.509415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.509424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.509436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.509437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c8e c432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.509439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.509440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.509446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.509447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.509449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.509450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.509451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.509452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.509454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.519397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.519399 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.519400 LLDP, length 82 [|LLDP] 19:47:31.519431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.519439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.519451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.519452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c96 6552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.519454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.519455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.519456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.519457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.519464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.519465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.519467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.519468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.529405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.529407 LLDP, length 82 [|LLDP] 19:47:31.529441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.529451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.529452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.529453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.529470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.529471 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.529474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.529481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.529481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1c9e 0672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.529483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.529484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.529485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.529486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.539405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.539407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.539408 LLDP, length 82 [|LLDP] 19:47:31.539435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.539444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.539457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.539458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ca5 a792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.539460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.539461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.539462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.539469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.539470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.539472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.539473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.539474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.549393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.549394 LLDP, length 82 [|LLDP] 19:47:31.549420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.549429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.549441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.549442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cad 48b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.549444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.549445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.549446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.549447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.549454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.549455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.549457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.549458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.549460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.559399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.559401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.559402 LLDP, length 82 [|LLDP] 19:47:31.559425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.559434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.559435 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.559436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.559437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.559453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.559456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.559457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cb4 e9d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.559458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.559460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.559460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.559462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.569400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.569401 LLDP, length 82 [|LLDP] 19:47:31.569423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.569431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.569444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.569445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cbc 8af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.569447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.569447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.569448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.569449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.569457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.569458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.569461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.569462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.569463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.579399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.579401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.579402 LLDP, length 82 [|LLDP] 19:47:31.579426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.579434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.579448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.579449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cc4 2c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.579451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.579452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.579453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.579454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.579461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.579462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.579464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.579467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.589396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.589398 LLDP, length 82 [|LLDP] 19:47:31.589426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.589434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.589447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.589448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ccb cd32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.589449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.589451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.589457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.589458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.589460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.589461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.589462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.589463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.589464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.599402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.599403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.599404 LLDP, length 82 [|LLDP] 19:47:31.599428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.599436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.599448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.599449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cd3 6e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.599451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.599452 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.599453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.599454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.599461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.599462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.599464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.599466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.609393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.609394 LLDP, length 82 [|LLDP] 19:47:31.609421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.609429 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.609430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.609431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.609447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.609448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.609450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.609456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.609457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cdb 0f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.609459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.609460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.609461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.609462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.619401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.619403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.619404 LLDP, length 82 [|LLDP] 19:47:31.619434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.619443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.619455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.619456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ce2 b092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.619458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.619459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.619460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.619466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.619467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.619469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.619470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.619472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.629393 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.629395 LLDP, length 82 [|LLDP] 19:47:31.629415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.629424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.629437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.629437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cea 51b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.629439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.629440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.629441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.629442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.629449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.629450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.629452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.629453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.629455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.639399 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.639401 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.639402 LLDP, length 82 [|LLDP] 19:47:31.639427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.639435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.639436 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.639437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.639438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.639454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.639457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.639458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cf1 f2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.639459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.639460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.639461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.639463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.649402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.649404 LLDP, length 82 [|LLDP] 19:47:31.649434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.649444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.649456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.649457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1cf9 93f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.649458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.649459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.649460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.649461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.649469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.649470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.649472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.649473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.649475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.659407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.659409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.659410 LLDP, length 82 [|LLDP] 19:47:31.659445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.659456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.659468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.659469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d01 3512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.659470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.659472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.659473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.659474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.659481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.659482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.659484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.659486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.669395 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.669397 LLDP, length 82 [|LLDP] 19:47:31.669420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.669428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.669440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.669441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d08 d632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.669443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.669444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.669450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.669451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.669453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.669454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.669456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.669457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.669458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.679402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.679403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.679404 LLDP, length 82 [|LLDP] 19:47:31.679430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.679438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.679451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.679452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d10 7752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.679453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.679455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.679456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.679457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.679464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.679465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.679467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.679469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.689396 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.689397 LLDP, length 82 [|LLDP] 19:47:31.689425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.689433 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.689434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.689435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.689450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.689451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.689453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.689460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.689461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d18 1872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.689462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.689463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.689464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.689466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.699402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.699403 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.699404 LLDP, length 82 [|LLDP] 19:47:31.699427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.699435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.699447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.699448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d1f b992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.699450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.699451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.699452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.699458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.699459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.699461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.699462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.699463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.709409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.709418 LLDP, length 82 [|LLDP] 19:47:31.709453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.709463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.709475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.709476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d27 5ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.709478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.709479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.709480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.709481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.709490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.709491 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.709493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.709494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.709496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.719403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.719405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.719406 LLDP, length 82 [|LLDP] 19:47:31.719440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.719449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.719450 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.719451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.719452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.719468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.719471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.719472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d2e fbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.719473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.719474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.719475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.719477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.729400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.729402 LLDP, length 82 [|LLDP] 19:47:31.729430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.729438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.729451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.729452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d36 9cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.729453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.729454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.729455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.729456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.729463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.729464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.729466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.729467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.729469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.739415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.739417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.739418 LLDP, length 82 [|LLDP] 19:47:31.739454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.739465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.739478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.739479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d3e 3e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.739481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.739482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.739483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.739484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.739493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.739494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.739497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.739498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.749402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.749404 LLDP, length 82 [|LLDP] 19:47:31.749426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.749434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.749447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.749448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d45 df32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.749449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.749450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.749456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.749457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.749460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.749461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.749462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.749463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.749464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.759407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.759408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.759409 LLDP, length 82 [|LLDP] 19:47:31.759444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.759453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.759465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.759466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d4d 8052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.759468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.759469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.759470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.759470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.759477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.759478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.759481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.759482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.769415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.769417 LLDP, length 82 [|LLDP] 19:47:31.769444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.769454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.769455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.769456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.769472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.769474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.769476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.769483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.769484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d55 2172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.769485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.769486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.769487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.769489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.779416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.779418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.779426 LLDP, length 82 [|LLDP] 19:47:31.779463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.779473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.779486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.779487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d5c c292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.779488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.779490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.779491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.779498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.779499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.779501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.779503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.779504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.789400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.789401 LLDP, length 82 [|LLDP] 19:47:31.789430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.789438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.789451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.789451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d64 63b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.789453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.789454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.789455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.789456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.789464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.789465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.789467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.789468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.789470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.799403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.799405 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.799406 LLDP, length 82 [|LLDP] 19:47:31.799435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.799444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.799445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.799446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.799447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.799463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.799466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.799466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d6c 04d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.799468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.799469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.799470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.799471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.809407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.809409 LLDP, length 82 [|LLDP] 19:47:31.809438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.809448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.809461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.809462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d73 a5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.809463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.809464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.809466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.809467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.809474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.809475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.809477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.809478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.809480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.819406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.819407 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.819408 LLDP, length 82 [|LLDP] 19:47:31.819433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.819442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.819454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.819455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d7b 4712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.819457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.819458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.819459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.819460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.819467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.819468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.819471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.819472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.829398 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.829400 LLDP, length 82 [|LLDP] 19:47:31.829426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.829435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.829447 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.829448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d82 e832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.829450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.829451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.829457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.829458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.829460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.829461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.829462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.829463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.829465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.839439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.839442 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.839443 LLDP, length 82 [|LLDP] 19:47:31.839489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.839499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.839512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.839513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d8a 8952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.839515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.839516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.839517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.839518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.839528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.839529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.839531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.839533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.849405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.849407 LLDP, length 82 [|LLDP] 19:47:31.849436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.849445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.849446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.849447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.849462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.849464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.849466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.849473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.849474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d92 2a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.849475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.849476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.849477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.849478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.859409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.859410 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.859411 LLDP, length 82 [|LLDP] 19:47:31.859439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.859448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.859461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.859462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1d99 cb92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.859464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.859465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.859466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.859473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.859474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.859476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.859477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.859478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.869405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.869407 LLDP, length 82 [|LLDP] 19:47:31.869435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.869443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.869456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.869457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1da1 6cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.869459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.869460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.869461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.869462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.869468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.869470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.869472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.869473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.869474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.879406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.879408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.879409 LLDP, length 82 [|LLDP] 19:47:31.879439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.879447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.879448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.879449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.879450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.879465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.879468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.879469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1da9 0dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.879471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.879472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.879473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.879474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.889397 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.889398 LLDP, length 82 [|LLDP] 19:47:31.889426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.889433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.889446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.889446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1db0 aef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.889448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.889449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.889450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.889451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.889458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.889460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.889462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.889463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.889464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.899413 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.899415 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.899416 LLDP, length 82 [|LLDP] 19:47:31.899453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.899462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.899476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.899478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1db8 5012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.899479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.899480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.899482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.899483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.899491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.899492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.899494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.899495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.909402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.909403 LLDP, length 82 [|LLDP] 19:47:31.909431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.909440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.909453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.909454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dbf f132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.909456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.909457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.909463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.909464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.909466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.909467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.909468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.909469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.909471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.919410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.919412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.919413 LLDP, length 82 [|LLDP] 19:47:31.919436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.919445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.919457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.919458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dc7 9252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.919460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.919461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.919462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.919463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.919470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.919471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.919473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.919475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.929407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.929408 LLDP, length 82 [|LLDP] 19:47:31.929429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.929437 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.929438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.929439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.929455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.929456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.929458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.929465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.929466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dcf 3372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.929467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.929468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.929469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.929470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.939407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.939408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.939409 LLDP, length 82 [|LLDP] 19:47:31.939431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.939439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.939451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.939452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dd6 d492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.939454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.939455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.939456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.939463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.939464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.939466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.939468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.939469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.949400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.949402 LLDP, length 82 [|LLDP] 19:47:31.949427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.949435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.949448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.949448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dde 75b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.949450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.949451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.949452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.949453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.949461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.949462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.949464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.949465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.949466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.959407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.959408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.959409 LLDP, length 82 [|LLDP] 19:47:31.959441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.959448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.959449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.959450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.959452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.959468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.959471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.959471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1de6 16d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.959473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.959474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.959474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.959476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.969401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.969403 LLDP, length 82 [|LLDP] 19:47:31.969430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.969438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.969450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.969451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ded b7f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.969453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.969454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.969455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.969456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.969463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.969464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.969466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.969467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.969468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.979407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.979409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.979410 LLDP, length 82 [|LLDP] 19:47:31.979433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.979441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.979453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.979454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1df5 5912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.979456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.979457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.979457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.979459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.979465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.979466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.979469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.979470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.989402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.989403 LLDP, length 82 [|LLDP] 19:47:31.989429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.989437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.989449 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.989450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1dfc fa32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.989452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.989453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.989458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.989459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.989462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.989463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.989463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.989464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.989466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:31.999409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.999411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:31.999412 LLDP, length 82 [|LLDP] 19:47:31.999439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:31.999448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:31.999461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:31.999462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e04 9b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:31.999463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:31.999464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:31.999465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:31.999466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.999474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:31.999475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:31.999477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:31.999478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.009403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.009404 LLDP, length 82 [|LLDP] 19:47:32.009433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.009441 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.009442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.009443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.009458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.009460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.009462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.009468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.009469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e0c 3c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.009471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.009472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.009473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.009474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.019407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.019409 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.019410 LLDP, length 82 [|LLDP] 19:47:32.019443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.019451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.019463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.019464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e13 dd92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.019466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.019467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.019468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.019474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.019475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.019478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.019478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.019480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.029403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.029404 LLDP, length 82 [|LLDP] 19:47:32.029431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.029440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.029452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.029452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e1b 7eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.029454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.029455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.029456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.029457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.029464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.029465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.029468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.029469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.029470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.039409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.039411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.039412 LLDP, length 82 [|LLDP] 19:47:32.039435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.039443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.039444 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.039445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.039446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.039462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.039464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.039465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e23 1fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.039466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.039467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.039468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.039470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.049400 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.049402 LLDP, length 82 [|LLDP] 19:47:32.049427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.049435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.049447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.049448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e2a c0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.049450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.049451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.049452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.049452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.049460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.049461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.049463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.049464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.049466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.059410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.059411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.059412 LLDP, length 82 [|LLDP] 19:47:32.059433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.059441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.059453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.059454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e32 6212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.059456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.059457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.059458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.059459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.059466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.059467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.059469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.059471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.069402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.069403 LLDP, length 82 [|LLDP] 19:47:32.069423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.069430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.069443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.069444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e3a 0332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.069445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.069446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.069452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.069453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.069455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.069456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.069457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.069458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.069459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.079412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.079414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.079415 LLDP, length 82 [|LLDP] 19:47:32.079439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.079447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.079459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.079460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e41 a452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.079462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.079463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.079464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.079465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.079472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.079473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.079475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.079477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.089401 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.089403 LLDP, length 82 [|LLDP] 19:47:32.089429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.089438 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.089439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.089440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.089455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.089457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.089459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.089464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.089465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e49 4572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.089467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.089468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.089469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.089470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.099410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.099412 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.099413 LLDP, length 82 [|LLDP] 19:47:32.099435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.099442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.099454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.099455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e50 e692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.099457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.099458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.099459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.099466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.099467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.099469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.099470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.099471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.109407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.109410 LLDP, length 82 [|LLDP] 19:47:32.109441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.109452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.109464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.109465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e58 87b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.109467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.109468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.109469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.109470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.109477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.109478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.109480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.109481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.109483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.119410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.119411 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.119412 LLDP, length 82 [|LLDP] 19:47:32.119436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.119445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.119446 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.119447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.119448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.119464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.119466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.119467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e60 28d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.119469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.119470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.119471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.119472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.129403 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.129405 LLDP, length 82 [|LLDP] 19:47:32.129427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.129435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.129447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.129448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e67 c9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.129450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.129451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.129452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.129453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.129460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.129461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.129463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.129464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.129466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.139415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.139417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.139418 LLDP, length 82 [|LLDP] 19:47:32.139454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.139462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.139475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.139477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e6f 6b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.139478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.139480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.139481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.139482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.139489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.139490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.139493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.139494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.149405 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.149406 LLDP, length 82 [|LLDP] 19:47:32.149435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.149444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.149456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.149457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e77 0c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.149458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.149460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.149465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.149466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.149469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.149470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.149471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.149471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.149473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.159412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.159414 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.159415 LLDP, length 82 [|LLDP] 19:47:32.159442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.159450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.159462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.159463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e7e ad52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.159465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.159466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.159467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.159468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.159476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.159477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.159479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.159480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.169404 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.169406 LLDP, length 82 [|LLDP] 19:47:32.169432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.169440 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.169441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.169442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.169457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.169458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.169460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.169466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.169467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e86 4e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.169469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.169470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.169471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.169472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.179414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.179416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.179417 LLDP, length 82 [|LLDP] 19:47:32.179447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.179455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.179468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.179469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e8d ef92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.179470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.179471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.179472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.179479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.179480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.179482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.179483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.179484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.189402 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.189404 LLDP, length 82 [|LLDP] 19:47:32.189429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.189438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.189450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.189451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e95 90b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.189452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.189453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.189454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.189455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.189462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.189463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.189466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.189467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.189468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.199406 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.199408 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.199409 LLDP, length 82 [|LLDP] 19:47:32.199443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.199452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.199453 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.199454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.199455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.199471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.199474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.199475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1e9d 31d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.199476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.199477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.199478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.199480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.209404 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.209405 LLDP, length 82 [|LLDP] 19:47:32.209432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.209440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.209452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.209453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ea4 d2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.209455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.209455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.209456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.209458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.209465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.209466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.209468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.209469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.209470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.219412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.219413 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.219415 LLDP, length 82 [|LLDP] 19:47:32.219445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.219453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.219465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.219466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eac 7412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.219468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.219469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.219470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.219471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.219478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.219479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.219481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.219483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.229407 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.229409 LLDP, length 82 [|LLDP] 19:47:32.229429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.229449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.229463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.229464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eb4 1532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.229466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.229467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.229474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.229475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.229477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.229478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.229480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.229481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.229482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.239455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.239457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.239458 LLDP, length 82 [|LLDP] 19:47:32.239497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.239510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.239525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.239526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ebb b652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.239528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.239529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.239530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.239531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.239542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.239543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.239546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.239547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.249419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.249421 LLDP, length 82 [|LLDP] 19:47:32.249462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.249472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.249473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.249474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.249490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.249491 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.249493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.249500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.249501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ec3 5772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.249503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.249504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.249505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.249507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.259418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.259420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.259421 LLDP, length 82 [|LLDP] 19:47:32.259450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.259461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.259473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.259474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eca f892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.259476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.259477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.259478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.259485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.259486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.259489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.259489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.259491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.269411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.269413 LLDP, length 82 [|LLDP] 19:47:32.269437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.269446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.269458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.269459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ed2 99b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.269461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.269461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.269463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.269464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.269471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.269472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.269474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.269475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.269477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.279486 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.279489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.279490 LLDP, length 82 [|LLDP] 19:47:32.279558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.279572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.279573 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.279574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.279575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.279598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.279602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.279603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1eda 3ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.279605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.279605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.279607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.279608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.289455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.289458 LLDP, length 82 [|LLDP] 19:47:32.289513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.289526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.289541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.289542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ee1 dbf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.289544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.289545 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.289546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.289547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.289557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.289558 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.289561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.289562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.289564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.299438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.299447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.299448 LLDP, length 82 [|LLDP] 19:47:32.299484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.299496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.299509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.299510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ee9 7d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.299512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.299513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.299514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.299515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.299523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.299524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.299527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.299528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.309408 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.309410 LLDP, length 82 [|LLDP] 19:47:32.309433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.309443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.309457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.309458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ef1 1e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.309459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.309461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.309468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.309469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.309472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.309473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.309474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.309475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.309476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.319419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.319420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.319422 LLDP, length 82 [|LLDP] 19:47:32.319448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.319456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.319468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.319469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ef8 bf52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.319471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.319472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.319473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.319474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.319481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.319482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.319484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.319486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.329411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.329413 LLDP, length 82 [|LLDP] 19:47:32.329435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.329443 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.329445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.329446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.329461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.329463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.329465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.329472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.329473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f00 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.329474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.329475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.329476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.329477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.339415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.339417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.339418 LLDP, length 82 [|LLDP] 19:47:32.339442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.339450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.339462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.339463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f08 0192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.339464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.339465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.339466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.339472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.339473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.339476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.339477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.339478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.349410 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.349411 LLDP, length 82 [|LLDP] 19:47:32.349434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.349443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.349454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.349455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f0f a2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.349457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.349458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.349459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.349460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.349467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.349469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.349471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.349472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.349473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.359415 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.359417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.359418 LLDP, length 82 [|LLDP] 19:47:32.359441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.359449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.359451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.359452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.359453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.359469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.359471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.359472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f17 43d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.359474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.359475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.359476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.359477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.369416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.369418 LLDP, length 82 [|LLDP] 19:47:32.369454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.369466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.369479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.369480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f1e e4f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.369481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.369482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.369483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.369484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.369492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.369493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.369495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.369496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.369498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.379419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.379421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.379422 LLDP, length 82 [|LLDP] 19:47:32.379450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.379461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.379474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.379474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f26 8612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.379476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.379477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.379478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.379479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.379486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.379487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.379490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.379491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.389411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.389413 LLDP, length 82 [|LLDP] 19:47:32.389442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.389451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.389463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.389464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f2e 2732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.389466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.389467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.389473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.389474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.389476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.389477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.389478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.389479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.389481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.399429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.399431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.399432 LLDP, length 82 [|LLDP] 19:47:32.399469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.399480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.399493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.399494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f35 c852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.399496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.399497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.399498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.399499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.399507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.399508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.399510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.399512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.409420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.409422 LLDP, length 82 [|LLDP] 19:47:32.409445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.409455 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.409456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.409457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.409474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.409475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.409477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.409483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.409484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f3d 6972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.409486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.409487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.409488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.409489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.419418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.419420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.419421 LLDP, length 82 [|LLDP] 19:47:32.419449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.419457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.419470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.419471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f45 0a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.419472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.419473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.419474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.419481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.419482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.419484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.419485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.419487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.429409 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.429411 LLDP, length 82 [|LLDP] 19:47:32.429436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.429445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.429457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.429458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f4c abb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.429459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.429460 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.429461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.429462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.429469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.429470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.429473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.429474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.429475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.439414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.439416 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.439417 LLDP, length 82 [|LLDP] 19:47:32.439443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.439453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.439454 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.439455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.439456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.439473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.439475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.439476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f54 4cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.439478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.439479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.439480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.439481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.449411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.449413 LLDP, length 82 [|LLDP] 19:47:32.449438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.449447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.449459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.449460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f5b edf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.449462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.449463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.449464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.449465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.449472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.449473 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.449475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.449476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.449478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.459419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.459421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.459422 LLDP, length 82 [|LLDP] 19:47:32.459448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.459456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.459469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.459470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f63 8f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.459471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.459472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.459473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.459474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.459481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.459482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.459484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.459486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.469412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.469414 LLDP, length 82 [|LLDP] 19:47:32.469437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.469447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.469459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.469460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f6b 3032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.469461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.469462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.469468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.469469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.469471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.469472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.469473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.469474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.469476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.479425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.479427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.479428 LLDP, length 82 [|LLDP] 19:47:32.479455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.479465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.479478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.479479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f72 d152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.479480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.479481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.479482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.479484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.479492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.479493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.479495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.479497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.489414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.489416 LLDP, length 82 [|LLDP] 19:47:32.489448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.489457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.489458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.489459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.489475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.489476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.489478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.489484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.489486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f7a 7272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.489487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.489488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.489489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.489490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.499418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.499420 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.499421 LLDP, length 82 [|LLDP] 19:47:32.499449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.499458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.499470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.499471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f82 1392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.499473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.499474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.499474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.499481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.499482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.499485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.499486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.499487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.509411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.509413 LLDP, length 82 [|LLDP] 19:47:32.509442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.509451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.509463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.509464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f89 b4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.509466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.509467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.509468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.509469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.509476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.509477 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.509479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.509480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.509481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.519416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.519418 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.519418 LLDP, length 82 [|LLDP] 19:47:32.519452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.519461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.519462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.519463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.519464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.519481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.519484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.519484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f91 55d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.519486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.519487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.519488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.519489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.529412 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.529413 LLDP, length 82 [|LLDP] 19:47:32.529443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.529451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.529464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.529465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1f98 f6f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.529466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.529468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.529469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.529470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.529477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.529478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.529480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.529481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.529482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.539416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.539417 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.539418 LLDP, length 82 [|LLDP] 19:47:32.539446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.539455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.539467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.539468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fa0 9812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.539470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.539471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.539472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.539473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.539480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.539481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.539484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.539485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.549411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.549413 LLDP, length 82 [|LLDP] 19:47:32.549441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.549450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.549462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.549463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fa8 3932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.549465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.549466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.549471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.549472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.549475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.549475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.549476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.549477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.549479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.559421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.559422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.559423 LLDP, length 82 [|LLDP] 19:47:32.559450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.559458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.559470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.559471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1faf da52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.559473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.559474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.559475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.559476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.559483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.559484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.559486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.559488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.569411 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.569413 LLDP, length 82 [|LLDP] 19:47:32.569436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.569445 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.569446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.569447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.569462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.569463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.569465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.569471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.569472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fb7 7b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.569474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.569475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.569476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.569477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.579417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.579419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.579420 LLDP, length 82 [|LLDP] 19:47:32.579453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.579462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.579474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.579475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fbf 1c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.579476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.579477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.579478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.579485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.579486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.579488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.579489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.579491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.592019 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.592021 LLDP, length 82 [|LLDP] 19:47:32.592047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.592056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.592068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.592068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fc6 bdb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.592070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.592071 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.592072 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.592073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.592081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.592082 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.592084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.592085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.592086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.599421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.599423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.599424 LLDP, length 82 [|LLDP] 19:47:32.599459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.599469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.599470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.599471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.599472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.599488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.599491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.599492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fce 5ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.599493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.599494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.599495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.599497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.609413 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.609415 LLDP, length 82 [|LLDP] 19:47:32.609438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.609448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.609459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.609460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fd5 fff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.609462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.609463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.609464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.609465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.609473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.609474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.609476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.609477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.609478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.619417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.619419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.619420 LLDP, length 82 [|LLDP] 19:47:32.619447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.619456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.619468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.619469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fdd a112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.619470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.619471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.619472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.619473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.619481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.619482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.619484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.619486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.629414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.629415 LLDP, length 82 [|LLDP] 19:47:32.629445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.629454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.629466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.629467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fe5 4232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.629468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.629469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.629475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.629476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.629478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.629479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.629480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.629481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.629482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.639417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.639419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.639420 LLDP, length 82 [|LLDP] 19:47:32.639446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.639456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.639468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.639469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1fec e352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.639470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.639471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.639472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.639473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.639480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.639482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.639484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.639485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.652461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.652463 LLDP, length 82 [|LLDP] 19:47:32.652486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.652496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.652497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.652498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.652513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.652514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.652517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.652522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.652523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ff4 8472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.652525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.652526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.652527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.652528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.659421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.659423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.659424 LLDP, length 82 [|LLDP] 19:47:32.659451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.659460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.659471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.659472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 1ffc 2592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.659474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.659475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.659476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.659482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.659483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.659485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.659486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.659487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.669418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.669420 LLDP, length 82 [|LLDP] 19:47:32.669442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.669451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.669463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.669463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2003 c6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.669465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.669466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.669467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.669468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.669475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.669476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.669478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.669479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.669481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.679417 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.679419 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.679420 LLDP, length 82 [|LLDP] 19:47:32.679446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.679455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.679456 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.679457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.679458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.679474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.679477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.679478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 200b 67d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.679479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.679480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.679481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.679483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.689414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.689416 LLDP, length 82 [|LLDP] 19:47:32.689440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.689448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.689460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.689461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2013 08f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.689463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.689464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.689465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.689466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.689473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.689474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.689477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.689478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.689479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.699421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.699423 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.699424 LLDP, length 82 [|LLDP] 19:47:32.699451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.699461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.699473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.699474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 201a aa12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.699475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.699476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.699477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.699478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.699486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.699487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.699490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.699491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.713229 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.713231 LLDP, length 82 [|LLDP] 19:47:32.713254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.713263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.713275 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.713276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2022 4b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.713278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.713279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.713285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.713286 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.713288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.713289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.713290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.713291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.713293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.719423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.719424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.719425 LLDP, length 82 [|LLDP] 19:47:32.719459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.719469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.719481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.719482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2029 ec52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.719484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.719485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.719486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.719487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.719494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.719495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.719497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.719498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.729414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.729416 LLDP, length 82 [|LLDP] 19:47:32.729439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.729448 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.729449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.729450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.729465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.729466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.729468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.729474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.729475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2031 8d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.729477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.729478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.729479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.729480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.739420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.739421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.739422 LLDP, length 82 [|LLDP] 19:47:32.739449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.739458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.739470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.739471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2039 2e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.739473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.739474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.739475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.739481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.739482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.739484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.739485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.739487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.749413 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.749415 LLDP, length 82 [|LLDP] 19:47:32.749438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.749447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.749459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.749459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2040 cfb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.749461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.749462 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.749463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.749464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.749471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.749472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.749474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.749475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.749477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.759419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.759421 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.759422 LLDP, length 82 [|LLDP] 19:47:32.759451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.759463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.759464 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.759465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.759467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.759484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.759486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.759487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2048 70d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.759488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.759490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.759491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.759492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.770516 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.770518 LLDP, length 82 [|LLDP] 19:47:32.770542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.770551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.770563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.770564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2050 11f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.770566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.770567 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.770568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.770569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.770576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.770577 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.770580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.770581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.770582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.779420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.779422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.779423 LLDP, length 82 [|LLDP] 19:47:32.779450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.779459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.779471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.779472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2057 b312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.779474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.779475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.779476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.779476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.779484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.779485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.779487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.779489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.789414 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.789416 LLDP, length 82 [|LLDP] 19:47:32.789439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.789448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.789459 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.789460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 205f 5432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.789462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.789463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.789468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.789469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.789471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.789473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.789474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.789475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.789476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.799420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.799422 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.799423 LLDP, length 82 [|LLDP] 19:47:32.799455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.799465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.799476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.799477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2066 f552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.799478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.799480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.799481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.799482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.799489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.799490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.799492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.799493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.809416 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.809418 LLDP, length 82 [|LLDP] 19:47:32.809443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.809451 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.809452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.809453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.809469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.809470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.809472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.809478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.809479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 206e 9672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.809481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.809482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.809483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.809484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.819424 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.819426 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.819427 LLDP, length 82 [|LLDP] 19:47:32.819454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.819462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.819474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.819475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2076 3792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.819477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.819478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.819479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.819486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.819487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.819489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.819490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.819491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.829418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.829420 LLDP, length 82 [|LLDP] 19:47:32.829451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.829459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.829471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.829472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 207d d8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.829473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.829474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.829475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.829476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.829483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.829484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.829486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.829487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.829489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.839422 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.839424 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.839426 LLDP, length 82 [|LLDP] 19:47:32.839454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.839464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.839465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.839466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.839467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.839484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.839487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.839488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2085 79d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.839490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.839491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.839492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.839493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.849445 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.849453 LLDP, length 82 [|LLDP] 19:47:32.849495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.849506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.849520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.849521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 208d 1af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.849522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.849523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.849524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.849526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.849534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.849535 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.849538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.849539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.849541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.859427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.859429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.859430 LLDP, length 82 [|LLDP] 19:47:32.859459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.859469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.859481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.859482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2094 bc12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.859483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.859484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.859486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.859486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.859494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.859495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.859497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.859498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.869418 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.869420 LLDP, length 82 [|LLDP] 19:47:32.869450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.869459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.869471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.869472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 209c 5d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.869473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.869474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.869481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.869482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.869484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.869485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.869486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.869487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.869488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.879432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.879441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.879442 LLDP, length 82 [|LLDP] 19:47:32.879478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.879488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.879500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.879501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20a3 fe52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.879503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.879504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.879505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.879506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.879513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.879515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.879517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.879518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.889421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.889423 LLDP, length 82 [|LLDP] 19:47:32.889448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.889457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.889458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.889459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.889475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.889476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.889478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.889484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.889485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ab 9f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.889487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.889488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.889489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.889490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.899425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.899427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.899428 LLDP, length 82 [|LLDP] 19:47:32.899454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.899464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.899476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.899477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20b3 4092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.899478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.899479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.899480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.899487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.899488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.899490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.899491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.899493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.909425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.909427 LLDP, length 82 [|LLDP] 19:47:32.909462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.909472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.909484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.909485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ba e1b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.909487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.909488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.909489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.909490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.909498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.909499 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.909502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.909503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.909504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.919428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.919430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.919431 LLDP, length 82 [|LLDP] 19:47:32.919461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.919470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.919471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.919472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.919473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.919489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.919492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.919492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20c2 82d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.919494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.919495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.919496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.919497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.929423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.929425 LLDP, length 82 [|LLDP] 19:47:32.929449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.929458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.929470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.929471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ca 23f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.929473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.929474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.929475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.929476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.929484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.929485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.929487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.929488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.929489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.939531 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.939533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.939534 LLDP, length 82 [|LLDP] 19:47:32.939565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.939575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.939587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.939588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20d1 c512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.939595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.939596 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.939597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.939598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.939606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.939607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.939609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.939610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.949427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.949429 LLDP, length 82 [|LLDP] 19:47:32.949462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.949472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.949485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.949485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20d9 6632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.949487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.949488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.949495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.949496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.949498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.949499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.949500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.949501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.949503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.959430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.959432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.959433 LLDP, length 82 [|LLDP] 19:47:32.959461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.959471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.959483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.959484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20e1 0752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.959485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.959486 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.959488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.959488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.959495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.959497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.959499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.959500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.969420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.969422 LLDP, length 82 [|LLDP] 19:47:32.969454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.969465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.969466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.969467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.969482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.969484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.969486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.969492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.969493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20e8 a872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.969494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.969495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.969496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.969498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.979463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.979466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.979467 LLDP, length 82 [|LLDP] 19:47:32.979519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.979530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.979543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.979544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20f0 4992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.979546 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.979547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.979548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.979557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.979558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.979561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.979562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.979563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.989423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.989425 LLDP, length 82 [|LLDP] 19:47:32.989451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.989461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.989473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.989474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20f7 eab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.989476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.989477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.989478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.989479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.989486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.989487 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.989490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.989491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.989492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:32.999430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.999432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:32.999433 LLDP, length 82 [|LLDP] 19:47:32.999461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:32.999471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:32.999472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:32.999473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:32.999474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.999490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:32.999493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:32.999494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 20ff 8bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:32.999496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:32.999497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:32.999498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:32.999499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.009422 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.009424 LLDP, length 82 [|LLDP] 19:47:33.009449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.009459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.009471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.009472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2107 2cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.009474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.009474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.009475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.009476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.009484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.009485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.009487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.009488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.009489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.019427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.019429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.019430 LLDP, length 82 [|LLDP] 19:47:33.019458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.019467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.019478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.019479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 210e ce12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.019481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.019482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.019483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.019484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.019491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.019492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.019495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.019496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.029419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.029421 LLDP, length 82 [|LLDP] 19:47:33.029444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.029453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.029465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.029465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2116 6f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.029467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.029468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.029474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.029475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.029477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.029478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.029479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.029480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.029481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.039427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.039429 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.039430 LLDP, length 82 [|LLDP] 19:47:33.039457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.039467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.039478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.039479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 211e 1052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.039481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.039482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.039483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.039484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.039491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.039492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.039494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.039495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.049419 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.049420 LLDP, length 82 [|LLDP] 19:47:33.049452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.049461 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.049462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.049463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.049479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.049480 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.049482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.049488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.049489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2125 b172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.049491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.049492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.049492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.049494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.059428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.059430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.059431 LLDP, length 82 [|LLDP] 19:47:33.059457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.059466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.059478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.059479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 212d 5292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.059481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.059482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.059482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.059489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.059490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.059492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.059494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.059495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.069420 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.069422 LLDP, length 82 [|LLDP] 19:47:33.069445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.069454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.069467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.069467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2134 f3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.069469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.069470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.069471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.069472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.069479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.069480 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.069482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.069483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.069485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.079425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.079427 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.079435 LLDP, length 82 [|LLDP] 19:47:33.079464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.079479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.079481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.079482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.079483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.079500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.079503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.079504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 213c 94d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.079505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.079506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.079507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.079509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.089434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.089442 LLDP, length 82 [|LLDP] 19:47:33.089473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.089484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.089498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.089499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2144 35f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.089516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.089518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.089519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.089520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.089531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.089532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.089534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.089535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.089537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.099450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.099458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.099459 LLDP, length 82 [|LLDP] 19:47:33.099495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.099507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.099521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.099522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 214b d712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.099524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.099525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.099526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.099527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.099538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.099539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.099542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.099543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.109429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.109431 LLDP, length 82 [|LLDP] 19:47:33.109468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.109478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.109491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.109492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2153 7832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.109494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.109495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.109502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.109503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.109505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.109506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.109507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.109508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.109510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.119436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.119438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.119445 LLDP, length 82 [|LLDP] 19:47:33.119479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.119489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.119502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.119503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 215b 1952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.119505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.119506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.119507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.119508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.119516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.119517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.119519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.119520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.129427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.129428 LLDP, length 82 [|LLDP] 19:47:33.129457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.129466 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.129467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.129468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.129484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.129486 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.129488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.129495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.129496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2162 ba72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.129497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.129498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.129499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.129501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.139430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.139432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.139433 LLDP, length 82 [|LLDP] 19:47:33.139459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.139469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.139482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.139483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 216a 5b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.139484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.139485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.139486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.139493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.139494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.139497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.139498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.139499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.149423 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.149424 LLDP, length 82 [|LLDP] 19:47:33.149449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.149458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.149470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.149471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2171 fcb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.149473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.149474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.149475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.149476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.149484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.149485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.149487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.149488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.149490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.159428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.159430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.159431 LLDP, length 82 [|LLDP] 19:47:33.159458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.159466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.159467 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.159468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.159469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.159486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.159489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.159490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2179 9dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.159492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.159493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.159493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.159495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.169421 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.169423 LLDP, length 82 [|LLDP] 19:47:33.169446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.169454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.169468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.169469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2181 3ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.169470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.169471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.169472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.169474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.169482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.169482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.169485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.169486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.169487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.179430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.179432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.179433 LLDP, length 82 [|LLDP] 19:47:33.179462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.179470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.179483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.179484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2188 e012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.179486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.179487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.179488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.179489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.179497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.179498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.179500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.179501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.189424 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.189426 LLDP, length 82 [|LLDP] 19:47:33.189457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.189465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.189478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.189479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2190 8132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.189481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.189482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.189488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.189489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.189491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.189492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.189493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.189494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.189496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.199429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.199431 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.199432 LLDP, length 82 [|LLDP] 19:47:33.199460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.199469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.199482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.199483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2198 2252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.199485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.199485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.199487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.199488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.199495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.199497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.199499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.199500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.209422 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.209424 LLDP, length 82 [|LLDP] 19:47:33.209448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.209457 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.209458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.209459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.209475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.209476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.209478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.209485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.209485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 219f c372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.209487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.209488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.209489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.209490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.219429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.219430 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.219431 LLDP, length 82 [|LLDP] 19:47:33.219467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.219476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.219489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.219490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21a7 6492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.219491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.219492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.219493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.219501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.219502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.219504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.219505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.219506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.229427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.229429 LLDP, length 82 [|LLDP] 19:47:33.229455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.229463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.229476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.229477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21af 05b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.229478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.229479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.229480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.229481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.229489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.229490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.229492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.229493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.229495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.239430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.239432 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.239433 LLDP, length 82 [|LLDP] 19:47:33.239459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.239468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.239469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.239470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.239471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.239488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.239491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.239491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21b6 a6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.239493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.239494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.239495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.239497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.249425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.249427 LLDP, length 82 [|LLDP] 19:47:33.249457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.249465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.249478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.249479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21be 47f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.249480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.249481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.249482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.249483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.249491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.249492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.249494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.249495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.249497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.259432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.259434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.259435 LLDP, length 82 [|LLDP] 19:47:33.259468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.259477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.259490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.259491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21c5 e912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.259493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.259494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.259495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.259496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.259504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.259505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.259507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.259509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.269425 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.269427 LLDP, length 82 [|LLDP] 19:47:33.269451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.269460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.269473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.269474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21cd 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.269475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.269476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.269483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.269484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.269486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.269487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.269488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.269489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.269490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.279449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.279451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.279452 LLDP, length 82 [|LLDP] 19:47:33.279490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.279501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.279514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.279516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21d5 2b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.279517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.279518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.279519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.279520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.279528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.279529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.279532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.279533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.289434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.289436 LLDP, length 82 [|LLDP] 19:47:33.289463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.289473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.289474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.289475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.289492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.289494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.289496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.289503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.289503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21dc cc72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.289505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.289506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.289507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.289509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.299445 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.299446 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.299447 LLDP, length 82 [|LLDP] 19:47:33.299487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.299498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.299512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.299513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21e4 6d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.299515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.299516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.299517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.299525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.299526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.299528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.299529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.299531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.309432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.309434 LLDP, length 82 [|LLDP] 19:47:33.309464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.309473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.309486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.309487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21ec 0eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.309489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.309489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.309491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.309492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.309500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.309501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.309504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.309505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.309507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.319442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.319444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.319445 LLDP, length 82 [|LLDP] 19:47:33.319481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.319491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.319492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.319493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.319494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.319512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.319514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.319515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21f3 afd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.319517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.319518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.319519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.319520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.329436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.329438 LLDP, length 82 [|LLDP] 19:47:33.329477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.329487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.329501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.329502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 21fb 50f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.329503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.329504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.329506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.329507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.329515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.329516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.329518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.329519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.329521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.339439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.339441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.339448 LLDP, length 82 [|LLDP] 19:47:33.339483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.339492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.339505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.339506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2202 f212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.339507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.339508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.339509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.339510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.339518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.339519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.339521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.339523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.349437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.349439 LLDP, length 82 [|LLDP] 19:47:33.349468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.349476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.349489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.349490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 220a 9332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.349492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.349493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.349499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.349500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.349502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.349503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.349504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.349506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.349507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.359438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.359440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.359441 LLDP, length 82 [|LLDP] 19:47:33.359474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.359483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.359496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.359497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2212 3452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.359498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.359499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.359500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.359501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.359509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.359510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.359513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.359514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.369432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.369434 LLDP, length 82 [|LLDP] 19:47:33.369463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.369472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.369473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.369474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.369492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.369493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.369495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.369502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.369503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2219 d572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.369505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.369506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.369507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.369508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.379443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.379445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.379446 LLDP, length 82 [|LLDP] 19:47:33.379478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.379486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.379500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.379501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2221 7692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.379502 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.379503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.379505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.379512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.379513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.379515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.379516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.379518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.389432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.389434 LLDP, length 82 [|LLDP] 19:47:33.389469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.389478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.389490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.389491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2229 17b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.389493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.389494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.389495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.389496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.389503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.389505 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.389507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.389508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.389510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.399453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.399454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.399455 LLDP, length 82 [|LLDP] 19:47:33.399497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.399507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.399508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.399509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.399510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.399530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.399532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.399533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2230 b8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.399535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.399536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.399537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.399538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.409433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.409435 LLDP, length 82 [|LLDP] 19:47:33.409464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.409474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.409487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.409488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2238 59f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.409489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.409490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.409491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.409492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.409501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.409502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.409504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.409505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.409507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.419448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.419450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.419451 LLDP, length 82 [|LLDP] 19:47:33.419486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.419496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.419510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.419511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 223f fb12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.419513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.419514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.419515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.419516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.419524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.419525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.419528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.419529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.429435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.429438 LLDP, length 82 [|LLDP] 19:47:33.429468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.429478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.429491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.429492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2247 9c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.429493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.429495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.429502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.429503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.429505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.429506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.429507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.429508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.429510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.439441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.439443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.439444 LLDP, length 82 [|LLDP] 19:47:33.439481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.439494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.439508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.439509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 224f 3d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.439511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.439512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.439513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.439514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.439521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.439523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.439525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.439526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.449432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.449434 LLDP, length 82 [|LLDP] 19:47:33.449467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.449477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.449478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.449479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.449495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.449497 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.449499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.449505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.449506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2256 de72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.449508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.449509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.449510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.449511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.459437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.459439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.459440 LLDP, length 82 [|LLDP] 19:47:33.459478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.459488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.459501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.459502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 225e 7f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.459503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.459504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.459505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.459513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.459514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.459517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.459518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.459519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.469430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.469431 LLDP, length 82 [|LLDP] 19:47:33.469464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.469474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.469487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.469488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2266 20b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.469489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.469490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.469491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.469492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.469501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.469502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.469504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.469505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.469507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.479439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.479441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.479442 LLDP, length 82 [|LLDP] 19:47:33.479473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.479484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.479485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.479486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.479487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.479505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.479507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.479508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 226d c1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.479510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.479511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.479512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.479513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.489429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.489431 LLDP, length 82 [|LLDP] 19:47:33.489456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.489466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.489480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.489481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2275 62f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.489483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.489484 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.489485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.489486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.489494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.489495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.489497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.489498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.489500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.499437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.499439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.499440 LLDP, length 82 [|LLDP] 19:47:33.499468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.499479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.499491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.499492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 227d 0412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.499494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.499495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.499496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.499497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.499505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.499506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.499508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.499510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.509434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.509436 LLDP, length 82 [|LLDP] 19:47:33.509471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.509481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.509493 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.509494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2284 a532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.509496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.509497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.509503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.509504 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.509506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.509507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.509508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.509509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.509511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.519438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.519440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.519441 LLDP, length 82 [|LLDP] 19:47:33.519470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.519480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.519493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.519494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 228c 4652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.519495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.519496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.519497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.519499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.519507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.519508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.519511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.519512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.529430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.529431 LLDP, length 82 [|LLDP] 19:47:33.529457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.529469 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.529470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.529471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.529487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.529488 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.529490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.529497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.529498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2293 e772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.529499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.529500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.529501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.529503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.539438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.539439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.539440 LLDP, length 82 [|LLDP] 19:47:33.539475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.539485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.539497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.539498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 229b 8892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.539500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.539501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.539502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.539510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.539511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.539513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.539514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.539515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.549429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.549431 LLDP, length 82 [|LLDP] 19:47:33.549456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.549466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.549479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.549480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22a3 29b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.549482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.549483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.549484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.549485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.549493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.549494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.549496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.549497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.549499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.559436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.559438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.559439 LLDP, length 82 [|LLDP] 19:47:33.559472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.559482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.559483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.559484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.559485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.559502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.559505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.559506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22aa cad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.559507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.559508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.559509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.559510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.569432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.569433 LLDP, length 82 [|LLDP] 19:47:33.569456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.569466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.569478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.569479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22b2 6bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.569481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.569482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.569483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.569484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.569491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.569492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.569494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.569495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.569497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.579434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.579436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.579437 LLDP, length 82 [|LLDP] 19:47:33.579463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.579472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.579485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.579486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22ba 0d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.579487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.579489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.579490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.579491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.579498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.579499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.579501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.579503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.589428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.589430 LLDP, length 82 [|LLDP] 19:47:33.589452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.589462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.589475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.589476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22c1 ae32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.589477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.589478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.589484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.589485 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.589487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.589488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.589489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.589490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.589492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.599436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.599437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.599438 LLDP, length 82 [|LLDP] 19:47:33.599471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.599480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.599492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.599493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22c9 4f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.599495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.599496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.599497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.599498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.599505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.599506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.599508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.599510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.609427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.609429 LLDP, length 82 [|LLDP] 19:47:33.609452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.609463 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.609464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.609465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.609481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.609482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.609485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.609491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.609492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22d0 f072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.609493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.609495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.609496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.609497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.619437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.619438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.619439 LLDP, length 82 [|LLDP] 19:47:33.619472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.619482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.619494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.619495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22d8 9192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.619496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.619497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.619498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.619505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.619506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.619508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.619510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.619511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.629430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.629431 LLDP, length 82 [|LLDP] 19:47:33.629453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.629463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.629475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.629476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22e0 32b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.629477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.629478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.629479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.629480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.629488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.629489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.629491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.629492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.629494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.639437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.639438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.639439 LLDP, length 82 [|LLDP] 19:47:33.639473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.639482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.639483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.639484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.639486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.639502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.639505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.639506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22e7 d3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.639507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.639508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.639509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.639511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.649431 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.649433 LLDP, length 82 [|LLDP] 19:47:33.649463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.649473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.649486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.649486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22ef 74f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.649488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.649489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.649490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.649491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.649499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.649500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.649503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.649503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.649505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.659436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.659438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.659439 LLDP, length 82 [|LLDP] 19:47:33.659473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.659483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.659496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.659497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22f7 1612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.659498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.659499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.659500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.659501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.659509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.659510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.659513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.659514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.669428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.669430 LLDP, length 82 [|LLDP] 19:47:33.669459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.669470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.669482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.669483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 22fe b732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.669485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.669486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.669491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.669492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.669495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.669496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.669497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.669498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.669499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.679441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.679442 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.679443 LLDP, length 82 [|LLDP] 19:47:33.679471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.679480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.679492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.679493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2306 5852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.679494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.679495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.679496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.679497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.679505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.679506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.679509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.679510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.689430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.689432 LLDP, length 82 [|LLDP] 19:47:33.689463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.689473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.689474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.689475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.689491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.689492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.689494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.689500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.689501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 230d f972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.689503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.689504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.689505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.689506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.699435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.699436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.699437 LLDP, length 82 [|LLDP] 19:47:33.699464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.699473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.699485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.699486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2315 9a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.699487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.699488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.699489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.699495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.699496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.699499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.699500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.699501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.709429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.709431 LLDP, length 82 [|LLDP] 19:47:33.709459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.709469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.709482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.709483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 231d 3bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.709484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.709485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.709486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.709487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.709495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.709496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.709498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.709499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.709500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.719438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.719439 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.719440 LLDP, length 82 [|LLDP] 19:47:33.719465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.719475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.719476 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.719477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.719478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.719495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.719497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.719498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2324 dcd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.719499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.719500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.719501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.719502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.729632 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.729634 LLDP, length 82 [|LLDP] 19:47:33.729656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.729665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.729678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.729679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 232c 7df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.729680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.729681 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.729682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.729683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.729691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.729692 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.729694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.729695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.729696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.739436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.739438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.739439 LLDP, length 82 [|LLDP] 19:47:33.739464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.739473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.739485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.739486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2334 1f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.739488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.739489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.739490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.739491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.739499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.739500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.739502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.739503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.749427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.749428 LLDP, length 82 [|LLDP] 19:47:33.749457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.749466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.749478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.749479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 233b c032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.749481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.749482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.749488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.749489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.749491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.749492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.749493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.749494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.749495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.759436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.759438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.759439 LLDP, length 82 [|LLDP] 19:47:33.759464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.759472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.759485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.759486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2343 6152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.759487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.759488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.759489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.759490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.759497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.759499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.759501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.759502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.769427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.769428 LLDP, length 82 [|LLDP] 19:47:33.769456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.769465 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.769466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.769467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.769482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.769483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.769485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.769491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.769492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 234b 0272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.769494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.769495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.769496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.769497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.779433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.779435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.779436 LLDP, length 82 [|LLDP] 19:47:33.779466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.779475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.779487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.779488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2352 a392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.779489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.779490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.779491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.779498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.779499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.779501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.779502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.779504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.789430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.789431 LLDP, length 82 [|LLDP] 19:47:33.789453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.789462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.789475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.789475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 235a 44b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.789477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.789478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.789480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.789480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.789488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.789489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.789491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.789492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.789493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.799434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.799436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.799437 LLDP, length 82 [|LLDP] 19:47:33.799461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.799469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.799470 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.799471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.799472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.799488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.799491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.799492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2361 e5d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.799493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.799494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.799495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.799497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.809428 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.809429 LLDP, length 82 [|LLDP] 19:47:33.809448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.809455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.809468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.809469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2369 86f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.809471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.809472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.809473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.809474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.809481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.809482 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.809484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.809486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.809487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.819435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.819437 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.819438 LLDP, length 82 [|LLDP] 19:47:33.819459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.819466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.819478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.819479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2371 2812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.819480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.819481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.819482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.819483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.819491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.819492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.819494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.819496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.829426 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.829427 LLDP, length 82 [|LLDP] 19:47:33.829453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.829461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.829473 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.829474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2378 c932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.829475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.829476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.829482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.829483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.829485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.829486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.829487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.829488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.829489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.839432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.839434 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.839435 LLDP, length 82 [|LLDP] 19:47:33.839457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.839464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.839476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.839478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2380 6a52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.839479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.839480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.839481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.839482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.839489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.839490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.839493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.839494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.849429 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.849431 LLDP, length 82 [|LLDP] 19:47:33.849459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.849468 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.849470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.849470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.849486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.849487 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.849490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.849496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.849496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2388 0b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.849498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.849499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.849500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.849502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.859438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.859440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.859441 LLDP, length 82 [|LLDP] 19:47:33.859468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.859477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.859489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.859490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 238f ac92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.859491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.859493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.859494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.859501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.859502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.859504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.859505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.859506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.869431 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.869433 LLDP, length 82 [|LLDP] 19:47:33.869455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.869464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.869476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.869477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2397 4db2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.869479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.869480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.869481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.869481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.869488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.869490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.869492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.869493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.869494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.879433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.879435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.879436 LLDP, length 82 [|LLDP] 19:47:33.879466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.879474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.879475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.879476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.879477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.879494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.879496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.879497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 239e eed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.879498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.879500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.879501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.879502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.889427 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.889429 LLDP, length 82 [|LLDP] 19:47:33.889454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.889462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.889475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.889475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23a6 8ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.889477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.889478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.889479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.889480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.889487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.889488 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.889490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.889491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.889493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.899434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.899435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.899437 LLDP, length 82 [|LLDP] 19:47:33.899458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.899466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.899478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.899479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23ae 3112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.899480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.899481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.899482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.899483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.899491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.899492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.899494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.899495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.909431 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.909433 LLDP, length 82 [|LLDP] 19:47:33.909452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.909460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.909472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.909473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23b5 d232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.909474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.909476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.909481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.909483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.909485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.909486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.909487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.909487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.909488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.919434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.919436 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.919437 LLDP, length 82 [|LLDP] 19:47:33.919459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.919467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.919478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.919479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23bd 7352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.919481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.919482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.919483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.919484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.919491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.919492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.919494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.919495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.929430 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.929431 LLDP, length 82 [|LLDP] 19:47:33.929450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.929458 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.929459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.929460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.929475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.929476 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.929479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.929484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.929485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23c5 1472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.929487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.929488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.929489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.929490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.939434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.939435 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.939436 LLDP, length 82 [|LLDP] 19:47:33.939465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.939473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.939485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.939486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23cc b592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.939487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.939488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.939490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.939496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.939497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.939499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.939500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.939502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.949432 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.949434 LLDP, length 82 [|LLDP] 19:47:33.949462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.949471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.949484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.949484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23d4 56b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.949486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.949487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.949488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.949505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.949514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.949515 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.949518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.949519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.949521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.959473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.959475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.959476 LLDP, length 82 [|LLDP] 19:47:33.959513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.959524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.959525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.959526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.959527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.959547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.959551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.959552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23db f7d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.959553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.959554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.959555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.959557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.969437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.969439 LLDP, length 82 [|LLDP] 19:47:33.969466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.969475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.969489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.969490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23e3 98f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.969491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.969492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.969493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.969494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.969502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.969504 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.969506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.969507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.969508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.979458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.979461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.979461 LLDP, length 82 [|LLDP] 19:47:33.979502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.979512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.979525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.979526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23eb 3a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.979528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.979528 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.979529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.979530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.979539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.979540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.979543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.979544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.989435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.989437 LLDP, length 82 [|LLDP] 19:47:33.989466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.989475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.989488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.989489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23f2 db32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.989490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.989491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.989497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.989498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.989500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.989501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.989503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.989504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.989505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:33.999436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.999438 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:33.999439 LLDP, length 82 [|LLDP] 19:47:33.999468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:33.999477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:33.999489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:33.999490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 23fa 7c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:33.999491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:33.999492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:33.999493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:33.999495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.999502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:33.999503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:33.999506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:33.999507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.009443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.009445 LLDP, length 82 [|LLDP] 19:47:34.009470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.009481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.009482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.009483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.009507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.009508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.009511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.009517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.009518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2402 1d72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.009520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.009521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.009522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.009523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.019447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.019449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.019450 LLDP, length 82 [|LLDP] 19:47:34.019484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.019494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.019507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.019508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2409 be92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.019509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.019510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.019511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.019519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.019520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.019523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.019524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.019526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.029434 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.029435 LLDP, length 82 [|LLDP] 19:47:34.029463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.029471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.029483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.029484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2411 5fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.029486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.029486 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.029487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.029488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.029495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.029496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.029498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.029499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.029500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.039438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.039440 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.039441 LLDP, length 82 [|LLDP] 19:47:34.039470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.039478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.039479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.039480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.039482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.039498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.039500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.039501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2419 00d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.039502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.039503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.039504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.039506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.049439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.049441 LLDP, length 82 [|LLDP] 19:47:34.049476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.049487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.049500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.049501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2420 a1f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.049503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.049504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.049505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.049506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.049514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.049515 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.049517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.049518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.049520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.059443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.059445 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.059446 LLDP, length 82 [|LLDP] 19:47:34.059472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.059481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.059493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.059494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2428 4312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.059495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.059496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.059497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.059498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.059506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.059507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.059509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.059511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.069435 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.069436 LLDP, length 82 [|LLDP] 19:47:34.069458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.069467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.069480 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.069480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 242f e432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.069482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.069483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.069489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.069490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.069493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.069494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.069495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.069496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.069497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.079454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.079456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.079457 LLDP, length 82 [|LLDP] 19:47:34.079490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.079506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.079519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.079520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2437 8552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.079521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.079523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.079524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.079524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.079532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.079534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.079536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.079537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.089437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.089438 LLDP, length 82 [|LLDP] 19:47:34.089463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.089471 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.089472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.089473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.089489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.089490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.089492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.089499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.089500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 243f 2672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.089501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.089502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.089503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.089505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.099442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.099444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.099445 LLDP, length 82 [|LLDP] 19:47:34.099476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.099484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.099496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.099497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2446 c792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.099499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.099500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.099501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.099507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.099508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.099510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.099512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.099513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.109433 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.109434 LLDP, length 82 [|LLDP] 19:47:34.109455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.109463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.109476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.109477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 244e 68b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.109478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.109479 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.109480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.109481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.109488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.109489 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.109492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.109493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.109494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.119457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.119460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.119461 LLDP, length 82 [|LLDP] 19:47:34.119507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.119518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.119519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.119520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.119521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.119541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.119543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.119544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2456 09d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.119546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.119547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.119548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.119549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.129453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.129455 LLDP, length 82 [|LLDP] 19:47:34.129485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.129497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.129510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.129511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 245d aaf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.129513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.129514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.129515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.129516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.129524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.129525 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.129527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.129528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.129530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.139449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.139451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.139452 LLDP, length 82 [|LLDP] 19:47:34.139480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.139490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.139503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.139503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2465 4c12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.139505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.139506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.139507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.139508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.139516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.139517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.139519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.139521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.149439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.149441 LLDP, length 82 [|LLDP] 19:47:34.149465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.149476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.149489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.149489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 246c ed32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.149491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.149492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.149498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.149499 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.149502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.149503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.149504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.149505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.149507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.159447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.159448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.159450 LLDP, length 82 [|LLDP] 19:47:34.159479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.159489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.159502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.159503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2474 8e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.159505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.159506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.159507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.159508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.159516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.159516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.159519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.159521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.169443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.169444 LLDP, length 82 [|LLDP] 19:47:34.169471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.169482 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.169483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.169484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.169501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.169502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.169505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.169511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.169512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 247c 2f72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.169513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.169514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.169515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.169517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.179441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.179443 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.179444 LLDP, length 82 [|LLDP] 19:47:34.179468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.179476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.179488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.179489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2483 d092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.179490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.179492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.179492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.179499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.179500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.179503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.179504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.179506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.189436 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.189437 LLDP, length 82 [|LLDP] 19:47:34.189457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.189465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.189478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.189479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 248b 71b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.189480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.189481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.189482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.189484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.189490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.189492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.189494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.189495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.189496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.199442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.199444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.199445 LLDP, length 82 [|LLDP] 19:47:34.199478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.199487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.199488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.199489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.199490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.199506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.199509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.199510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2493 12d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.199511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.199513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.199514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.199515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.209442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.209444 LLDP, length 82 [|LLDP] 19:47:34.209467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.209477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.209489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.209490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 249a b3f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.209492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.209493 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.209494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.209495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.209502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.209503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.209505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.209506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.209508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.219447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.219449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.219450 LLDP, length 82 [|LLDP] 19:47:34.219476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.219486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.219498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.219499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24a2 5512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.219501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.219502 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.219503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.219504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.219511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.219512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.219515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.219516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.229439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.229440 LLDP, length 82 [|LLDP] 19:47:34.229463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.229474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.229487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.229488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24a9 f632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.229489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.229490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.229497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.229498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.229500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.229501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.229502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.229503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.229504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.239448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.239449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.239450 LLDP, length 82 [|LLDP] 19:47:34.239481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.239491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.239503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.239504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24b1 9752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.239505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.239506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.239507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.239508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.239515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.239517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.239519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.239520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.249441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.249443 LLDP, length 82 [|LLDP] 19:47:34.249466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.249477 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.249478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.249479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.249494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.249496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.249498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.249504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.249505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24b9 3872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.249506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.249507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.249508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.249510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.259446 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.259447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.259448 LLDP, length 82 [|LLDP] 19:47:34.259474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.259484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.259496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.259497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24c0 d992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.259499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.259500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.259501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.259508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.259509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.259511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.259512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.259514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.269439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.269441 LLDP, length 82 [|LLDP] 19:47:34.269464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.269474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.269486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.269487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24c8 7ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.269489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.269490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.269491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.269492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.269499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.269500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.269502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.269503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.269505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.279444 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.279446 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.279447 LLDP, length 82 [|LLDP] 19:47:34.279474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.279484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.279485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.279486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.279487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.279504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.279506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.279507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24d0 1bd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.279508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.279509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.279510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.279512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.289439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.289441 LLDP, length 82 [|LLDP] 19:47:34.289471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.289482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.289494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.289495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24d7 bcf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.289496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.289497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.289499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.289499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.289507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.289508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.289511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.289512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.289513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.299447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.299449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.299450 LLDP, length 82 [|LLDP] 19:47:34.299475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.299483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.299496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.299496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24df 5e12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.299498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.299499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.299500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.299501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.299508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.299509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.299511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.299513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.309441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.309442 LLDP, length 82 [|LLDP] 19:47:34.309464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.309474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.309487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.309487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24e6 ff32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.309489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.309490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.309496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.309497 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.309500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.309501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.309502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.309503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.309504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.319449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.319450 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.319451 LLDP, length 82 [|LLDP] 19:47:34.319486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.319496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.319508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.319509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24ee a052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.319510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.319511 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.319512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.319513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.319521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.319522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.319524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.319525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.329440 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.329442 LLDP, length 82 [|LLDP] 19:47:34.329464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.329475 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.329476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.329477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.329493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.329494 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.329496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.329503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.329504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24f6 4172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.329506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.329507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.329508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.329509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.339447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.339448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.339449 LLDP, length 82 [|LLDP] 19:47:34.339479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.339489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.339501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.339502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 24fd e292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.339503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.339505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.339506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.339513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.339514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.339516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.339517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.339519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.349446 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.349448 LLDP, length 82 [|LLDP] 19:47:34.349483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.349493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.349506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.349506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2505 83b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.349508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.349509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.349510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.349511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.349519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.349521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.349523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.349524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.349525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.359449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.359451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.359452 LLDP, length 82 [|LLDP] 19:47:34.359480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.359489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.359490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.359491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.359492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.359508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.359510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.359511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 250d 24d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.359513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.359514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.359515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.359516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.369442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.369443 LLDP, length 82 [|LLDP] 19:47:34.369475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.369484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.369497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.369499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2514 c5f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.369500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.369501 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.369502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.369503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.369510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.369512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.369514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.369515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.369516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.379447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.379449 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.379450 LLDP, length 82 [|LLDP] 19:47:34.379482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.379491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.379503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.379504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 251c 6712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.379506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.379507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.379508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.379509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.379516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.379517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.379520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.379521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.389451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.389453 LLDP, length 82 [|LLDP] 19:47:34.389481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.389492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.389505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.389506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2524 0832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.389507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.389509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.389515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.389516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.389519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.389520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.389520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.389521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.389523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.399461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.399464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.399465 LLDP, length 82 [|LLDP] 19:47:34.399494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.399503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.399516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.399517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 252b a952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.399519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.399520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.399521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.399522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.399530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.399531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.399534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.399535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.409454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.409456 LLDP, length 82 [|LLDP] 19:47:34.409485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.409495 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.409496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.409497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.409515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.409516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.409519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.409526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.409527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2533 4a72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.409529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.409530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.409531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.409532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.419447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.419448 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.419449 LLDP, length 82 [|LLDP] 19:47:34.419474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.419483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.419496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.419497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 253a eb92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.419498 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.419499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.419500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.419507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.419508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.419510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.419511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.419513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.429438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.429440 LLDP, length 82 [|LLDP] 19:47:34.429460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.429470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.429482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.429483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2542 8cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.429484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.429485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.429486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.429487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.429494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.429495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.429498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.429499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.429500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.439442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.439444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.439445 LLDP, length 82 [|LLDP] 19:47:34.439468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.439476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.439478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.439479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.439480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.439496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.439499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.439500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 254a 2dd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.439501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.439502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.439503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.439505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.449438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.449439 LLDP, length 82 [|LLDP] 19:47:34.449467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.449475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.449488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.449489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2551 cef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.449490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.449491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.449492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.449493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.449500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.449502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.449504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.449505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.449506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.459446 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.459447 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.459448 LLDP, length 82 [|LLDP] 19:47:34.459471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.459479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.459491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.459492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2559 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.459493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.459494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.459495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.459496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.459503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.459504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.459506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.459507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.469437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.469439 LLDP, length 82 [|LLDP] 19:47:34.469460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.469469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.469481 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.469482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2561 1132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.469484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.469485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.469491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.469492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.469494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.469496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.469497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.469498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.469499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.479469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.479471 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.479472 LLDP, length 82 [|LLDP] 19:47:34.479497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.479507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.479519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.479519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2568 b252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.479521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.479522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.479523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.479524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.479531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.479532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.479534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.479536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.489443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.489445 LLDP, length 82 [|LLDP] 19:47:34.489469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.489478 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.489479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.489479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.489495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.489496 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.489499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.489505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.489506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2570 5372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.489508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.489509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.489509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.489511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.499464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.499465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.499466 LLDP, length 82 [|LLDP] 19:47:34.499491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.499500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.499512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.499513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2577 f492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.499515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.499516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.499517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.499524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.499525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.499527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.499528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.499529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.509438 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.509440 LLDP, length 82 [|LLDP] 19:47:34.509466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.509475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.509487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.509488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 257f 95b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.509490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.509491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.509492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.509493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.509500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.509501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.509503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.509504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.509505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.519461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.519463 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.519464 LLDP, length 82 [|LLDP] 19:47:34.519490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.519498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.519499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.519500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.519501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.519518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.519521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.519522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2587 36d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.519523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.519524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.519525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.519527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.529439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.529441 LLDP, length 82 [|LLDP] 19:47:34.529462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.529470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.529482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.529483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 258e d7f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.529484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.529485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.529486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.529487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.529494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.529495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.529498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.529499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.529500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.539439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.539441 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.539442 LLDP, length 82 [|LLDP] 19:47:34.539465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.539473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.539485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.539486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2596 7912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.539488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.539489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.539490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.539491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.539498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.539499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.539501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.539503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.549437 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.549438 LLDP, length 82 [|LLDP] 19:47:34.549463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.549471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.549483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.549484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 259e 1a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.549485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.549486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.549492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.549493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.549495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.549496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.549497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.549498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.549499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.559472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.559474 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.559475 LLDP, length 82 [|LLDP] 19:47:34.559497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.559506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.559518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.559519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25a5 bb52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.559521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.559522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.559523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.559524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.559531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.559532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.559534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.559536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.569441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.569442 LLDP, length 82 [|LLDP] 19:47:34.569463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.569472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.569473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.569474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.569489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.569490 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.569492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.569498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.569499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25ad 5c72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.569501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.569501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.569502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.569504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.579458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.579459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.579460 LLDP, length 82 [|LLDP] 19:47:34.579484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.579492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.579504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.579505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25b4 fd92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.579506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.579507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.579508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.579515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.579516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.579518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.579519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.579521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.589440 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.589442 LLDP, length 82 [|LLDP] 19:47:34.589464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.589472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.589484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.589485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25bc 9eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.589486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.589487 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.589488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.589489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.589497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.589498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.589500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.589501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.589503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.599462 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.599464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.599465 LLDP, length 82 [|LLDP] 19:47:34.599498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.599507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.599508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.599509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.599510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.599526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.599529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.599530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25c4 3fd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.599531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.599532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.599533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.599535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.609439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.609441 LLDP, length 82 [|LLDP] 19:47:34.609461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.609469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.609481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.609482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25cb e0f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.609484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.609485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.609486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.609487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.609494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.609495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.609497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.609498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.609499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.619439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.619441 LLDP, length 82 [|LLDP] 19:47:34.619459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.619467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.619479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.619480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25d3 8212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.619482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.619483 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.619484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.619485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.619491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.619492 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.619495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.619496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.619497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.629439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.629441 LLDP, length 82 [|LLDP] 19:47:34.629467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.629476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.629489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.629489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25db 2332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.629491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.629492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.629498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.629499 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.629501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.629502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.629503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.629504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.629505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.639460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.639462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.639463 LLDP, length 82 [|LLDP] 19:47:34.639485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.639493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.639505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.639505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25e2 c452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.639507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.639508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.639509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.639510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.639518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.639519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.639521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.639523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.649439 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.649441 LLDP, length 82 [|LLDP] 19:47:34.649466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.649474 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.649475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.649476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.649491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.649493 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.649495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.649500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.649501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25ea 6572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.649502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.649503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.649504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.649505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.659443 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.659444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.659445 LLDP, length 82 [|LLDP] 19:47:34.659466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.659474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.659486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.659487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25f2 0692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.659489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.659490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.659491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.659497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.659498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.659500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.659501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.659503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.669441 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.669443 LLDP, length 82 [|LLDP] 19:47:34.669461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.669469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.669481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.669482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 25f9 a7b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.669484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.669485 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.669486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.669487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.669494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.669495 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.669497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.669498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.669500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.679463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.679464 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.679465 LLDP, length 82 [|LLDP] 19:47:34.679489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.679498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.679499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.679500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.679501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.679517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.679519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.679520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2601 48d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.679522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.679523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.679524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.679525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.689444 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.689445 LLDP, length 82 [|LLDP] 19:47:34.689466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.689474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.689486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.689487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2608 e9f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.689488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.689489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.689491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.689492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.689499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.689500 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.689502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.689503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.689504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.699456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.699457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.699459 LLDP, length 82 [|LLDP] 19:47:34.699492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.699503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.699516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.699517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2610 8b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.699519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.699520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.699521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.699522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.699530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.699531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.699533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.699535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.709450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.709453 LLDP, length 82 [|LLDP] 19:47:34.709485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.709494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.709506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.709507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2618 2c32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.709509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.709510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.709516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.709517 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.709520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.709521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.709522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.709523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.709525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.719464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.719466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.719467 LLDP, length 82 [|LLDP] 19:47:34.719493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.719502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.719514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.719515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 261f cd52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.719516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.719517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.719518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.719519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.719526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.719527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.719529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.719531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.729442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.729444 LLDP, length 82 [|LLDP] 19:47:34.729463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.729472 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.729474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.729475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.729490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.729491 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.729493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.729499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.729500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2627 6e72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.729502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.729503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.729504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.729506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.739442 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.739444 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.739444 LLDP, length 82 [|LLDP] 19:47:34.739475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.739484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.739496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.739497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 262f 0f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.739499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.739500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.739501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.739507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.739508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.739510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.739511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.739513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.749447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.749449 LLDP, length 82 [|LLDP] 19:47:34.749478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.749490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.749504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.749505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2636 b0b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.749506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.749507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.749508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.749509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.749517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.749518 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.749521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.749522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.749523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.759485 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.759488 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.759489 LLDP, length 82 [|LLDP] 19:47:34.759525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.759536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.759537 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.759538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.759539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.759558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.759561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.759562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 263e 51d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.759563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.759564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.759565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.759566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.769461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.769463 LLDP, length 82 [|LLDP] 19:47:34.769491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.769499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.769513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.769514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2645 f2f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.769516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.769517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.769518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.769519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.769527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.769528 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.769530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.769531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.769533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.779451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.779453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.779454 LLDP, length 82 [|LLDP] 19:47:34.779492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.779501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.779514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.779515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 264d 9412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.779516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.779517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.779518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.779519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.779527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.779529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.779531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.779532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.789447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.789449 LLDP, length 82 [|LLDP] 19:47:34.789475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.789485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.789497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.789498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2655 3532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.789500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.789501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.789507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.789508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.789510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.789511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.789512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.789513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.789514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.799468 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.799469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.799471 LLDP, length 82 [|LLDP] 19:47:34.799498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.799506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.799519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.799520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 265c d652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.799521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.799522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.799523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.799524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.799532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.799533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.799536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.799537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.809452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.809454 LLDP, length 82 [|LLDP] 19:47:34.809478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.809486 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.809487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.809488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.809505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.809506 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.809508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.809515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.809516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2664 7772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.809518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.809533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.809535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.809537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.819503 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.819505 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.819507 LLDP, length 82 [|LLDP] 19:47:34.819543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.819555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.819569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.819570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 266c 1892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.819572 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.819573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.819574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.819583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.819584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.819587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.819588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.819589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.829462 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.829470 LLDP, length 82 [|LLDP] 19:47:34.829504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.829513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.829526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.829527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2673 b9b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.829529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.829530 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.829531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.829532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.829541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.829542 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.829544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.829545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.829547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.839476 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.839478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.839489 LLDP, length 82 [|LLDP] 19:47:34.839518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.839528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.839529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.839530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.839531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.839548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.839551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.839551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 267b 5ad2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.839553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.839554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.839555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.839557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.849449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.849451 LLDP, length 82 [|LLDP] 19:47:34.849480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.849489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.849501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.849502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2682 fbf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.849504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.849505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.849506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.849507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.849515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.849516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.849518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.849519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.849520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.859470 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.859472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.859472 LLDP, length 82 [|LLDP] 19:47:34.859510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.859519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.859533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.859534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 268a 9d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.859535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.859537 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.859538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.859539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.859547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.859547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.859550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.859551 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.869453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.869455 LLDP, length 82 [|LLDP] 19:47:34.869479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.869487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.869500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.869501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2692 3e32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.869502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.869503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.869510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.869511 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.869513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.869514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.869515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.869516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.869518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.879473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.879475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.879476 LLDP, length 82 [|LLDP] 19:47:34.879502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.879511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.879524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.879525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2699 df52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.879527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.879528 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.879529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.879530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.879537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.879538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.879540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.879542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.889451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.889453 LLDP, length 82 [|LLDP] 19:47:34.889484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.889493 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.889494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.889495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.889511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.889512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.889514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.889521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.889523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26a1 8072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.889524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.889525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.889526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.889527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.899453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.899455 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.899456 LLDP, length 82 [|LLDP] 19:47:34.899484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.899493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.899506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.899507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26a9 2192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.899509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.899510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.899511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.899518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.899519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.899521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.899522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.899524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.909449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.909452 LLDP, length 82 [|LLDP] 19:47:34.909477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.909485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.909497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.909498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26b0 c2b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.909500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.909501 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.909502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.909503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.909511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.909512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.909514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.909515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.909516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.919450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.919452 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.919453 LLDP, length 82 [|LLDP] 19:47:34.919479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.919488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.919489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.919490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.919491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.919508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.919510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.919511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26b8 63d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.919513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.919514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.919515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.919516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.929449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.929451 LLDP, length 82 [|LLDP] 19:47:34.929474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.929482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.929494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.929495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26c0 04f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.929497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.929498 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.929499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.929500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.929507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.929509 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.929511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.929512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.929514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.939449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.939451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.939452 LLDP, length 82 [|LLDP] 19:47:34.939478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.939488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.939500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.939500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26c7 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.939502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.939503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.939505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.939506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.939513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.939514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.939516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.939517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.949447 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.949449 LLDP, length 82 [|LLDP] 19:47:34.949472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.949479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.949492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.949493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26cf 4732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.949494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.949496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.949502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.949503 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.949506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.949507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.949508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.949509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.949510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.959451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.959453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.959454 LLDP, length 82 [|LLDP] 19:47:34.959488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.959497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.959509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.959511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26d6 e852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.959512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.959513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.959514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.959515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.959523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.959524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.959526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.959528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.969448 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.969449 LLDP, length 82 [|LLDP] 19:47:34.969480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.969488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.969488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.969489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.969506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.969507 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.969509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.969516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.969517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26de 8972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.969519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.969520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.969521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.969522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.979452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.979454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.979455 LLDP, length 82 [|LLDP] 19:47:34.979481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.979489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.979501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.979502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26e6 2a92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.979504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.979505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.979506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.979513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.979514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.979516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.979518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.979519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.989451 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.989452 LLDP, length 82 [|LLDP] 19:47:34.989485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.989494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.989507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.989508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26ed cbb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.989509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.989510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.989511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.989512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.989520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.989521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.989524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.989525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.989527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:34.999473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.999475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:34.999476 LLDP, length 82 [|LLDP] 19:47:34.999505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:34.999513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:34.999514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:34.999515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:34.999516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.999533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:34.999536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:34.999537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26f5 6cd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:34.999538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:34.999539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:34.999540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:34.999542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.009453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.009455 LLDP, length 82 [|LLDP] 19:47:35.009480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.009488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.009501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.009502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 26fd 0df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.009503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.009505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.009505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.009507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.009515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.009516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.009519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.009520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.009521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.019458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.019459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.019460 LLDP, length 82 [|LLDP] 19:47:35.019487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.019496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.019508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.019509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2704 af12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.019511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.019512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.019513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.019514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.019521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.019522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.019524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.019526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.029453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.029455 LLDP, length 82 [|LLDP] 19:47:35.029488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.029496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.029509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.029509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 270c 5032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.029511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.029512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.029518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.029519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.029521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.029522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.029524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.029525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.029526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.039452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.039453 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.039454 LLDP, length 82 [|LLDP] 19:47:35.039481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.039490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.039502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.039503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2713 f152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.039505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.039506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.039507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.039508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.039516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.039517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.039519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.039520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.049450 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.049451 LLDP, length 82 [|LLDP] 19:47:35.049483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.049492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.049492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.049493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.049509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.049511 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.049513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.049519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.049520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 271b 9272 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.049522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.049523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.049524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.049525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.059449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.059451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.059452 LLDP, length 82 [|LLDP] 19:47:35.059484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.059492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.059505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.059506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2723 3392 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.059507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.059508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.059509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.059516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.059517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.059519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.059520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.059521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.069453 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.069454 LLDP, length 82 [|LLDP] 19:47:35.069486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.069494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.069507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.069507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 272a d4b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.069509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.069510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.069511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.069512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.069520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.069521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.069523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.069524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.069525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.079449 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.079451 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.079452 LLDP, length 82 [|LLDP] 19:47:35.079480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.079490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.079491 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.079492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.079493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.079510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.079513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.079514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2732 75d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.079515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.079516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.079517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.079518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.089452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.089453 LLDP, length 82 [|LLDP] 19:47:35.089479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.089487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.089500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.089501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 273a 16f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.089503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.089504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.089505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.089506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.089514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.089515 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.089517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.089518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.089519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.099455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.099457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.099458 LLDP, length 82 [|LLDP] 19:47:35.099490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.099499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.099512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.099513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2741 b812 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.099515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.099516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.099517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.099518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.099525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.099526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.099529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.099530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.109454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.109456 LLDP, length 82 [|LLDP] 19:47:35.109482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.109490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.109503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.109504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2749 5932 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.109506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.109507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.109513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.109514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.109516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.109518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.109519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.109520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.109521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.119461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.119470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.119471 LLDP, length 82 [|LLDP] 19:47:35.119510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.119519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.119532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.119533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2750 fa52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.119535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.119536 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.119537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.119538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.119547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.119548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.119550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.119552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.129462 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.129464 LLDP, length 82 [|LLDP] 19:47:35.129498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.129509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.129510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.129511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.129528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.129529 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.129531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.129539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.129540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2758 9b72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.129541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.129542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.129543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.129545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.139455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.139457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.139458 LLDP, length 82 [|LLDP] 19:47:35.139485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.139494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.139506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.139507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2760 3c92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.139509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.139510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.139511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.139518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.139519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.139521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.139522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.139523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.149461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.149463 LLDP, length 82 [|LLDP] 19:47:35.149506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.149515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.149528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.149529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2767 ddb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.149531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.149532 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.149533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.149534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.149543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.149544 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.149546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.149547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.149548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.159473 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.159475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.159476 LLDP, length 82 [|LLDP] 19:47:35.159511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.159522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.159523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.159524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.159525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.159543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.159546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.159547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 276f 7ed2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.159548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.159549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.159551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.159552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.169455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.169457 LLDP, length 82 [|LLDP] 19:47:35.169487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.169495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.169508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.169509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2777 1ff2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.169511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.169512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.169513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.169514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.169521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.169522 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.169524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.169525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.169527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.179459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.179461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.179462 LLDP, length 82 [|LLDP] 19:47:35.179497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.179506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.179518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.179519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 277e c112 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.179521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.179522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.179523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.179524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.179532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.179533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.179535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.179537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.189469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.189472 LLDP, length 82 [|LLDP] 19:47:35.189505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.189515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.189529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.189530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2786 6232 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.189532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.189533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.189540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.189541 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.189544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.189545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.189546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.189547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.189548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.199460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.199462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.199463 LLDP, length 82 [|LLDP] 19:47:35.199492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.199501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.199514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.199514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 278e 0352 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.199516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.199517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.199518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.199519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.199527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.199528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.199531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.199532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.209455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.209457 LLDP, length 82 [|LLDP] 19:47:35.209480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.209488 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.209489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.209490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.209506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.209508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.209510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.209517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.209518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2795 a472 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.209519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.209520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.209521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.209523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.219472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.219475 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.219482 LLDP, length 82 [|LLDP] 19:47:35.219523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.219533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.219546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.219547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 279d 4592 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.219549 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.219550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.219551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.219559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.219560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.219563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.219564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.219566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.229463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.229465 LLDP, length 82 [|LLDP] 19:47:35.229498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.229506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.229519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.229520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27a4 e6b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.229521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.229522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.229523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.229524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.229532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.229533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.229535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.229536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.229537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.239456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.239457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.239458 LLDP, length 82 [|LLDP] 19:47:35.239486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.239496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.239497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.239498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.239499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.239516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.239519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.239520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27ac 87d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.239521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.239522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.239524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.239525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.249471 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.249473 LLDP, length 82 [|LLDP] 19:47:35.249515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.249526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.249540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.249541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27b4 28f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.249542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.249543 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.249544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.249546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.249554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.249555 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.249558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.249559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.249560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.259481 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.259483 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.259484 LLDP, length 82 [|LLDP] 19:47:35.259530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.259541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.259555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.259556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27bb ca12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.259557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.259559 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.259560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.259561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.259570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.259571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.259573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.259575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.269458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.269460 LLDP, length 82 [|LLDP] 19:47:35.269489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.269497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.269509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.269510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27c3 6b32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.269512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.269513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.269520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.269521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.269523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.269524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.269525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.269526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.269528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.279458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.279460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.279461 LLDP, length 82 [|LLDP] 19:47:35.279496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.279505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.279518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.279519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27cb 0c52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.279520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.279522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.279523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.279524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.279531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.279532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.279534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.279536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.289455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.289457 LLDP, length 82 [|LLDP] 19:47:35.289480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.289489 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.289490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.289491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.289507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.289508 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.289510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.289517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.289518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27d2 ad72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.289519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.289520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.289522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.289523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.299455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.299457 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.299458 LLDP, length 82 [|LLDP] 19:47:35.299487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.299497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.299510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.299511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27da 4e92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.299513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.299514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.299515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.299522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.299523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.299525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.299526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.299528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.309454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.309456 LLDP, length 82 [|LLDP] 19:47:35.309480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.309488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.309500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.309501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27e1 efb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.309503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.309504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.309505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.309506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.309513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.309514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.309516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.309517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.309519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.319459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.319460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.319461 LLDP, length 82 [|LLDP] 19:47:35.319498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.319506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.319507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.319508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.319509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.319526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.319529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.319530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27e9 90d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.319531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.319532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.319533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.319534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.329455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.329457 LLDP, length 82 [|LLDP] 19:47:35.329481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.329489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.329502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.329503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27f1 31f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.329504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.329505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.329506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.329507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.329514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.329516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.329518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.329519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.329521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.339452 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.339454 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.339455 LLDP, length 82 [|LLDP] 19:47:35.339483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.339492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.339506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.339507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 27f8 d312 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.339508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.339509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.339510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.339512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.339519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.339520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.339522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.339524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.349456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.349457 LLDP, length 82 [|LLDP] 19:47:35.349487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.349496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.349508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.349509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2800 7432 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.349511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.349512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.349519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.349520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.349522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.349523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.349524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.349525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.349527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.359457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.359459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.359460 LLDP, length 82 [|LLDP] 19:47:35.359494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.359503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.359515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.359516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2808 1552 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.359517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.359519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.359520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.359521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.359528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.359530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.359532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.359533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.369455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.369457 LLDP, length 82 [|LLDP] 19:47:35.369482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.369490 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.369490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.369491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.369508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.369509 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.369511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.369518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.369519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 280f b672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.369520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.369521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.369522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.369523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.379456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.379458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.379459 LLDP, length 82 [|LLDP] 19:47:35.379485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.379493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.379505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.379506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2817 5792 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.379508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.379509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.379510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.379517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.379518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.379520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.379521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.379522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.389455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.389457 LLDP, length 82 [|LLDP] 19:47:35.389479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.389488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.389500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.389501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 281e f8b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.389503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.389504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.389505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.389506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.389513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.389514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.389516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.389517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.389519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.399454 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.399456 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.399457 LLDP, length 82 [|LLDP] 19:47:35.399489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.399498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.399499 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.399500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.399501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.399519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.399521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.399522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2826 99d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.399523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.399525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.399526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.399527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.409463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.409465 LLDP, length 82 [|LLDP] 19:47:35.409494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.409504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.409518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.409518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 282e 3af2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.409520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.409521 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.409522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.409523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.409530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.409532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.409534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.409535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.409536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.419459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.419460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.419462 LLDP, length 82 [|LLDP] 19:47:35.419490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.419498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.419511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.419512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2835 dc12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.419513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.419515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.419516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.419517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.419525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.419526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.419528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.419529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.429460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.429462 LLDP, length 82 [|LLDP] 19:47:35.429488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.429496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.429509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.429510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 283d 7d32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.429511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.429512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.429519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.429520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.429522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.429523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.429524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.429525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.429526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.439458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.439460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.439461 LLDP, length 82 [|LLDP] 19:47:35.439494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.439503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.439515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.439516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2845 1e52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.439518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.439519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.439520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.439521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.439528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.439529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.439531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.439533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.449456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.449457 LLDP, length 82 [|LLDP] 19:47:35.449488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.449496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.449497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.449498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.449515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.449516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.449518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.449525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.449526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 284c bf72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.449527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.449528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.449529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.449531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.459458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.459460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.459461 LLDP, length 82 [|LLDP] 19:47:35.459496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.459504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.459517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.459518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2854 6092 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.459519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.459520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.459521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.459529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.459530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.459532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.459533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.459534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.469456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.469458 LLDP, length 82 [|LLDP] 19:47:35.469488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.469496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.469509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.469509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 285c 01b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.469511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.469512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.469513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.469514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.469522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.469523 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.469525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.469526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.469527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.479457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.479459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.479460 LLDP, length 82 [|LLDP] 19:47:35.479487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.479496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.479497 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.479498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.479499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.479516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.479518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.479519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2863 a2d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.479520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.479522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.479523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.479524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.489459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.489461 LLDP, length 82 [|LLDP] 19:47:35.489486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.489494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.489506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.489507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 286b 43f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.489509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.489510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.489511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.489512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.489519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.489521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.489523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.489524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.489525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.499456 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.499458 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.499459 LLDP, length 82 [|LLDP] 19:47:35.499492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.499500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.499512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.499513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2872 e512 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.499515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.499516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.499517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.499518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.499525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.499526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.499528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.499530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.509458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.509460 LLDP, length 82 [|LLDP] 19:47:35.509484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.509492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.509505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.509506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 287a 8632 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.509507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.509508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.509515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.509516 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.509518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.509519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.509520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.509521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.509522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.519458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.519460 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.519461 LLDP, length 82 [|LLDP] 19:47:35.519488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.519497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.519509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.519510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2882 2752 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.519512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.519513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.519514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.519515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.519522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.519523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.519526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.519527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.529459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.529460 LLDP, length 82 [|LLDP] 19:47:35.529486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.529494 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.529495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.529496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.529513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.529514 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.529516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.529522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.529523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2889 c872 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.529525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.529526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.529527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.529528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.539460 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.539462 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.539463 LLDP, length 82 [|LLDP] 19:47:35.539489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.539498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.539510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.539511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2891 6992 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.539513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.539514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.539515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.539521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.539522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.539525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.539526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.539527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.549459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.549461 LLDP, length 82 [|LLDP] 19:47:35.549485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.549493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.549506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.549507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2899 0ab2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.549508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.549509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.549511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.549512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.549519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.549520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.549522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.549523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.549525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.559458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.559459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.559460 LLDP, length 82 [|LLDP] 19:47:35.559487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.559495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.559496 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.559497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.559498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.559515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.559518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.559519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28a0 abd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.559521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.559522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.559523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.559524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.569455 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.569456 LLDP, length 82 [|LLDP] 19:47:35.569486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.569495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.569507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.569508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28a8 4cf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.569509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.569510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.569511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.569512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.569519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.569521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.569523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.569524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.569526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.579457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.579459 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.579460 LLDP, length 82 [|LLDP] 19:47:35.579493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.579502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.579515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.579516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28af ee12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.579517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.579518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.579519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.579520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.579527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.579528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.579530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.579531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.589457 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.589459 LLDP, length 82 [|LLDP] 19:47:35.589482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.589490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.589503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.589504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28b7 8f32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.589505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.589506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.589512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.589513 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.589516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.589517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.589518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.589519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.589520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.599464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.599466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.599467 LLDP, length 82 [|LLDP] 19:47:35.599493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.599501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.599513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.599514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28bf 3052 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.599516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.599517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.599518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.599519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.599526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.599527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.599529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.599531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.609458 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.609460 LLDP, length 82 [|LLDP] 19:47:35.609484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.609492 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.609493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.609494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.609510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.609512 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.609514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.609520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.609521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28c6 d172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.609523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.609524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.609525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.609527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.619464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.619466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.619467 LLDP, length 82 [|LLDP] 19:47:35.619493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.619502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.619514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.619516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28ce 7292 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.619517 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.619518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.619519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.619527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.619527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.619530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.619531 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.619533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.629459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.629461 LLDP, length 82 [|LLDP] 19:47:35.629485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.629493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.629505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.629506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28d6 13b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.629508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.629509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.629510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.629511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.629518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.629519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.629521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.629522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.629524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.639459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.639461 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.639462 LLDP, length 82 [|LLDP] 19:47:35.639497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.639507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.639508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.639509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.639510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.639527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.639529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.639531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28dd b4d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.639532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.639533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.639534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.639535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.649459 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.649460 LLDP, length 82 [|LLDP] 19:47:35.649489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.649498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.649510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.649511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28e5 55f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.649513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.649514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.649515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.649516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.649523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.649524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.649527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.649528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.649529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.659467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.659469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.659470 LLDP, length 82 [|LLDP] 19:47:35.659496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.659506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.659519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.659520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28ec f712 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.659522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.659523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.659524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.659525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.659532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.659533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.659536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.659538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.669461 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.669463 LLDP, length 82 [|LLDP] 19:47:35.669494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.669502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.669514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.669515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28f4 9832 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.669517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.669518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.669524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.669525 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.669527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.669528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.669529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.669530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.669547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.679493 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.679501 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.679502 LLDP, length 82 [|LLDP] 19:47:35.679539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.679552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.679567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.679568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 28fc 3952 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.679570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.679571 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.679572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.679573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.679582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.679583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.679586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.679587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.689467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.689475 LLDP, length 82 [|LLDP] 19:47:35.689509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.689519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.689520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.689521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.689538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.689539 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.689541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.689548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.689549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2903 da72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.689551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.689552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.689553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.689555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.699464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.699466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.699473 LLDP, length 82 [|LLDP] 19:47:35.699502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.699511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.699524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.699525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 290b 7b92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.699526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.699527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.699528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.699535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.699536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.699539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.699540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.699541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.709465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.709467 LLDP, length 82 [|LLDP] 19:47:35.709493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.709502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.709514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.709515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2913 1cb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.709517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.709518 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.709519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.709520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.709528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.709529 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.709531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.709532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.709534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.719464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.719466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.719467 LLDP, length 82 [|LLDP] 19:47:35.719495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.719505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.719506 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.719507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.719508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.719526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.719529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.719530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 291a bdd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.719531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.719532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.719533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.719534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.729463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.729465 LLDP, length 82 [|LLDP] 19:47:35.729497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.729506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.729518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.729520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2922 5ef2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.729521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.729522 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.729523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.729524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.729532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.729533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.729535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.729536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.729538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.739463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.739466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.739467 LLDP, length 82 [|LLDP] 19:47:35.739502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.739510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.739523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.739524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 292a 0012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.739525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.739526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.739527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.739528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.739536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.739537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.739540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.739541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.749464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.749467 LLDP, length 82 [|LLDP] 19:47:35.749498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.749507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.749519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.749520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2931 a132 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.749522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.749523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.749529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.749530 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.749533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.749534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.749535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.749536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.749537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.759464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.759466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.759467 LLDP, length 82 [|LLDP] 19:47:35.759500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.759509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.759522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.759523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2939 4252 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.759524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.759526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.759527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.759528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.759535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.759536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.759539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.759540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.769464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.769466 LLDP, length 82 [|LLDP] 19:47:35.769499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.769507 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.769508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.769509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.769525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.769526 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.769528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.769535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.769536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2940 e372 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.769537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.769538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.769539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.769541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.779482 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.779484 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.779485 LLDP, length 82 [|LLDP] 19:47:35.779523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.779534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.779548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.779549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2948 8492 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.779551 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.779552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.779553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.779561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.779562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.779565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.779566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.779567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.789464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.789466 LLDP, length 82 [|LLDP] 19:47:35.789498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.789508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.789521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.789522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2950 25b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.789523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.789525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.789526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.789527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.789535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.789536 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.789538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.789539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.789541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.799464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.799466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.799467 LLDP, length 82 [|LLDP] 19:47:35.799501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.799509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.799510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.799511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.799512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.799530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.799532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.799533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2957 c6d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.799535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.799536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.799537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.799538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.809463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.809465 LLDP, length 82 [|LLDP] 19:47:35.809489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.809497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.809509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.809510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 295f 67f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.809512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.809513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.809514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.809515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.809522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.809524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.809526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.809527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.809528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.819465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.819467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.819468 LLDP, length 82 [|LLDP] 19:47:35.819503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.819512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.819525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.819526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2967 0912 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.819527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.819528 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.819529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.819530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.819538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.819539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.819541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.819542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.829465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.829467 LLDP, length 82 [|LLDP] 19:47:35.829492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.829501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.829513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.829514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 296e aa32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.829516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.829517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.829523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.829524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.829527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.829528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.829529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.829530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.829531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.839465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.839467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.839468 LLDP, length 82 [|LLDP] 19:47:35.839505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.839513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.839525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.839526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2976 4b52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.839528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.839529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.839530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.839531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.839539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.839540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.839542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.839543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.849465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.849468 LLDP, length 82 [|LLDP] 19:47:35.849501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.849509 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.849510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.849511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.849528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.849529 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.849531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.849538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.849539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 297d ec72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.849540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.849541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.849542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.849544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.859464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.859466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.859467 LLDP, length 82 [|LLDP] 19:47:35.859495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.859505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.859517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.859518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2985 8d92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.859519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.859520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.859522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.859528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.859530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.859532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.859533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.859535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.869463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.869465 LLDP, length 82 [|LLDP] 19:47:35.869488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.869497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.869510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.869511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 298d 2eb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.869512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.869513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.869514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.869515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.869523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.869524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.869526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.869527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.869529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.879464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.879466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.879467 LLDP, length 82 [|LLDP] 19:47:35.879494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.879502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.879503 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.879504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.879506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.879522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.879525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.879526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2994 cfd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.879527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.879529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.879530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.879531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.889464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.889466 LLDP, length 82 [|LLDP] 19:47:35.889489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.889497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.889509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.889510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 299c 70f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.889512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.889513 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.889514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.889515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.889522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.889523 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.889525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.889526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.889528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.899464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.899466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.899467 LLDP, length 82 [|LLDP] 19:47:35.899493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.899500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.899512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.899513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29a4 1212 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.899515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.899516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.899517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.899518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.899525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.899527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.899529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.899530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.909463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.909465 LLDP, length 82 [|LLDP] 19:47:35.909488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.909496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.909508 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.909509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ab b332 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.909511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.909512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.909518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.909519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.909522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.909523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.909524 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.909525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.909526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.919463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.919465 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.919466 LLDP, length 82 [|LLDP] 19:47:35.919494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.919503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.919517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.919518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29b3 5452 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.919519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.919520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.919521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.919522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.919529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.919530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.919533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.919534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.929464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.929466 LLDP, length 82 [|LLDP] 19:47:35.929489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.929498 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.929499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.929500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.929516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.929517 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.929520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.929526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.929527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ba f572 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.929528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.929529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.929530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.929532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.939465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.939467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.939468 LLDP, length 82 [|LLDP] 19:47:35.939502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.939511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.939523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.939524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29c2 9692 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.939526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.939527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.939528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.939535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.939536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.939538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.939539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.939541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.949465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.949467 LLDP, length 82 [|LLDP] 19:47:35.949499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.949507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.949519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.949520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ca 37b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.949522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.949523 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.949524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.949525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.949532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.949533 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.949535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.949536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.949538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.959464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.959466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.959467 LLDP, length 82 [|LLDP] 19:47:35.959495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.959503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.959504 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.959505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.959506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.959523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.959526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.959527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29d1 d8d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.959528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.959529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.959530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.959532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.969463 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.969465 LLDP, length 82 [|LLDP] 19:47:35.969490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.969498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.969510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.969511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29d9 79f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.969512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.969514 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.969515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.969516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.969523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.969524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.969527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.969528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.969529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.979465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.979467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.979468 LLDP, length 82 [|LLDP] 19:47:35.979501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.979510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.979523 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.979524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29e1 1b12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.979525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.979526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.979527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.979528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.979535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.979536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.979538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.979540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.989466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.989468 LLDP, length 82 [|LLDP] 19:47:35.989491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.989500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.989512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.989513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29e8 bc32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.989515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.989516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.989522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.989524 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.989526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.989527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.989528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.989529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.989531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:35.999465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.999467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:35.999468 LLDP, length 82 [|LLDP] 19:47:35.999501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:35.999509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:35.999521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:35.999522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29f0 5d52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:35.999524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:35.999525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:35.999526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:35.999527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.999534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:35.999535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:35.999537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:35.999538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.009467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.009469 LLDP, length 82 [|LLDP] 19:47:36.009492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.009500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.009501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.009502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.009518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.009519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.009521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.009527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.009528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29f7 fe72 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.009530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.009531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.009532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.009533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.019465 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.019467 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.019468 LLDP, length 82 [|LLDP] 19:47:36.019493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.019501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.019513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.019515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 29ff 9f92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.019516 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.019517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.019518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.019525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.019526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.019528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.019529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.019531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.029467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.029469 LLDP, length 82 [|LLDP] 19:47:36.029496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.029504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.029517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.029518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a07 40b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.029520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.029521 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.029522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.029523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.029531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.029532 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.029534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.029535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.029536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.039468 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.039470 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.039471 LLDP, length 82 [|LLDP] 19:47:36.039505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.039513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.039515 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.039516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.039517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.039534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.039536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.039537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a0e e1d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.039539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.039540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.039541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.039542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.049469 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.049471 LLDP, length 82 [|LLDP] 19:47:36.049495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.049503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.049515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.049516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a16 82f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.049518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.049519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.049520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.049521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.049529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.049530 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.049532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.049533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.049535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.059467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.059469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.059470 LLDP, length 82 [|LLDP] 19:47:36.059497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.059505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.059518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.059519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a1e 2412 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.059520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.059521 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.059522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.059523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.059530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.059531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.059533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.059535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.069466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.069468 LLDP, length 82 [|LLDP] 19:47:36.069491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.069499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.069512 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.069512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a25 c532 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.069514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.069515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.069522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.069522 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.069525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.069526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.069527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.069528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.069529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.079464 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.079466 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.079467 LLDP, length 82 [|LLDP] 19:47:36.079494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.079502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.079515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.079516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a2d 6652 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.079518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.079519 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.079519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.079521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.079528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.079529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.079532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.079533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.089467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.089468 LLDP, length 82 [|LLDP] 19:47:36.089493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.089500 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.089502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.089503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.089518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.089519 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.089522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.089528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.089529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a35 0772 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.089530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.089531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.089532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.089534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.099467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.099469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.099470 LLDP, length 82 [|LLDP] 19:47:36.099505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.099514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.099527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.099528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a3c a892 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.099529 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.099530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.099531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.099538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.099539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.099541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.099542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.099544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.109470 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.109472 LLDP, length 82 [|LLDP] 19:47:36.109496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.109504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.109517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.109518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a44 49b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.109519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.109520 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.109521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.109522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.109529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.109531 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.109533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.109534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.109535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.119467 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.119469 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.119469 LLDP, length 82 [|LLDP] 19:47:36.119495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.119503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.119505 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.119506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.119507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.119524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.119526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.119527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a4b ead2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.119528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.119529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.119530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.119532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.129468 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.129469 LLDP, length 82 [|LLDP] 19:47:36.129502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.129510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.129522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.129523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a53 8bf2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.129525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.129526 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.129527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.129528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.129536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.129537 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.129539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.129540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.129542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.139466 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.139468 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.139469 LLDP, length 82 [|LLDP] 19:47:36.139502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.139510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.139522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.139523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a5b 2d12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.139524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.139525 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.139527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.139528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.139536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.139537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.139539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.139540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.149483 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.149485 LLDP, length 82 [|LLDP] 19:47:36.149519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.149532 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.149547 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.149548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a62 ce32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.149550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.149551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.149558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.149560 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.149562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.149563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.149564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.149565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.149567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.159496 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.159498 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.159499 LLDP, length 82 [|LLDP] 19:47:36.159546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.159559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.159573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.159574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a6a 6f52 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.159575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.159576 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.159577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.159578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.159588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.159589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.159592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.159593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.169487 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.169489 LLDP, length 82 [|LLDP] 19:47:36.169526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.169538 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.169539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.169540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.169557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.169558 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.169560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.169568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.169569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a72 1072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.169570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.169572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.169572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.169574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.179476 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.179478 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.179479 LLDP, length 82 [|LLDP] 19:47:36.179516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.179526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.179538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.179539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a79 b192 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.179541 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.179542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.179543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.179551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.179552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.179554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.179555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.179557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.189472 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.189473 LLDP, length 82 [|LLDP] 19:47:36.189506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.189517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.189530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.189531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a81 52b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.189532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.189533 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.189534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.189535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.189543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.189545 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.189547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.189548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.189549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.199470 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.199472 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.199473 LLDP, length 82 [|LLDP] 19:47:36.199500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.199509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.199510 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.199511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.199512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.199528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.199530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.199531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a88 f3d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.199533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.199534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.199535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.199536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.209524 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.209527 LLDP, length 82 [|LLDP] 19:47:36.209586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.209605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.209620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.209621 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a90 94f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.209622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.209623 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.209625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.209626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.209638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.209639 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.209642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.209643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.209644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.219517 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.219520 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.219521 LLDP, length 82 [|LLDP] 19:47:36.219583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.219597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.219613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.219614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a98 3612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.219615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.219617 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.219618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.219619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.219630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.219631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.219634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.219636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.229504 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.229507 LLDP, length 82 [|LLDP] 19:47:36.229561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.229574 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.229589 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.229590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2a9f d732 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.229592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.229593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.229602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.229603 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.229606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.229607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.229608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.229609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.229611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.239524 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.239526 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.239527 LLDP, length 82 [|LLDP] 19:47:36.239596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.239611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.239626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.239627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2aa7 7852 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.239629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.239630 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.239632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.239633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.239644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.239645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.239649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.239650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.249528 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.249531 LLDP, length 82 [|LLDP] 19:47:36.249592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.249606 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.249607 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.249609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.249628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.249629 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.249632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.249643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.249644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2aaf 1972 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.249645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.249647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.249648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.249649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.259525 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.259527 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.259528 LLDP, length 82 [|LLDP] 19:47:36.259603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.259616 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.259631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.259633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ab6 ba92 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.259634 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.259635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.259637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.259647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.259648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.259651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.259652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.259654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.269526 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.269529 LLDP, length 82 [|LLDP] 19:47:36.269586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.269599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.269614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.269615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2abe 5bb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.269617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.269618 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.269619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.269620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.269630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.269631 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.269634 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.269635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.269636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.279518 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.279521 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.279522 LLDP, length 82 [|LLDP] 19:47:36.279581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.279596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.279597 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.279599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.279600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.279622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.279625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.279626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ac5 fcd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.279627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.279629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.279630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.279632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.289495 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.289498 LLDP, length 82 [|LLDP] 19:47:36.289537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.289549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.289563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.289564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2acd 9df2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.289565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.289567 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.289568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.289569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.289578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.289579 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.289581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.289582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.289584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.299502 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.299505 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.299506 LLDP, length 82 [|LLDP] 19:47:36.299555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.299568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.299582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.299584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ad5 3f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.299585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.299586 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.299587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.299588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.299597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.299598 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.299601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.299602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.309494 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.309496 LLDP, length 82 [|LLDP] 19:47:36.309531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.309545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.309558 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.309559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2adc e032 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.309561 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.309562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.309569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.309570 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.309573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.309574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.309575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.309576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.309577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:47:36.319500 IP 1.1.1.2.36338 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.319502 IP 1.1.1.2.42321 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:47:36.319504 LLDP, length 82 [|LLDP] 19:47:36.319551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:47:36.319565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:47:36.319578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:47:36.319579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 2000 0002 1011 1213 2ae4 8152 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:47:36.319581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:47:36.319582 IP 192.168.1.1.44464 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:47:36.319583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:47:36.319584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.319594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:47:36.319595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:47:36.319598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:47:36.319599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15196 packets captured 15211 packets received by filter 0 packets dropped by kernel 3 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:47:44 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:47:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:47:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG infra1:Logger.py:156 []
Passed functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif 282.39
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2351' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.5, port 43766 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:47:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra1... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ef610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI BridgedLLDP SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI LACPDU SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4ToMe SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Request_BC SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ARP_Reply SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_SSH SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_Telnet SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_ICMP_Request SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DCHP_BC SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPV4_BGP SIP-DIP N/A Tx 1353 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG infra1:Logger.py:156 19:52:08.326339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.326341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.326351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.326352 LLDP, length 82 [|LLDP] 19:52:08.326355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.326369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.326370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.326389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.326390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b22 cd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.326392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.326392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.326393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.326394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.326395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.326396 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.336314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.336316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.336324 LLDP, length 82 [|LLDP] 19:52:08.336326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.336339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.336340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b2a 6e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.336341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.336342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.336343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.336349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.336351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.336352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.336353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.336353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.336354 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.346308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.346310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.346318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.346319 LLDP, length 82 [|LLDP] 19:52:08.346321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.346331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.346332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.346346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.346347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b32 0fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.346348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.346349 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.346350 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.346352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.346353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.346354 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.356306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.356308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.356315 LLDP, length 82 [|LLDP] 19:52:08.356317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.356328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.356329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b39 b0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.356330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.356331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.356332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.356338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.356339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.356340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.356341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.356342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.356343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.366305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.366307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.366315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.366316 LLDP, length 82 [|LLDP] 19:52:08.366318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.366328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.366330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.366344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.366345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b41 51ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.366346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.366347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.366348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.366349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.366350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.366351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.376299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.376301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.376308 LLDP, length 82 [|LLDP] 19:52:08.376310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.376321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.376322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b48 f30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.376324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.376325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.376326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.376331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.376333 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.376334 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.376335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.386331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.386333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.386340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.386342 LLDP, length 82 [|LLDP] 19:52:08.386344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.386353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.386364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.386365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b50 942e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.386367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.396312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.396314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.396321 LLDP, length 82 [|LLDP] 19:52:08.396323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.396334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.396335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b58 354e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.396336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.396337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.396340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.406329 LLDP, length 82 [|LLDP] 19:52:08.406331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.406340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.406341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.406349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.406351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.406352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b5f d66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.406353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.406355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.416309 LLDP, length 82 [|LLDP] 19:52:08.416311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.416324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.416324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b67 778e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.416326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.416327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.416328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.416329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.416338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.416339 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.416340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.416346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.416347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.416348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.416349 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.426305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.426307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.426315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.426316 LLDP, length 82 [|LLDP] 19:52:08.426319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.426328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.426330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.426344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.426344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b6f 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.426346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.426347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.426348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.426349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.426350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.426351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.436306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.436308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.436315 LLDP, length 82 [|LLDP] 19:52:08.436317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.436328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.436329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b76 b9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.436331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.436331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.436332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.436338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.436339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.436341 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.436342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.436342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.436343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.446306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.446308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.446315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.446317 LLDP, length 82 [|LLDP] 19:52:08.446319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.446329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.446330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.446344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.446345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b7e 5aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.446346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.446347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.446348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.446349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.446350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.446351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.456309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.456311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.456318 LLDP, length 82 [|LLDP] 19:52:08.456320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.456331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.456332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b85 fc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.456333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.456334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.456335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.456341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.456342 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.456343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.456344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.456345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.456346 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.466304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.466306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.466313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.466314 LLDP, length 82 [|LLDP] 19:52:08.466316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.466325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.466327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.466340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.466341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b8d 9d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.466342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.466343 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.466344 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.466345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.466346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.466347 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.476302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.476304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.476312 LLDP, length 82 [|LLDP] 19:52:08.476314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.476324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.476325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b95 3e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.476326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.476327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.476328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.476334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.476335 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.476336 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.476337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.486291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.486293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.486301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.486302 LLDP, length 82 [|LLDP] 19:52:08.486304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.486313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.486325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.486325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b9c df6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.486327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.496316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.496318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.496326 LLDP, length 82 [|LLDP] 19:52:08.496328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.496338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.496339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ba4 808e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.496340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.496341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.496344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.506339 LLDP, length 82 [|LLDP] 19:52:08.506341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.506349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.506350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.506359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.506362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.506363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bac 21ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.506364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.506365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.516310 LLDP, length 82 [|LLDP] 19:52:08.516312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.516324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.516325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bb3 c2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.516326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.516327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.516328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.516329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.516338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.516340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.516341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.516346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.516348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.516349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.516350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.526306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.526308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.526316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.526317 LLDP, length 82 [|LLDP] 19:52:08.526319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.526328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.526330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.526343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.526344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bbb 63ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.526345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.526346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.526347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.526348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.526349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.526350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.536308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.536310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.536318 LLDP, length 82 [|LLDP] 19:52:08.536320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.536330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.536331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bc3 050e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.536332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.536333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.536334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.536340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.536341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.536342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.536343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.536344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.536345 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.546307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.546309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.546323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.546324 LLDP, length 82 [|LLDP] 19:52:08.546326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.546335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.546337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.546350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.546351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bca a62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.546352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.546353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.546354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.546355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.546356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.546357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.556308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.556310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.556317 LLDP, length 82 [|LLDP] 19:52:08.556319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.556330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.556331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bd2 474e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.556333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.556334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.556335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.556340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.556342 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.556343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.556344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.556345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.556346 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.566307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.566309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.566317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.566318 LLDP, length 82 [|LLDP] 19:52:08.566320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.566328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.566329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.566343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.566344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bd9 e86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.566345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.566346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.566347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.566348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.566349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.566350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.576301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.576303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.576310 LLDP, length 82 [|LLDP] 19:52:08.576312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.576321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.576322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0be1 898e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.576324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.576324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.576325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.576331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.576333 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.576334 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.576335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.586334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.586336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.586344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.586345 LLDP, length 82 [|LLDP] 19:52:08.586347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.586357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.586368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.586369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0be9 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.586370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.596293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.596295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.596302 LLDP, length 82 [|LLDP] 19:52:08.596304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.596314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.596314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bf0 cbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.596316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.596317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.596320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.606317 LLDP, length 82 [|LLDP] 19:52:08.606319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.606327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.606328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.606336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.606338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.606339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bf8 6cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.606341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.606342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.616312 LLDP, length 82 [|LLDP] 19:52:08.616313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.616326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.616327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c00 0e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.616328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.616329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.616330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.616331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.616341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.616342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.616343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.616349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.616351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.616352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.616353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.626308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.626310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.626317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.626318 LLDP, length 82 [|LLDP] 19:52:08.626320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.626329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.626330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.626343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.626344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c07 af2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.626345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.626346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.626347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.626348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.626349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.626350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.636310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.636312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.636321 LLDP, length 82 [|LLDP] 19:52:08.636323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.636333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.636334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c0f 504e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.636336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.636336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.636337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.636343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.636344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.636345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.636346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.636347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.636348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.646309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.646311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.646318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.646319 LLDP, length 82 [|LLDP] 19:52:08.646321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.646331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.646333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.646346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.646348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c16 f16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.646349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.646350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.646351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.646352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.646352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.646353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.656309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.656311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.656318 LLDP, length 82 [|LLDP] 19:52:08.656320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.656330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.656331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c1e 928e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.656333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.656334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.656335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.656340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.656342 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.656343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.656344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.656345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.656345 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.666307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.666309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.666316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.666317 LLDP, length 82 [|LLDP] 19:52:08.666319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.666328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.666329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.666343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.666343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c26 33ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.666345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.666346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.666347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.666348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.666349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.666350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.676303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.676305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.676312 LLDP, length 82 [|LLDP] 19:52:08.676314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.676325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.676326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c2d d4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.676327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.676328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.676329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.676334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.676336 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.676337 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.676338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.686318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.686320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.686327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.686328 LLDP, length 82 [|LLDP] 19:52:08.686331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.686341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.686352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.686352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c35 75ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.686354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.696318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.696320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.696328 LLDP, length 82 [|LLDP] 19:52:08.696330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.696340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.696341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c3d 170e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.696342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.696343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.696346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.706292 LLDP, length 82 [|LLDP] 19:52:08.706294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.706301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.706303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.706311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.706313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.706314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c44 b82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.706316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.706317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.716315 LLDP, length 82 [|LLDP] 19:52:08.716317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.716331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.716332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c4c 594e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.716333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.716334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.716335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.716336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.716345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.716346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.716347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.716353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.716354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.716355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.716356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.726310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.726312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.726320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.726321 LLDP, length 82 [|LLDP] 19:52:08.726323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.726332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.726334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.726347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.726348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c53 fa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.726349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.726350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.726351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.726353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.726354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.726355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.736311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.736313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.736321 LLDP, length 82 [|LLDP] 19:52:08.736322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.736333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.736334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c5b 9b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.736335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.736337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.736337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.736343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.736344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.736345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.736346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.736347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.736348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.746323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.746325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.746335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.746336 LLDP, length 82 [|LLDP] 19:52:08.746338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.746349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.746351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.746366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.746368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c63 3cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.746369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.746370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.746371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.746372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.746373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.746374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.756317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.756319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.756326 LLDP, length 82 [|LLDP] 19:52:08.756328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.756340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.756341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c6a ddce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.756342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.756344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.756345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.756350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.756352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.756353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.756354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.756355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.756356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.766311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.766313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.766321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.766322 LLDP, length 82 [|LLDP] 19:52:08.766324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.766334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.766336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.766349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.766351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c72 7eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.766352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.766353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.766354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.766355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.766356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.766356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.776307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.776309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.776316 LLDP, length 82 [|LLDP] 19:52:08.776318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.776329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.776330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c7a 200e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.776331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.776332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.776333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.776339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.776341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.776342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.776343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.786338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.786340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.786347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.786348 LLDP, length 82 [|LLDP] 19:52:08.786351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.786360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.786371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.786372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c81 c12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.786374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.796337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.796339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.796347 LLDP, length 82 [|LLDP] 19:52:08.796348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.796360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.796361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c89 624e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.796363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.796363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.796366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.806343 LLDP, length 82 [|LLDP] 19:52:08.806345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.806354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.806355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.806364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.806366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.806367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c91 036e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.806368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.806370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.816314 LLDP, length 82 [|LLDP] 19:52:08.816315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.816332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.816333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c98 a48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.816334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.816335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.816336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.816337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.816347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.816349 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.816350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.816355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.816357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.816358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.816358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.826312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.826314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.826321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.826322 LLDP, length 82 [|LLDP] 19:52:08.826324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.826333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.826334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.826349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.826350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ca0 45ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.826351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.826352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.826353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.826354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.826355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.826356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.836313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.836315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.836322 LLDP, length 82 [|LLDP] 19:52:08.836324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.836335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.836335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ca7 e6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.836337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.836338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.836339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.836344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.836346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.836347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.836348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.836349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.836350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.846311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.846313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.846320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.846321 LLDP, length 82 [|LLDP] 19:52:08.846324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.846332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.846334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.846347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.846348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0caf 87ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.846350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.846351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.846352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.846352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.846353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.846355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.856312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.856314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.856321 LLDP, length 82 [|LLDP] 19:52:08.856323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.856333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.856334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cb7 290e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.856336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.856336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.856337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.856343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.856345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.856345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.856346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.856347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.856348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.866314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.866316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.866323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.866324 LLDP, length 82 [|LLDP] 19:52:08.866326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.866335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.866336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.866349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.866350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cbe ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.866352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.866353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.866353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.866355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.866356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.866357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.876311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.876313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.876320 LLDP, length 82 [|LLDP] 19:52:08.876321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.876333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.876333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cc6 6b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.876335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.876336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.876337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.876343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.876345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.876346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.876347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.886338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.886340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.886347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.886348 LLDP, length 82 [|LLDP] 19:52:08.886350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.886360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.886371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.886372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cce 0c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.886373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.896321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.896323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.896330 LLDP, length 82 [|LLDP] 19:52:08.896332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.896341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.896342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cd5 ad8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.896344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.896345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.896347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.906339 LLDP, length 82 [|LLDP] 19:52:08.906341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.906349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.906350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.906358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.906361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.906361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cdd 4eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.906363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.906364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.916314 LLDP, length 82 [|LLDP] 19:52:08.916316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.916327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.916328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ce4 efce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.916329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.916330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.916331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.916332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.916341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.916343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.916344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.916349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.916350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.916351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.916352 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.926314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.926315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.926322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.926323 LLDP, length 82 [|LLDP] 19:52:08.926325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.926335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.926337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.926351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.926351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cec 90ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.926353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.926354 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.926355 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.926356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.926357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.926358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.936319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.936321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.936328 LLDP, length 82 [|LLDP] 19:52:08.936330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.936341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.936341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cf4 320e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.936343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.936344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.936345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.936351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.936352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.936353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.936354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.936355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.936356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.946317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.946319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.946327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.946328 LLDP, length 82 [|LLDP] 19:52:08.946330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.946339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.946341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.946355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.946355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cfb d32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.946357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.946358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.946359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.946360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.946361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.946362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.956315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.956317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.956324 LLDP, length 82 [|LLDP] 19:52:08.956326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.956336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.956337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d03 744e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.956339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.956340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.956341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.956347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.956349 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.956349 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.956351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.956352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.956353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.966312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.966314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.966321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.966322 LLDP, length 82 [|LLDP] 19:52:08.966324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.966332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.966334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.966347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.966348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d0b 156e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.966350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.966351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.966352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.966353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.966354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.966355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.976310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.976312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.976319 LLDP, length 82 [|LLDP] 19:52:08.976321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.976332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.976333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d12 b68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.976334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.976335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.976336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.976342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.976344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.976345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.976345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.986348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.986351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.986362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.986363 LLDP, length 82 [|LLDP] 19:52:08.986365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.986374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.986388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.986389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d1a 57ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.986390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.996348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.996350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.996358 LLDP, length 82 [|LLDP] 19:52:08.996360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.996371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.996373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d21 f8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.996374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.996375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.996378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.006339 LLDP, length 82 [|LLDP] 19:52:09.006341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.006349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.006350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.006360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.006362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.006363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d29 99ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.006365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.006366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.016326 LLDP, length 82 [|LLDP] 19:52:09.016327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.016341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.016342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d31 3b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.016344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.016345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.016346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.016346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.016362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.016365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.016365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.016372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.016374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.016375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.016375 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.026319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.026321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.026330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.026331 LLDP, length 82 [|LLDP] 19:52:09.026334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.026344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.026345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.026361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.026362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d38 dc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.026364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.026365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.026366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.026367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.026368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.026369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.036320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.036322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.036330 LLDP, length 82 [|LLDP] 19:52:09.036331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.036343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.036344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d40 7d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.036345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.036346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.036348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.036353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.036355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.036356 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.036357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.036358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.036359 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.046318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.046320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.046327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.046328 LLDP, length 82 [|LLDP] 19:52:09.046330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.046340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.046341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.046355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.046356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d48 1e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.046357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.046358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.046359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.046360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.046361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.046362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.056319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.056321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.056337 LLDP, length 82 [|LLDP] 19:52:09.056339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.056349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.056350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d4f bf8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.056351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.056352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.056353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.056359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.056361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.056362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.056363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.056364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.056365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.066319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.066321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.066328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.066329 LLDP, length 82 [|LLDP] 19:52:09.066332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.066342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.066343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.066358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.066358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d57 60ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.066360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.066361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.066362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.066363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.066364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.066365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.076311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.076313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.076320 LLDP, length 82 [|LLDP] 19:52:09.076322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.076333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.076334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d5f 01ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.076335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.076336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.076337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.076342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.076344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.076345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.076346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.086342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.086344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.086352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.086353 LLDP, length 82 [|LLDP] 19:52:09.086355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.086365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.086377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.086378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d66 a2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.086380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.096308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.096310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.096318 LLDP, length 82 [|LLDP] 19:52:09.096320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.096332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.096333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d6e 440e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.096334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.096335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.096338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.106344 LLDP, length 82 [|LLDP] 19:52:09.106346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.106355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.106356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.106364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.106366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.106367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d75 e52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.106369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.106371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.116329 LLDP, length 82 [|LLDP] 19:52:09.116331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.116351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.116352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d7d 864e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.116354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.116355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.116356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.116357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.116368 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.116370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.116371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.116376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.116378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.116379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.116380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.126332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.126334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.126345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.126346 LLDP, length 82 [|LLDP] 19:52:09.126348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.126359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.126360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.126378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.126379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d85 276e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.126380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.126381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.126382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.126383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.126384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.126385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.136319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.136321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.136335 LLDP, length 82 [|LLDP] 19:52:09.136337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.136348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.136349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d8c c88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.136350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.136351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.136352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.136358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.136360 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.136361 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.136361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.136362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.136363 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.146315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.146317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.146324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.146325 LLDP, length 82 [|LLDP] 19:52:09.146328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.146337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.146338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.146352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.146353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d94 69ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.146354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.146355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.146356 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.146357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.146358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.146359 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.156336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.156338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.156348 LLDP, length 82 [|LLDP] 19:52:09.156350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.156362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.156363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d9c 0ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.156365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.156366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.156367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.156373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.156375 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.156376 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.156377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.156378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.156379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.166324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.166326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.166335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.166335 LLDP, length 82 [|LLDP] 19:52:09.166338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.166347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.166349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.166364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.166365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0da3 abee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.166366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.166367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.166368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.166369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.166370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.166371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.176316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.176318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.176325 LLDP, length 82 [|LLDP] 19:52:09.176327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.176338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.176338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dab 4d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.176340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.176341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.176342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.176348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.176350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.176351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.176351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.186342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.186343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.186351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.186352 LLDP, length 82 [|LLDP] 19:52:09.186354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.186363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.186374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.186375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0db2 ee2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.186377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.196342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.196344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.196351 LLDP, length 82 [|LLDP] 19:52:09.196353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.196364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.196365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dba 8f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.196366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.196367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.196370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.206341 LLDP, length 82 [|LLDP] 19:52:09.206342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.206351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.206352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.206360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.206362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.206363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dc2 306e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.206365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.206366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.216326 LLDP, length 82 [|LLDP] 19:52:09.216328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.216341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.216342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dc9 d18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.216343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.216344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.216345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.216346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.216355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.216357 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.216358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.216364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.216366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.216367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.216367 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.226318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.226320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.226327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.226329 LLDP, length 82 [|LLDP] 19:52:09.226331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.226341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.226342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.226356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.226357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dd1 72ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.226358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.226359 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.226360 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.226361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.226362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.226363 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.236320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.236322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.236328 LLDP, length 82 [|LLDP] 19:52:09.236330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.236341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.236342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dd9 13ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.236343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.236344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.236345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.236351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.236352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.236353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.236354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.236355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.236356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.246319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.246321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.246329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.246330 LLDP, length 82 [|LLDP] 19:52:09.246332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.246341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.246342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.246356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.246357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0de0 b4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.246359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.246359 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.246360 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.246361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.246363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.246364 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.256322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.256324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.256331 LLDP, length 82 [|LLDP] 19:52:09.256333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.256344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.256345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0de8 560e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.256347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.256348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.256349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.256354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.256356 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.256357 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.256358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.256359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.256360 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.266319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.266321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.266328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.266329 LLDP, length 82 [|LLDP] 19:52:09.266331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.266340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.266341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.266355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.266356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0def f72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.266357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.266358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.266359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.266360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.266361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.266362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.276312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.276314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.276321 LLDP, length 82 [|LLDP] 19:52:09.276323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.276333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.276334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0df7 984e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.276336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.276336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.276337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.276343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.276344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.276346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.276347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.286344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.286346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.286352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.286353 LLDP, length 82 [|LLDP] 19:52:09.286356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.286365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.286376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.286377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dff 396e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.286378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.296345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.296347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.296354 LLDP, length 82 [|LLDP] 19:52:09.296356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.296366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.296367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e06 da8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.296368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.296369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.296386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.306370 LLDP, length 82 [|LLDP] 19:52:09.306372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.306384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.306385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.306397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.306400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.306401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e0e 7bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.306402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.306404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.316338 LLDP, length 82 [|LLDP] 19:52:09.316340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.316353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.316354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e16 1cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.316356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.316357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.316358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.316359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.316369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.316371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.316372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.316378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.316380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.316381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.316382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.326332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.326334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.326343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.326344 LLDP, length 82 [|LLDP] 19:52:09.326347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.326352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.326353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.326368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.326369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e1d bdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.326371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.326371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.326372 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.326373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.326374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.326376 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.336316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.336318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.336324 LLDP, length 82 [|LLDP] 19:52:09.336326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.336337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.336337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e25 5f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.336339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.336340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.336341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.336346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.336347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.336348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.336349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.336350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.336351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.346311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.346312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.346317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.346318 LLDP, length 82 [|LLDP] 19:52:09.346321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.346323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.346324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.346336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.346337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e2d 002e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.346338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.346339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.346340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.346341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.346342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.346343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.356312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.356313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.356317 LLDP, length 82 [|LLDP] 19:52:09.356319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.356323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.356323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e34 a14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.356325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.356326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.356327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.356332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.356333 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.356334 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.356335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.356336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.356337 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.366311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.366312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.366317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.366318 LLDP, length 82 [|LLDP] 19:52:09.366320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.366328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.366330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.366341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.366342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e3c 426e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.366343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.366344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.366345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.366346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.366347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.366348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.376305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.376306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.376310 LLDP, length 82 [|LLDP] 19:52:09.376312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.376316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.376316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e43 e38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.376318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.376319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.376320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.376325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.376327 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.376328 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.376328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.386296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.386297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.386308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.386309 LLDP, length 82 [|LLDP] 19:52:09.386311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.386314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.386323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.386323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e4b 84ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.386325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.396329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.396330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.396334 LLDP, length 82 [|LLDP] 19:52:09.396336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.396339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.396340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e53 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.396342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.396343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.396346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.406338 LLDP, length 82 [|LLDP] 19:52:09.406339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.406341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.406342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.406347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.406350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.406350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e5a c6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.406352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.406353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.416314 LLDP, length 82 [|LLDP] 19:52:09.416315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.416319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.416320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e62 680e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.416321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.416322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.416323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.416324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.416331 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.416332 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.416334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.416338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.416340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.416341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.416342 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.426309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.426311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.426322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.426323 LLDP, length 82 [|LLDP] 19:52:09.426325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.426328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.426329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.426342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.426343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e6a 092e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.426344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.426345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.426346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.426347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.426348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.426349 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.436319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.436320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.436325 LLDP, length 82 [|LLDP] 19:52:09.436327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.436330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.436331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e71 aa4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.436332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.436333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.436335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.436340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.436341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.436342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.436343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.436344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.436345 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.446314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.446316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.446322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.446323 LLDP, length 82 [|LLDP] 19:52:09.446325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.446328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.446329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.446342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.446343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e79 4b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.446344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.446345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.446347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.446348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.446349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.446350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.456313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.456314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.456320 LLDP, length 82 [|LLDP] 19:52:09.456321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.456325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.456326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e80 ec8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.456327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.456328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.456329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.456334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.456336 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.456337 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.456338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.456339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.456340 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.466313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.466315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.466320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.466320 LLDP, length 82 [|LLDP] 19:52:09.466323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.466325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.466326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.466336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.466337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e88 8dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.466338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.466339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.466340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.466341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.466342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.466343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.476307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.476308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.476312 LLDP, length 82 [|LLDP] 19:52:09.476314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.476318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.476319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e90 2ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.476320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.476321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.476322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.476327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.476329 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.476330 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.476331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.486299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.486300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.486305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.486306 LLDP, length 82 [|LLDP] 19:52:09.486308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.486311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.486318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.486319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e97 cfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.486320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.496321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.496322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.496327 LLDP, length 82 [|LLDP] 19:52:09.496328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.496332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.496333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e9f 710e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.496335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.496336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.496339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.506298 LLDP, length 82 [|LLDP] 19:52:09.506299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.506302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.506303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.506308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.506310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.506311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ea7 122e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.506313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.506314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.516314 LLDP, length 82 [|LLDP] 19:52:09.516315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.516326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.516327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0eae b34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.516328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.516329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.516330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.516331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.516338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.516340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.516341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.516345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.516347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.516348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.516348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.526312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.526313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.526325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.526326 LLDP, length 82 [|LLDP] 19:52:09.526328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.526330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.526332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.526342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.526343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0eb6 546e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.526345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.526346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.526347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.526347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.526348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.526349 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.536316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.536317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.536322 LLDP, length 82 [|LLDP] 19:52:09.536323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.536327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.536328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ebd f58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.536329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.536330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.536331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.536336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.536338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.536339 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.536340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.536341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.536341 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.546312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.546314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.546318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.546320 LLDP, length 82 [|LLDP] 19:52:09.546322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.546324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.546325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.546336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.546336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ec5 96ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.546338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.546339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.546340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.546341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.546342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.546343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.556314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.556315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.556327 LLDP, length 82 [|LLDP] 19:52:09.556329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.556332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.556333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ecd 37ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.556335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.556336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.556337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.556342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.556344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.556345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.556346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.556347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.556347 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.566312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.566313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.566318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.566319 LLDP, length 82 [|LLDP] 19:52:09.566321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.566324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.566325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.566336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.566336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ed4 d8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.566338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.566339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.566340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.566341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.566342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.566343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.576356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.576360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.576373 LLDP, length 82 [|LLDP] 19:52:09.576375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.576389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.576390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0edc 7a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.576391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.576392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.576393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.576400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.576402 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.576403 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.576404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.586341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.586344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.586354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.586355 LLDP, length 82 [|LLDP] 19:52:09.586358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.586369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.586383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.586384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ee4 1b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.586386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.596340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.596342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.596352 LLDP, length 82 [|LLDP] 19:52:09.596353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.596365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.596366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0eeb bc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.596368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.596368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.596371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.606321 LLDP, length 82 [|LLDP] 19:52:09.606322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.606333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.606334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.606344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.606347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.606348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ef3 5d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.606350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.606351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.616335 LLDP, length 82 [|LLDP] 19:52:09.616337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.616351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.616352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0efa fe8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.616353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.616354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.616356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.616357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.616367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.616369 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.616370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.616376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.616378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.616379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.616380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.626333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.626335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.626344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.626345 LLDP, length 82 [|LLDP] 19:52:09.626348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.626358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.626360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.626375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.626376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f02 9fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.626377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.626378 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.626379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.626380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.626381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.626382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.636337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.636339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.636348 LLDP, length 82 [|LLDP] 19:52:09.636350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.636361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.636362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f0a 40ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.636364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.636365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.636366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.636372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.636374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.636375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.636376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.636377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.636378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.646335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.646337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.646347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.646348 LLDP, length 82 [|LLDP] 19:52:09.646350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.646360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.646362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.646377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.646378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f11 e1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.646379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.646380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.646381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.646382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.646383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.646384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.656338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.656341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.656351 LLDP, length 82 [|LLDP] 19:52:09.656353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.656365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.656366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f19 830e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.656368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.656369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.656370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.656377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.656379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.656380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.656381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.656382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.656383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.666339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.666341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.666351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.666352 LLDP, length 82 [|LLDP] 19:52:09.666354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.666365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.666366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.666381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.666382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f21 242e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.666383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.666384 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.666385 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.666386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.666387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.666388 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.676328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.676331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.676339 LLDP, length 82 [|LLDP] 19:52:09.676341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.676353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.676354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f28 c54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.676355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.676356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.676357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.676363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.676365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.676366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.676367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.686347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.686349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.686358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.686359 LLDP, length 82 [|LLDP] 19:52:09.686362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.686373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.686384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.686385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f30 666e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.686386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.696336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.696338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.696347 LLDP, length 82 [|LLDP] 19:52:09.696349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.696361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.696362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f38 078e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.696363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.696365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.696368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.706336 LLDP, length 82 [|LLDP] 19:52:09.706338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.706348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.706349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.706360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.706362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.706363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f3f a8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.706365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.706366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.716337 LLDP, length 82 [|LLDP] 19:52:09.716339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.716353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.716354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f47 49ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.716355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.716356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.716357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.716358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.716368 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.716370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.716371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.716377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.716378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.716379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.716380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.726341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.726342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.726352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.726353 LLDP, length 82 [|LLDP] 19:52:09.726355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.726366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.726368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.726382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.726383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f4e eaee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.726385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.726386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.726387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.726388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.726389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.726390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.736333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.736334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.736342 LLDP, length 82 [|LLDP] 19:52:09.736345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.736355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.736356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f56 8c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.736357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.736358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.736359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.736365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.736367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.736368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.736369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.736369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.736370 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.746334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.746335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.746351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.746352 LLDP, length 82 [|LLDP] 19:52:09.746354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.746364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.746366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.746381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.746382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f5e 2d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.746383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.746384 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.746385 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.746386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.746387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.746388 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.756343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.756346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.756356 LLDP, length 82 [|LLDP] 19:52:09.756358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.756370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.756371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f65 ce4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.756372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.756373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.756374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.756381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.756382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.756383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.756384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.756385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.756386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.766339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.766341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.766350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.766350 LLDP, length 82 [|LLDP] 19:52:09.766353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.766363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.766364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.766379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.766380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f6d 6f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.766381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.766382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.766383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.766384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.766385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.766386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.776341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.776344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.776355 LLDP, length 82 [|LLDP] 19:52:09.776357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.776371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.776371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f75 108e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.776373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.776374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.776375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.776382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.776383 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.776384 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.776385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.786353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.786355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.786364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.786365 LLDP, length 82 [|LLDP] 19:52:09.786368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.786380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.786393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.786394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f7c b1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.786396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.796322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.796324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.796333 LLDP, length 82 [|LLDP] 19:52:09.796335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.796346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.796347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f84 52ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.796348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.796350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.796352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.806327 LLDP, length 82 [|LLDP] 19:52:09.806329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.806341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.806342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.806354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.806357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.806358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f8b f3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.806359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.806360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.816340 LLDP, length 82 [|LLDP] 19:52:09.816341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.816355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.816356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f93 950e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.816358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.816359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.816360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.816361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.816371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.816373 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.816374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.816380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.816382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.816383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.816384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.826326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.826328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.826334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.826335 LLDP, length 82 [|LLDP] 19:52:09.826337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.826345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.826347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.826358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.826359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f9b 362e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.826361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.826362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.826363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.826364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.826365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.826365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.836326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.836328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.836334 LLDP, length 82 [|LLDP] 19:52:09.836336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.836346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.836347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fa2 d74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.836349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.836350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.836351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.836356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.836358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.836359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.836360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.836361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.836362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.846326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.846328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.846341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.846342 LLDP, length 82 [|LLDP] 19:52:09.846344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.846351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.846353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.846364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.846365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0faa 786e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.846366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.846367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.846368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.846369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.846370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.846371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.856322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.856324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.856330 LLDP, length 82 [|LLDP] 19:52:09.856332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.856341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.856342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fb2 198e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.856343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.856344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.856345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.856351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.856353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.856354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.856355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.856356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.856357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.866321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.866323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.866331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.866331 LLDP, length 82 [|LLDP] 19:52:09.866334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.866341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.866342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.866354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.866355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fb9 baae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.866356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.866357 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.866358 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.866359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.866360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.866362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.876317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.876319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.876326 LLDP, length 82 [|LLDP] 19:52:09.876327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.876336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.876337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fc1 5bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.876339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.876340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.876341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.876346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.876348 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.876349 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.876350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.886337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.886338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.886344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.886345 LLDP, length 82 [|LLDP] 19:52:09.886347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.886355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.886363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.886364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fc8 fcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.886365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.896309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.896310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.896316 LLDP, length 82 [|LLDP] 19:52:09.896317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.896331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.896332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fd0 9e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.896334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.896335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.896337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.906326 LLDP, length 82 [|LLDP] 19:52:09.906328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.906334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.906335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.906342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.906344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.906345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fd8 3f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.906347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.906348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.916323 LLDP, length 82 [|LLDP] 19:52:09.916324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.916339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.916340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fdf e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.916341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.916342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.916343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.916344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.916352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.916354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.916355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.916360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.916362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.916363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.916364 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.926321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.926323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.926329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.926330 LLDP, length 82 [|LLDP] 19:52:09.926332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.926338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.926340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.926351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.926352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fe7 816e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.926353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.926354 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.926355 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.926356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.926357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.926358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.936321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.936323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.936328 LLDP, length 82 [|LLDP] 19:52:09.936330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.936338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.936339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fef 228e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.936340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.936341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.936343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.936348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.936350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.936351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.936352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.936353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.936353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.946324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.946325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.946331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.946332 LLDP, length 82 [|LLDP] 19:52:09.946335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.946341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.946343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.946355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.946356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ff6 c3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.946357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.946358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.946359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.946360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.946361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.946362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.956324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.956326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.956332 LLDP, length 82 [|LLDP] 19:52:09.956334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.956343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.956343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ffe 64ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.956345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.956346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.956347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.956352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.956353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.956354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.956355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.956356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.956357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.966322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.966324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.966337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.966338 LLDP, length 82 [|LLDP] 19:52:09.966340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.966347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.966348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.966360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.966360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1006 05ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.966362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.966363 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.966364 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.966365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.966366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.966367 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.976320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.976322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.976330 LLDP, length 82 [|LLDP] 19:52:09.976332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.976340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.976340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 100d a70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.976342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.976343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.976344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.976350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.976351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.976352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.976353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.986371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.986373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.986379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.986380 LLDP, length 82 [|LLDP] 19:52:09.986382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.986389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.986398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.986399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1015 482e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.986400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.996340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.996341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.996347 LLDP, length 82 [|LLDP] 19:52:09.996349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.996356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.996357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 101c e94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.996359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.996360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.996362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.006308 LLDP, length 82 [|LLDP] 19:52:10.006309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.006315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.006316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.006323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.006325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.006326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1024 8a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.006327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.006328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.016327 LLDP, length 82 [|LLDP] 19:52:10.016328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.016337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.016338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 102c 2b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.016340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.016340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.016341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.016342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.016350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.016352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.016353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.016358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.016360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.016361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.016362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.026324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.026326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.026338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.026339 LLDP, length 82 [|LLDP] 19:52:10.026341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.026348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.026350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.026360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.026361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1033 ccae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.026363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.026364 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.026365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.026366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.026367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.026368 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.036323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.036325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.036330 LLDP, length 82 [|LLDP] 19:52:10.036332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.036340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.036341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 103b 6dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.036342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.036343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.036344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.036350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.036351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.036352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.036353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.036354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.036355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.046326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.046327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.046340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.046341 LLDP, length 82 [|LLDP] 19:52:10.046343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.046351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.046352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.046364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.046365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1043 0eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.046366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.046367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.046368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.046369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.046370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.046371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.056326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.056327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.056333 LLDP, length 82 [|LLDP] 19:52:10.056334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.056343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.056344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 104a b00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.056345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.056346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.056347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.056352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.056354 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.056355 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.056356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.056357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.056358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.066325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.066327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.066333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.066334 LLDP, length 82 [|LLDP] 19:52:10.066336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.066343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.066344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.066355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.066355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1052 512e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.066357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.066358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.066359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.066360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.066361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.066362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.076320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.076321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.076334 LLDP, length 82 [|LLDP] 19:52:10.076336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.076344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.076345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1059 f24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.076346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.076348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.076348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.076354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.076356 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.076357 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.076358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.086331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.086332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.086338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.086339 LLDP, length 82 [|LLDP] 19:52:10.086341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.086348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.086357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.086357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1061 936e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.086359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.096332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.096333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.096338 LLDP, length 82 [|LLDP] 19:52:10.096340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.096348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.096348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1069 348e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.096350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.096351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.096354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.106310 LLDP, length 82 [|LLDP] 19:52:10.106312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.106318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.106319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.106326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.106328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.106329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1070 d5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.106330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.106332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.116328 LLDP, length 82 [|LLDP] 19:52:10.116329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.116343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.116343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1078 76ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.116345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.116346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.116347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.116348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.116356 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.116358 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.116359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.116364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.116366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.116367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.116368 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.126327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.126329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.126336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.126337 LLDP, length 82 [|LLDP] 19:52:10.126339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.126346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.126348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.126360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.126361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1080 17ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.126363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.126364 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.126365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.126366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.126367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.126369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.136329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.136331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.136337 LLDP, length 82 [|LLDP] 19:52:10.136338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.136347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.136347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1087 b90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.136349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.136350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.136351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.136356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.136358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.136359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.136359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.136360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.136361 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.146326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.146328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.146340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.146341 LLDP, length 82 [|LLDP] 19:52:10.146343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.146350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.146351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.146362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.146363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 108f 5a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.146364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.146365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.146366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.146367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.146368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.146369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.156331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.156333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.156340 LLDP, length 82 [|LLDP] 19:52:10.156341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.156351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.156351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1096 fb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.156353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.156354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.156355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.156360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.156362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.156363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.156364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.156365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.156366 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.166326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.166328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.166334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.166335 LLDP, length 82 [|LLDP] 19:52:10.166337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.166345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.166346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.166358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.166359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 109e 9c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.166360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.166361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.166362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.166363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.166364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.166365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.176327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.176329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.176336 LLDP, length 82 [|LLDP] 19:52:10.176338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.176347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.176348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10a6 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.176350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.176351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.176352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.176358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.176359 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.176360 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.176361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.186340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.186342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.186348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.186349 LLDP, length 82 [|LLDP] 19:52:10.186352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.186359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.186369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.186370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10ad deae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.186371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.196350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.196351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.196357 LLDP, length 82 [|LLDP] 19:52:10.196359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.196367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.196367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10b5 7fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.196369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.196370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.196373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.206331 LLDP, length 82 [|LLDP] 19:52:10.206332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.206339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.206340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.206346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.206349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.206349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10bd 20ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.206351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.206353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.216329 LLDP, length 82 [|LLDP] 19:52:10.216330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.216344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.216344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10c4 c20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.216346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.216347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.216348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.216349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.216357 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.216359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.216360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.216366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.216367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.216368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.216369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.226327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.226328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.226341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.226342 LLDP, length 82 [|LLDP] 19:52:10.226344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.226351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.226352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.226364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.226365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10cc 632e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.226366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.226367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.226368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.226369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.226370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.226371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.236327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.236328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.236334 LLDP, length 82 [|LLDP] 19:52:10.236335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.236343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.236344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10d4 044e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.236345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.236347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.236348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.236353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.236355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.236356 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.236357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.236358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.236359 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.246324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.246325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.246337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.246338 LLDP, length 82 [|LLDP] 19:52:10.246341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.246347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.246348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.246359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.246359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10db a56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.246361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.246362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.246363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.246364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.246365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.246366 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.256334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.256336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.256350 LLDP, length 82 [|LLDP] 19:52:10.256352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.256362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.256363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10e3 468e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.256365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.256366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.256367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.256373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.256375 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.256376 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.256377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.256378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.256379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.266351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.266353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.266370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.266372 LLDP, length 82 [|LLDP] 19:52:10.266374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.266385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.266386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.266400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.266401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10ea e7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.266403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.266403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.266404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.266405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.266406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.266407 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.276326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.276328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.276334 LLDP, length 82 [|LLDP] 19:52:10.276336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.276345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.276357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10f2 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.276359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.276361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.276362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.276368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.276370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.276371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.276372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.286372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.286374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.286385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.286386 LLDP, length 82 [|LLDP] 19:52:10.286389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.286402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.286417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.286418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10fa 29ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.286419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.296351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.296353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.296360 LLDP, length 82 [|LLDP] 19:52:10.296362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.296373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.296374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1101 cb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.296375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.296376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.296379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.306357 LLDP, length 82 [|LLDP] 19:52:10.306358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.306368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.306369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.306379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.306381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.306383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1109 6c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.306384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.306385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.316341 LLDP, length 82 [|LLDP] 19:52:10.316343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.316357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.316358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1111 0d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.316359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.316360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.316361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.316362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.316372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.316374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.316375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.316381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.316383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.316383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.316384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.326342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.326344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.326352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.326353 LLDP, length 82 [|LLDP] 19:52:10.326355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.326365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.326367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.326380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.326381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1118 ae6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.326382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.326383 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.326384 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.326385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.326386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.326387 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.336339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.336341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.336348 LLDP, length 82 [|LLDP] 19:52:10.336350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.336360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.336361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1120 4f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.336362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.336363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.336364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.336370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.336371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.336372 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.336373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.336374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.336375 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.346339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.346341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.346348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.346349 LLDP, length 82 [|LLDP] 19:52:10.346351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.346360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.346362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.346374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.346375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1127 f0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.346376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.346377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.346378 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.346379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.346380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.346381 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.356333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.356335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.356350 LLDP, length 82 [|LLDP] 19:52:10.356351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.356361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.356362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 112f 91ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.356363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.356364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.356366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.356371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.356373 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.356374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.356375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.356375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.356376 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.366334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.366336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.366343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.366344 LLDP, length 82 [|LLDP] 19:52:10.366346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.366354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.366355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.366367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.366368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1137 32ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.366369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.366370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.366371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.366372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.366373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.366374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.376330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.376331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.376339 LLDP, length 82 [|LLDP] 19:52:10.376341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.376351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.376352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 113e d40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.376353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.376354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.376355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.376361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.376362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.376363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.376364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.386338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.386340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.386347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.386349 LLDP, length 82 [|LLDP] 19:52:10.386351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.386359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.386368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.386369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1146 752e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.386370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.396320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.396322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.396336 LLDP, length 82 [|LLDP] 19:52:10.396338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.396348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.396348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 114e 164e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.396350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.396351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.396354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.406347 LLDP, length 82 [|LLDP] 19:52:10.406349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.406356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.406358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.406366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.406368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.406369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1155 b76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.406370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.406371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.416338 LLDP, length 82 [|LLDP] 19:52:10.416340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.416352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.416352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 115d 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.416354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.416355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.416356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.416357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.416366 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.416368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.416369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.416374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.416376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.416377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.416378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.426337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.426339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.426346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.426347 LLDP, length 82 [|LLDP] 19:52:10.426349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.426356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.426358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.426370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.426371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1164 f9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.426372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.426373 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.426374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.426375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.426376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.426377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.436337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.436338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.436346 LLDP, length 82 [|LLDP] 19:52:10.436348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.436358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.436359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 116c 9ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.436360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.436361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.436362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.436367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.436369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.436370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.436371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.436372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.436373 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.446334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.446336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.446342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.446344 LLDP, length 82 [|LLDP] 19:52:10.446346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.446354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.446355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.446367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.446368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1174 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.446369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.446370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.446371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.446372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.446373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.446374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.456348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.456350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.456358 LLDP, length 82 [|LLDP] 19:52:10.456359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.456370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.456371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 117b dd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.456372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.456373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.456374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.456380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.456382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.456383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.456384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.456385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.456386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.466343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.466345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.466353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.466354 LLDP, length 82 [|LLDP] 19:52:10.466356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.466366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.466367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.466380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.466381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1183 7e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.466382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.466383 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.466384 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.466385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.466386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.466387 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.476329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.476331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.476338 LLDP, length 82 [|LLDP] 19:52:10.476340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.476350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.476351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 118b 1f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.476352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.476353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.476354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.476359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.476361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.476362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.476363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.486386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.486388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.486394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.486395 LLDP, length 82 [|LLDP] 19:52:10.486398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.486407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.486416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.486417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1192 c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.486418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.496356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.496357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.496364 LLDP, length 82 [|LLDP] 19:52:10.496365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.496375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.496376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 119a 618e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.496377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.496378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.496381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.506342 LLDP, length 82 [|LLDP] 19:52:10.506344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.506352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.506353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.506360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.506362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.506363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11a2 02ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.506365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.506366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.516340 LLDP, length 82 [|LLDP] 19:52:10.516342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.516353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.516354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11a9 a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.516355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.516357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.516357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.516359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.516367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.516369 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.516370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.516375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.516377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.516378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.516379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.526340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.526341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.526348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.526349 LLDP, length 82 [|LLDP] 19:52:10.526351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.526360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.526361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.526373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.526374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11b1 44ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.526375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.526376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.526377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.526378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.526379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.526380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.536340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.536342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.536349 LLDP, length 82 [|LLDP] 19:52:10.536351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.536361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.536362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11b8 e60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.536363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.536364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.536365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.536371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.536372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.536374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.536375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.536376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.536377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.546336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.546337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.546344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.546345 LLDP, length 82 [|LLDP] 19:52:10.546347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.546356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.546357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.546368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.546369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11c0 872e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.546371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.546372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.546373 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.546374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.546375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.546376 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.556339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.556341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.556347 LLDP, length 82 [|LLDP] 19:52:10.556349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.556359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.556360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11c8 284e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.556361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.556362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.556363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.556369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.556370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.556371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.556372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.556373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.556374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.566341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.566343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.566350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.566351 LLDP, length 82 [|LLDP] 19:52:10.566353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.566362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.566364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.566375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.566376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11cf c96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.566378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.566379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.566380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.566381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.566382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.566383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.576333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.576335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.576341 LLDP, length 82 [|LLDP] 19:52:10.576343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.576353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.576354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11d7 6a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.576355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.576357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.576358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.576362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.576364 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.576365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.576366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.586347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.586349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.586356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.586357 LLDP, length 82 [|LLDP] 19:52:10.586359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.586367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.586377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.586377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11df 0bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.586379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.596354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.596355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.596362 LLDP, length 82 [|LLDP] 19:52:10.596364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.596373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.596374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11e6 acce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.596375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.596376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.596379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.606322 LLDP, length 82 [|LLDP] 19:52:10.606324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.606332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.606332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.606340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.606343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.606343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11ee 4dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.606345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.606346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.616340 LLDP, length 82 [|LLDP] 19:52:10.616342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.616352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.616353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11f5 ef0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.616355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.616355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.616356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.616357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.616366 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.616368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.616369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.616374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.616375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.616376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.616377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.626339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.626340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.626347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.626348 LLDP, length 82 [|LLDP] 19:52:10.626350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.626358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.626359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.626371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.626371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11fd 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.626373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.626374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.626374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.626375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.626376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.626378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.636339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.636341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.636347 LLDP, length 82 [|LLDP] 19:52:10.636349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.636359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.636359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1205 314e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.636361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.636362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.636363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.636368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.636370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.636371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.636372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.636373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.636373 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.646339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.646341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.646348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.646349 LLDP, length 82 [|LLDP] 19:52:10.646351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.646359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.646361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.646372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.646373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 120c d26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.646375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.646376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.646377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.646378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.646378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.646379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.656339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.656340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.656347 LLDP, length 82 [|LLDP] 19:52:10.656349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.656358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.656359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1214 738e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.656360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.656361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.656362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.656368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.656369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.656370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.656371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.656372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.656373 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.666342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.666343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.666350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.666351 LLDP, length 82 [|LLDP] 19:52:10.666353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.666361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.666362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.666373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.666374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 121c 14ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.666375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.666376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.666377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.666378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.666379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.666380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.676334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.676336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.676342 LLDP, length 82 [|LLDP] 19:52:10.676344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.676354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.676355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1223 b5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.676356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.676357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.676358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.676364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.676365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.676366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.676367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.686328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.686330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.686344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.686345 LLDP, length 82 [|LLDP] 19:52:10.686347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.686355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.686365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.686366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 122b 56ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.686368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.696343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.696345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.696352 LLDP, length 82 [|LLDP] 19:52:10.696354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.696363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.696364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1232 f80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.696365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.696366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.696369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.706323 LLDP, length 82 [|LLDP] 19:52:10.706325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.706337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.706338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.706346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.706348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.706349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 123a 992e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.706350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.706352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.716343 LLDP, length 82 [|LLDP] 19:52:10.716345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.716363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.716363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1242 3a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.716365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.716366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.716367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.716369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.716377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.716379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.716380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.716386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.716388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.716388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.716389 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.726347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.726349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.726358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.726359 LLDP, length 82 [|LLDP] 19:52:10.726361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.726370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.726372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.726385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.726386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1249 db6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.726387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.726388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.726390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.726391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.726392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.726392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.736346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.736348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.736355 LLDP, length 82 [|LLDP] 19:52:10.736357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.736367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.736368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1251 7c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.736369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.736370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.736372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.736377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.736378 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.736379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.736380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.736381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.736382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.746342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.746344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.746351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.746352 LLDP, length 82 [|LLDP] 19:52:10.746355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.746364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.746366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.746377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.746378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1259 1dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.746379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.746381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.746381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.746382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.746383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.746384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.756356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.756358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.756367 LLDP, length 82 [|LLDP] 19:52:10.756369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.756382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.756382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1260 bece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.756384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.756385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.756386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.756391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.756393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.756394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.756395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.756396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.756397 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.766347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.766349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.766357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.766358 LLDP, length 82 [|LLDP] 19:52:10.766360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.766369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.766371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.766383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.766384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1268 5fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.766385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.766386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.766387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.766388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.766389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.766390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.776354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.776356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.776365 LLDP, length 82 [|LLDP] 19:52:10.776367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.776379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.776380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1270 010e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.776381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.776382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.776383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.776389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.776391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.776392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.776393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.786402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.786404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.786412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.786413 LLDP, length 82 [|LLDP] 19:52:10.786415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.786426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.786436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.786437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1277 a22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.786438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.796353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.796355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.796363 LLDP, length 82 [|LLDP] 19:52:10.796365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.796375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.796376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 127f 434e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.796377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.796378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.796381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.806357 LLDP, length 82 [|LLDP] 19:52:10.806359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.806366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.806367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.806376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.806378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.806379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1286 e46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.806380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.806381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.816345 LLDP, length 82 [|LLDP] 19:52:10.816346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.816357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.816358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 128e 858e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.816359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.816360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.816361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.816362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.816372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.816374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.816375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.816380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.816382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.816383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.816384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.826345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.826347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.826354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.826355 LLDP, length 82 [|LLDP] 19:52:10.826357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.826366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.826367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.826379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.826380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1296 26ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.826381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.826382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.826383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.826384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.826385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.826386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.836341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.836343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.836350 LLDP, length 82 [|LLDP] 19:52:10.836352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.836362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.836363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 129d c7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.836365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.836366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.836367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.836372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.836374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.836375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.836376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.836377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.836378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.846343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.846345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.846353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.846354 LLDP, length 82 [|LLDP] 19:52:10.846356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.846364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.846365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.846377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.846378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12a5 68ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.846379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.846380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.846381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.846382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.846383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.846384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.856342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.856344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.856351 LLDP, length 82 [|LLDP] 19:52:10.856353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.856363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.856364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12ad 0a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.856365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.856366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.856367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.856373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.856374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.856375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.856377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.856378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.856379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.866342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.866344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.866350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.866352 LLDP, length 82 [|LLDP] 19:52:10.866354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.866362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.866364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.866374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.866376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12b4 ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.866377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.866378 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.866379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.866380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.866381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.866382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.876337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.876339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.876346 LLDP, length 82 [|LLDP] 19:52:10.876348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.876357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.876358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12bc 4c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.876360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.876361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.876362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.876367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.876369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.876369 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.876370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.886355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.886357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.886364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.886365 LLDP, length 82 [|LLDP] 19:52:10.886368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.886376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.886385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.886386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12c3 ed6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.886387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.896358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.896360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.896367 LLDP, length 82 [|LLDP] 19:52:10.896369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.896379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.896380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12cb 8e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.896381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.896382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.896385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.906327 LLDP, length 82 [|LLDP] 19:52:10.906329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.906336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.906337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.906345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.906348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.906349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12d3 2fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.906350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.906351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.916345 LLDP, length 82 [|LLDP] 19:52:10.916346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.916358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.916358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12da d0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.916360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.916360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.916361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.916362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.916372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.916374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.916375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.916380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.916382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.916383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.916384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.926342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.926343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.926351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.926352 LLDP, length 82 [|LLDP] 19:52:10.926354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.926363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.926364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.926376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.926376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12e2 71ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.926378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.926379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.926380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.926380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.926382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.926383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.936342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.936344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.936351 LLDP, length 82 [|LLDP] 19:52:10.936353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.936363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.936363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12ea 130e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.936365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.936366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.936367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.936372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.936374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.936375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.936376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.936377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.936377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.946345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.946347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.946354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.946355 LLDP, length 82 [|LLDP] 19:52:10.946357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.946365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.946366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.946378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.946379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12f1 b42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.946380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.946381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.946382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.946383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.946384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.946385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.956345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.956347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.956353 LLDP, length 82 [|LLDP] 19:52:10.956355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.956364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.956365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12f9 554e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.956367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.956367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.956368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.956374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.956375 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.956376 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.956377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.956378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.956379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.966345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.966347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.966354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.966355 LLDP, length 82 [|LLDP] 19:52:10.966357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.966365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.966366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.966378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.966379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1300 f66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.966380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.966381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.966382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.966383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.966384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.966385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.976338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.976340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.976348 LLDP, length 82 [|LLDP] 19:52:10.976350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.976359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.976360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1308 978e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.976362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.976363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.976364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.976369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.976371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.976372 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.976373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.986355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.986357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.986364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.986365 LLDP, length 82 [|LLDP] 19:52:10.986367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.986376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.986386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.986387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1310 38ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.986388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.996348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.996350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.996357 LLDP, length 82 [|LLDP] 19:52:10.996359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.996369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.996370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1317 d9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.996372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.996373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.996375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.006351 LLDP, length 82 [|LLDP] 19:52:11.006353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.006361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.006362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.006371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.006373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.006374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 131f 7aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.006375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.006377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.016353 LLDP, length 82 [|LLDP] 19:52:11.016355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.016365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.016366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1327 1c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.016367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.016368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.016369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.016370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.016379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.016381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.016382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.016388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.016390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.016391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.016392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.026343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.026345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.026351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.026353 LLDP, length 82 [|LLDP] 19:52:11.026355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.026363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.026364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.026376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.026377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 132e bd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.026379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.026380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.026380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.026381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.026382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.026383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.036344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.036346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.036352 LLDP, length 82 [|LLDP] 19:52:11.036354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.036364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.036365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1336 5e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.036366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.036367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.036368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.036374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.036376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.036377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.036378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.036379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.036380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.046348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.046349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.046357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.046358 LLDP, length 82 [|LLDP] 19:52:11.046360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.046369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.046370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.046381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.046382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 133d ff6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.046384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.046385 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.046386 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.046387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.046388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.046389 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.056346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.056347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.056355 LLDP, length 82 [|LLDP] 19:52:11.056356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.056365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.056366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1345 a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.056368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.056369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.056370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.056375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.056377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.056378 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.056379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.056380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.056381 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.066346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.066348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.066355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.066356 LLDP, length 82 [|LLDP] 19:52:11.066358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.066366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.066367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.066378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.066379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 134d 41ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.066380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.066381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.066382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.066383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.066384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.066385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.076341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.076343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.076350 LLDP, length 82 [|LLDP] 19:52:11.076352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.076361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.076362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1354 e2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.076363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.076364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.076365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.076371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.076372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.076373 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.076374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.086357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.086359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.086366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.086367 LLDP, length 82 [|LLDP] 19:52:11.086369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.086377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.086387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.086387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 135c 83ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.086389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.096355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.096357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.096364 LLDP, length 82 [|LLDP] 19:52:11.096366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.096376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.096377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1364 250e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.096378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.096379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.096382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.106355 LLDP, length 82 [|LLDP] 19:52:11.106357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.106364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.106365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.106374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.106376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.106377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 136b c62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.106378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.106380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.116347 LLDP, length 82 [|LLDP] 19:52:11.116349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.116359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.116360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1373 674e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.116362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.116363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.116364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.116365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.116374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.116375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.116376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.116382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.116383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.116384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.116385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.126342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.126344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.126350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.126351 LLDP, length 82 [|LLDP] 19:52:11.126354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.126360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.126362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.126373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.126374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 137b 086e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.126375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.126376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.126377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.126378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.126379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.126380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.136347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.136349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.136356 LLDP, length 82 [|LLDP] 19:52:11.136358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.136368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.136369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1382 a98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.136370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.136371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.136372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.136378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.136380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.136381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.136382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.136383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.136384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.146362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.146365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.146375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.146376 LLDP, length 82 [|LLDP] 19:52:11.146378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.146390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.146392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.146407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.146408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 138a 4aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.146409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.146410 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.146411 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.146412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.146413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.146414 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.156363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.156365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.156376 LLDP, length 82 [|LLDP] 19:52:11.156378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.156391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.156391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1391 ebce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.156393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.156394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.156395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.156402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.156404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.156405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.156406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.156407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.156408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.166365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.166368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.166378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.166380 LLDP, length 82 [|LLDP] 19:52:11.166382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.166395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.166396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.166414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.166415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1399 8cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.166417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.166418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.166419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.166420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.166421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.166422 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.176344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.176345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.176353 LLDP, length 82 [|LLDP] 19:52:11.176355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.176366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.176366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13a1 2e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.176368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.176369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.176370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.176375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.176377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.176378 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.176380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.186357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.186359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.186365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.186366 LLDP, length 82 [|LLDP] 19:52:11.186368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.186375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.186385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.186385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13a8 cf2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.186387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.196330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.196331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.196338 LLDP, length 82 [|LLDP] 19:52:11.196340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.196349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.196350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13b0 704e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.196351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.196352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.196355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.206360 LLDP, length 82 [|LLDP] 19:52:11.206361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.206369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.206370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.206377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.206379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.206380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13b8 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.206381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.206383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.216396 LLDP, length 82 [|LLDP] 19:52:11.216398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.216424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.216425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13bf b28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.216426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.216427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.216428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.216430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.216448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.216450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.216451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.216457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.216459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.216460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.216461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.226395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.226397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.226414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.226415 LLDP, length 82 [|LLDP] 19:52:11.226418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.226432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.226433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.226459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.226460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13c7 53ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.226461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.226463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.226464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.226465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.226466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.226467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.236386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.236389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.236403 LLDP, length 82 [|LLDP] 19:52:11.236405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.236420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.236421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13ce f4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.236422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.236424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.236425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.236432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.236434 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.236435 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.236436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.236437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.236438 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.246390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.246393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.246408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.246409 LLDP, length 82 [|LLDP] 19:52:11.246411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.246426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.246427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.246450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.246451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13d6 95ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.246453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.246454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.246455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.246456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.246457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.246458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.256390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.256393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.256408 LLDP, length 82 [|LLDP] 19:52:11.256410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.256427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.256428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13de 370e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.256429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.256430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.256432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.256455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.256458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.256459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.256460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.256461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.256462 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.266404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.266407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.266421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.266422 LLDP, length 82 [|LLDP] 19:52:11.266425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.266442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.266444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.266473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.266474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13e5 d82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.266475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.266480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.266481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.266482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.266483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.266484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.276400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.276403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.276419 LLDP, length 82 [|LLDP] 19:52:11.276421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.276444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.276445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13ed 794e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.276447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.276448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.276449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.276458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.276459 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.276461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.276462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.286392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.286395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.286410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.286411 LLDP, length 82 [|LLDP] 19:52:11.286414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.286427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.286447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.286447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13f5 1a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.286449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.296367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.296369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.296379 LLDP, length 82 [|LLDP] 19:52:11.296380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.296392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.296393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13fc bb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.296395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.296396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.296398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.306348 LLDP, length 82 [|LLDP] 19:52:11.306349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.306361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.306362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.306363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.306374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.306377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.306378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1404 5cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.306379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.306380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.306381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.306383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.306384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.306385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.306386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.316354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.316356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.316364 LLDP, length 82 [|LLDP] 19:52:11.316366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.316377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.316378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 140b fdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.316380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.316381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.316382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.316388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.316390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.316391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.316392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.316393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.316394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.326363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.326365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.326374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.326375 LLDP, length 82 [|LLDP] 19:52:11.326377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.326386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.326387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.326409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.326410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1413 9eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.326412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.326413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.326414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.326415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.326416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.326417 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.336357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.336358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.336366 LLDP, length 82 [|LLDP] 19:52:11.336368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.336378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.336378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 141b 400e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.336380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.336381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.336382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.336387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.336389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.336390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.336391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.336392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.336393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.346355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.346358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.346366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.346367 LLDP, length 82 [|LLDP] 19:52:11.346369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.346379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.346380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.346395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.346396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1422 e12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.346397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.346398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.346399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.346400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.346401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.346402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.356358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.356360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.356368 LLDP, length 82 [|LLDP] 19:52:11.356369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.356380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.356381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 142a 824e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.356382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.356383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.356384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.356390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.356391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.356392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.356393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.356394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.356395 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.366350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.366352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.366360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.366361 LLDP, length 82 [|LLDP] 19:52:11.366364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.366372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.366374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.366390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.366390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1432 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.366392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.366393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.366394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.366395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.376368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.376370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.376377 LLDP, length 82 [|LLDP] 19:52:11.376379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.376388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.376389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1439 c48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.376391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.376392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.376395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.386338 LLDP, length 82 [|LLDP] 19:52:11.386340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.386347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.386348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.386356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.386358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.386359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1441 65ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.386361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.386363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.396349 LLDP, length 82 [|LLDP] 19:52:11.396351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.396367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.396367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1449 06ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.396369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.396370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.396371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.396381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.396382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.406361 LLDP, length 82 [|LLDP] 19:52:11.406362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.406372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.406373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.406374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.406388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.406390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.406391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1450 a7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.406392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.406394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.406395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.406396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.406397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.406398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.406398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.416378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.416380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.416391 LLDP, length 82 [|LLDP] 19:52:11.416393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.416406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.416406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1458 490e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.416408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.416409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.416410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.416416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.416418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.416419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.416420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.416421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.416421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.426361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.426363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.426372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.426373 LLDP, length 82 [|LLDP] 19:52:11.426376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.426385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.426387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.426403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.426403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 145f ea2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.426405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.426406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.426407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.426408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.426409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.426410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.436356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.436358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.436366 LLDP, length 82 [|LLDP] 19:52:11.436367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.436379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.436379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1467 8b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.436381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.436382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.436383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.436388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.436390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.436391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.436392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.436393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.436394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.446354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.446356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.446364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.446365 LLDP, length 82 [|LLDP] 19:52:11.446367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.446376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.446377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.446392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.446392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 146f 2c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.446394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.446395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.446395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.446396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.446397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.446398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.456356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.456358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.456366 LLDP, length 82 [|LLDP] 19:52:11.456368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.456378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.456379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1476 cd8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.456380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.456381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.456382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.456388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.456389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.456390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.456391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.456392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.456393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.466352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.466354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.466362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.466363 LLDP, length 82 [|LLDP] 19:52:11.466365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.466373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.466374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.466388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.466389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 147e 6eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.466390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.466391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.466392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.466393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.476358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.476360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.476368 LLDP, length 82 [|LLDP] 19:52:11.476370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.476379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.476380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1486 0fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.476382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.476383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.476386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.486357 LLDP, length 82 [|LLDP] 19:52:11.486359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.486367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.486368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.486377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.486380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.486381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 148d b0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.486382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.486383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.496343 LLDP, length 82 [|LLDP] 19:52:11.496344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.496357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.496357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1495 520e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.496359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.496360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.496361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.496367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.496369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.506358 LLDP, length 82 [|LLDP] 19:52:11.506360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.506368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.506369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.506370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.506381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.506384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.506384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 149c f32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.506386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.506387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.506388 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.506389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.506390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.506391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.506392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.516356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.516357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.516365 LLDP, length 82 [|LLDP] 19:52:11.516367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.516376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.516377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14a4 944e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.516379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.516380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.516381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.516387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.516388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.516389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.516390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.516391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.516392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.526358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.526359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.526367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.526368 LLDP, length 82 [|LLDP] 19:52:11.526370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.526379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.526381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.526394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.526395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14ac 356e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.526397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.526397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.526398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.526399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.526400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.526401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.536355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.536357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.536365 LLDP, length 82 [|LLDP] 19:52:11.536367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.536376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.536377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14b3 d68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.536378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.536379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.536380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.536385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.536387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.536388 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.536389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.536390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.536391 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.546354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.546356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.546370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.546371 LLDP, length 82 [|LLDP] 19:52:11.546373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.546382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.546383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.546396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.546397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14bb 77ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.546399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.546400 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.546401 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.546402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.546403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.546404 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.556357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.556358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.556366 LLDP, length 82 [|LLDP] 19:52:11.556368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.556377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.556378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14c3 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.556380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.556381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.556382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.556388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.556389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.556390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.556391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.556392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.556393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.566349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.566351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.566359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.566360 LLDP, length 82 [|LLDP] 19:52:11.566362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.566371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.566372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.566386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.566387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14ca b9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.566388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.566389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.566390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.566391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.576406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.576407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.576415 LLDP, length 82 [|LLDP] 19:52:11.576416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.576426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.576427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14d2 5b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.576428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.576429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.576432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.586365 LLDP, length 82 [|LLDP] 19:52:11.586366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.586373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.586374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.586383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.586385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.586386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14d9 fc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.586387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.586389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.596362 LLDP, length 82 [|LLDP] 19:52:11.596363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.596375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.596376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14e1 9d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.596377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.596379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.596380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.596386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.596387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.606359 LLDP, length 82 [|LLDP] 19:52:11.606361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.606370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.606370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.606371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.606382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.606385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.606386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14e9 3e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.606387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.606389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.606389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.606391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.606392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.606393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.606394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.616354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.616356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.616364 LLDP, length 82 [|LLDP] 19:52:11.616365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.616374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.616375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14f0 df8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.616376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.616378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.616379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.616385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.616386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.616387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.616388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.616389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.616390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.626354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.626356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.626364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.626365 LLDP, length 82 [|LLDP] 19:52:11.626367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.626376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.626377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.626391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.626392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14f8 80ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.626394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.626395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.626395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.626396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.626397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.626398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.636356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.636358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.636366 LLDP, length 82 [|LLDP] 19:52:11.636368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.636377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.636377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1500 21ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.636379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.636380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.636381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.636386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.636388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.636389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.636390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.636391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.636392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.646355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.646357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.646364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.646365 LLDP, length 82 [|LLDP] 19:52:11.646367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.646375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.646377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.646390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.646391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1507 c2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.646393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.646394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.646395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.646395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.646396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.646397 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.656356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.656358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.656365 LLDP, length 82 [|LLDP] 19:52:11.656367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.656376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.656377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 150f 640e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.656379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.656380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.656380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.656386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.656387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.656388 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.656389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.656390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.656391 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.666357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.666359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.666366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.666367 LLDP, length 82 [|LLDP] 19:52:11.666369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.666377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.666378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.666391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.666392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1517 052e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.666393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.666394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.666395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.666396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.676368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.676370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.676377 LLDP, length 82 [|LLDP] 19:52:11.676379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.676388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.676389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 151e a64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.676391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.676392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.676394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.686372 LLDP, length 82 [|LLDP] 19:52:11.686373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.686381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.686382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.686390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.686393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.686394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1526 476e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.686395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.686396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.696341 LLDP, length 82 [|LLDP] 19:52:11.696343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.696355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.696356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 152d e88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.696357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.696358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.696359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.696365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.696367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.706360 LLDP, length 82 [|LLDP] 19:52:11.706361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.706369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.706370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.706371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.706382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.706385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.706386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1535 89ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.706387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.706388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.706389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.706390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.706391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.706392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.706393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.716358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.716360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.716368 LLDP, length 82 [|LLDP] 19:52:11.716370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.716379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.716379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 153d 2ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.716381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.716382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.716383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.716389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.716390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.716391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.716392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.716393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.716394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.726357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.726358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.726366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.726367 LLDP, length 82 [|LLDP] 19:52:11.726369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.726378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.726380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.726394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.726395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1544 cbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.726396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.726397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.726398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.726399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.726400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.726401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.731553 LLDP, length 226: localhost 19:52:11.736357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.736359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.736367 LLDP, length 82 [|LLDP] 19:52:11.736369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.736380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.736380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 154c 6d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.736382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.736383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.736384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.736389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.736391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.736392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.736393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.736393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.736394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.746359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.746361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.746369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.746370 LLDP, length 82 [|LLDP] 19:52:11.746372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.746380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.746382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.746394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.746395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1554 0e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.746397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.746397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.746398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.746399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.746400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.746401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.756373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.756375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.756384 LLDP, length 82 [|LLDP] 19:52:11.756386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.756397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.756398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 155b af4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.756400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.756401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.756402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.756407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.756409 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.756410 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.756411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.756412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.756413 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.766359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.766361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.766369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.766370 LLDP, length 82 [|LLDP] 19:52:11.766373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.766383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.766384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.766400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.766400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1563 506e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.766402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.766403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.766404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.766405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.776371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.776373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.776380 LLDP, length 82 [|LLDP] 19:52:11.776382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.776400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.776400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 156a f18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.776402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.776403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.776405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.786365 LLDP, length 82 [|LLDP] 19:52:11.786367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.786376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.786376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.786386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.786388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.786389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1572 92ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.786390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.786392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.796364 LLDP, length 82 [|LLDP] 19:52:11.796366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.796378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.796378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 157a 33ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.796380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.796381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.796382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.796388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.796389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.806362 LLDP, length 82 [|LLDP] 19:52:11.806364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.806371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.806372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.806373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.806384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.806387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.806387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1581 d4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.806389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.806390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.806391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.806392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.806393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.806394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.806395 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.816357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.816359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.816367 LLDP, length 82 [|LLDP] 19:52:11.816368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.816379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.816379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1589 760e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.816381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.816382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.816383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.816388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.816390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.816391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.816391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.816393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.816394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.826357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.826359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.826365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.826366 LLDP, length 82 [|LLDP] 19:52:11.826368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.826377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.826378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.826392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.826393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1591 172e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.826394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.826395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.826396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.826397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.826398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.826399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.836356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.836358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.836365 LLDP, length 82 [|LLDP] 19:52:11.836366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.836375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.836376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1598 b84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.836378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.836379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.836380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.836385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.836386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.836387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.836388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.836389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.836390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.846356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.846358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.846365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.846366 LLDP, length 82 [|LLDP] 19:52:11.846368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.846375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.846376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.846389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.846390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15a0 596e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.846391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.846392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.846393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.846394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.846395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.846396 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.856358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.856360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.856367 LLDP, length 82 [|LLDP] 19:52:11.856368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.856378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.856379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15a7 fa8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.856380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.856381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.856382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.856387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.856389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.856390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.856391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.856392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.856393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.866351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.866352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.866360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.866361 LLDP, length 82 [|LLDP] 19:52:11.866363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.866370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.866371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.866383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.866384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15af 9bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.866386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.866387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.866387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.866388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.876370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.876372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.876378 LLDP, length 82 [|LLDP] 19:52:11.876380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.876389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.876390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15b7 3cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.876391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.876392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.876395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.886369 LLDP, length 82 [|LLDP] 19:52:11.886371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.886378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.886379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.886387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.886390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.886390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15be ddee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.886392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.886393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.896401 LLDP, length 82 [|LLDP] 19:52:11.896403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.896414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.896415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15c6 7f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.896416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.896417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.896418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.896424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.896425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.906359 LLDP, length 82 [|LLDP] 19:52:11.906361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.906368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.906369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.906370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.906380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.906383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.906383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15ce 202e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.906385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.906386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.906387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.906389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.906390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.906390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.906391 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.916357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.916359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.916366 LLDP, length 82 [|LLDP] 19:52:11.916368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.916377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.916378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15d5 c14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.916379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.916380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.916381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.916386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.916388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.916389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.916390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.916391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.916392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.926359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.926361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.926367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.926368 LLDP, length 82 [|LLDP] 19:52:11.926370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.926378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.926379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.926392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.926393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15dd 626e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.926395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.926396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.926397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.926397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.926398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.926399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.936358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.936359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.936366 LLDP, length 82 [|LLDP] 19:52:11.936368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.936378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.936379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15e5 038e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.936380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.936381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.936382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.936388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.936389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.936390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.936391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.936392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.936393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.946358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.946360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.946366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.946367 LLDP, length 82 [|LLDP] 19:52:11.946369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.946377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.946378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.946391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.946392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15ec a4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.946393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.946394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.946395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.946396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.946397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.946398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.956358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.956360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.956367 LLDP, length 82 [|LLDP] 19:52:11.956368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.956377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.956378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15f4 45ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.956379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.956380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.956381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.956387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.956389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.956390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.956391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.956392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.956392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.966351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.966359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.966365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.966366 LLDP, length 82 [|LLDP] 19:52:11.966368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.966375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.966377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.966390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.966391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15fb e6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.966392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.966393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.966394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.966395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.976373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.976375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.976381 LLDP, length 82 [|LLDP] 19:52:11.976383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.976392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.976393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1603 880e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.976394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.976395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.976398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.986369 LLDP, length 82 [|LLDP] 19:52:11.986371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.986379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.986380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.986387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.986389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.986390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 160b 292e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.986391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.986393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.996375 LLDP, length 82 [|LLDP] 19:52:11.996376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.996388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.996388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1612 ca4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.996390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.996391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.996392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.996398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.996399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.006360 LLDP, length 82 [|LLDP] 19:52:12.006362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.006370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.006371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.006372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.006383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.006385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.006386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 161a 6b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.006388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.006389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.006390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.006391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.006392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.006393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.006394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.016358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.016360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.016367 LLDP, length 82 [|LLDP] 19:52:12.016368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.016378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.016378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1622 0c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.016380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.016381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.016382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.016387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.016388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.016389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.016390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.016391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.016392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.026361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.026362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.026370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.026371 LLDP, length 82 [|LLDP] 19:52:12.026373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.026380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.026382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.026395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.026396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1629 adae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.026398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.026399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.026400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.026401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.026402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.026403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.036364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.036366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.036373 LLDP, length 82 [|LLDP] 19:52:12.036375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.036385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.036385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1631 4ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.036387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.036388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.036389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.036394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.036396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.036396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.036397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.036398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.036399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.046360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.046362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.046368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.046369 LLDP, length 82 [|LLDP] 19:52:12.046371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.046379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.046381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.046393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.046394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1638 efee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.046395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.046396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.046397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.046399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.046400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.046401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.056360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.056362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.056369 LLDP, length 82 [|LLDP] 19:52:12.056370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.056379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.056380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1640 910e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.056381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.056382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.056383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.056389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.056391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.056391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.056392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.056393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.056394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.066361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.066363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.066369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.066370 LLDP, length 82 [|LLDP] 19:52:12.066372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.066380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.066381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.066394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.066395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1648 322e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.066396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.066397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.066399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.066400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.076372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.076374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.076381 LLDP, length 82 [|LLDP] 19:52:12.076382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.076391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.076392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 164f d34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.076393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.076394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.076397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.086363 LLDP, length 82 [|LLDP] 19:52:12.086365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.086373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.086374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.086382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.086384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.086384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1657 746e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.086386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.086387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.096348 LLDP, length 82 [|LLDP] 19:52:12.096356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.096367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.096368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 165f 158e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.096370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.096371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.096372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.096378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.096379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.106361 LLDP, length 82 [|LLDP] 19:52:12.106363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.106378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.106379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.106380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.106390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.106393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.106394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1666 b6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.106395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.106396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.106397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.106399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.106400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.106401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.106401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.116358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.116360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.116373 LLDP, length 82 [|LLDP] 19:52:12.116375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.116384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.116385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 166e 57ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.116386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.116387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.116388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.116394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.116396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.116397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.116398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.116399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.116400 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.126360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.126362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.126376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.126377 LLDP, length 82 [|LLDP] 19:52:12.126379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.126386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.126388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.126401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.126402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1675 f8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.126404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.126405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.126406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.126407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.126408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.126409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.136361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.136363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.136370 LLDP, length 82 [|LLDP] 19:52:12.136372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.136381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.136382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 167d 9a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.136384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.136385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.136386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.136391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.136393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.136394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.136395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.136396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.136397 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.146362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.146364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.146371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.146372 LLDP, length 82 [|LLDP] 19:52:12.146374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.146381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.146382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.146394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.146395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1685 3b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.146396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.146397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.146398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.146399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.146400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.146401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.156363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.156365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.156371 LLDP, length 82 [|LLDP] 19:52:12.156373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.156383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.156384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 168c dc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.156385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.156387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.156388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.156393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.156395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.156396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.156397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.156397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.156398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.166355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.166357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.166364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.166365 LLDP, length 82 [|LLDP] 19:52:12.166367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.166375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.166377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.166389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.166390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1694 7d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.166392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.166392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.166393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.166395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.176411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.176413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.176419 LLDP, length 82 [|LLDP] 19:52:12.176421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.176429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.176430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 169c 1e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.176432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.176433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.176436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.186377 LLDP, length 82 [|LLDP] 19:52:12.186379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.186386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.186387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.186395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.186397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.186398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16a3 bfae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.186399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.186401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.196348 LLDP, length 82 [|LLDP] 19:52:12.196350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.196361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.196362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16ab 60ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.196363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.196364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.196365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.196371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.196372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.206364 LLDP, length 82 [|LLDP] 19:52:12.206366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.206374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.206375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.206377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.206387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.206389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.206390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16b3 01ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.206391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.206393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.206394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.206395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.206396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.206397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.206398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.216362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.216363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.216370 LLDP, length 82 [|LLDP] 19:52:12.216371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.216381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.216381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16ba a30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.216383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.216384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.216385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.216390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.216392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.216393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.216394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.216395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.216395 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.226363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.226365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.226371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.226372 LLDP, length 82 [|LLDP] 19:52:12.226374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.226383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.226384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.226398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.226399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16c2 442e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.226401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.226402 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.226403 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.226404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.226405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.226406 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.236362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.236363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.236371 LLDP, length 82 [|LLDP] 19:52:12.236372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.236381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.236382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16c9 e54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.236397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.236399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.236400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.236406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.236408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.236409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.236410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.236411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.236412 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.246394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.246396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.246408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.246409 LLDP, length 82 [|LLDP] 19:52:12.246411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.246425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.246426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.246447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.246447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16d1 866e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.246449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.246450 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.246451 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.246452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.246453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.246454 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.256371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.256373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.256387 LLDP, length 82 [|LLDP] 19:52:12.256389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.256400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.256401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16d9 278e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.256403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.256404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.256405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.256410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.256412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.256413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.256414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.256415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.256415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.266366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.266368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.266376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.266377 LLDP, length 82 [|LLDP] 19:52:12.266380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.266389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.266390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.266404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.266405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16e0 c8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.266406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.266407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.266408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.266409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.276365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.276367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.276373 LLDP, length 82 [|LLDP] 19:52:12.276375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.276384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.276385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16e8 69ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.276386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.276387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.276390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.286425 LLDP, length 82 [|LLDP] 19:52:12.286427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.286444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.286445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.286466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.286470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.286471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16f0 0aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.286472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.286473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.296412 LLDP, length 82 [|LLDP] 19:52:12.296415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.296436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.296437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16f7 ac0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.296438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.296439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.296441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.296455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.296457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.306369 LLDP, length 82 [|LLDP] 19:52:12.306371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.306383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.306384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.306385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.306396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.306399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.306399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16ff 4d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.306401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.306402 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.306403 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.306405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.306406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.306407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.306407 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.316364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.316366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.316372 LLDP, length 82 [|LLDP] 19:52:12.316374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.316384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.316385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1706 ee4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.316386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.316387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.316388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.316394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.316396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.316397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.316398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.316398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.316399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.326365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.326367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.326373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.326374 LLDP, length 82 [|LLDP] 19:52:12.326376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.326383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.326384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.326396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.326397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 170e 8f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.326398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.326399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.326400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.326401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.326402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.326403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.336363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.336366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.336372 LLDP, length 82 [|LLDP] 19:52:12.336373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.336383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.336384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1716 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.336385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.336386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.336387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.336393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.336394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.336395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.336396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.336397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.336398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.346362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.346364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.346369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.346370 LLDP, length 82 [|LLDP] 19:52:12.346372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.346379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.346381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.346393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.346394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 171d d1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.346396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.346396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.346397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.346398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.346399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.346400 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.356364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.356366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.356372 LLDP, length 82 [|LLDP] 19:52:12.356374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.356383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.356384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1725 72ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.356386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.356387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.356388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.356394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.356396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.356397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.356397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.356398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.356399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.366364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.366366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.366371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.366372 LLDP, length 82 [|LLDP] 19:52:12.366375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.366382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.366383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.366394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.366395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 172d 13ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.366397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.366398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.366399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.366400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.376378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.376380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.376386 LLDP, length 82 [|LLDP] 19:52:12.376388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.376396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.376397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1734 b50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.376398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.376399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.376403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.386350 LLDP, length 82 [|LLDP] 19:52:12.386351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.386363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.386364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.386371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.386373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.386374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 173c 562e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.386376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.386377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.396372 LLDP, length 82 [|LLDP] 19:52:12.396374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.396383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.396384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1743 f74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.396386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.396387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.396388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.396395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.396396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.406371 LLDP, length 82 [|LLDP] 19:52:12.406373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.406384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.406385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.406386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.406396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.406399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.406400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 174b 986e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.406402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.406403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.406404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.406405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.406406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.406407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.406408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.416362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.416363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.416369 LLDP, length 82 [|LLDP] 19:52:12.416371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.416379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.416379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1753 398e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.416381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.416382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.416383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.416388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.416390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.416391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.416392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.416392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.416393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.426369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.426370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.426377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.426378 LLDP, length 82 [|LLDP] 19:52:12.426380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.426387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.426388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.426401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.426402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 175a daae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.426403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.426404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.426405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.426406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.426407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.426408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.436395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.436397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.436409 LLDP, length 82 [|LLDP] 19:52:12.436412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.436425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.436426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1762 7bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.436428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.436428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.436429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.436436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.436438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.436439 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.436440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.436440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.436441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.446386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.446388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.446397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.446398 LLDP, length 82 [|LLDP] 19:52:12.446400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.446411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.446412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.446430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.446430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 176a 1cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.446432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.446433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.446434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.446435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.446436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.446437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.456380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.456382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.456391 LLDP, length 82 [|LLDP] 19:52:12.456393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.456405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.456406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1771 be0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.456408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.456409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.456410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.456416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.456418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.456418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.456419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.456420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.456421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.466381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.466384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.466395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.466396 LLDP, length 82 [|LLDP] 19:52:12.466398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.466409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.466410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.466429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.466430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1779 5f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.466431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.466432 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.466433 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.466434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.476391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.476394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.476404 LLDP, length 82 [|LLDP] 19:52:12.476406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.476418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.476419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1781 004e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.476421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.476422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.476425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.486388 LLDP, length 82 [|LLDP] 19:52:12.486390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.486399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.486400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.486410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.486413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.486414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1788 a16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.486416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.486417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.496399 LLDP, length 82 [|LLDP] 19:52:12.496401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.496422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.496423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1790 428e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.496425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.496426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.496427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.496436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.496437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.506386 LLDP, length 82 [|LLDP] 19:52:12.506388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.506397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.506398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.506399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.506412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.506415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.506415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1797 e3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.506417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.506418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.506419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.506421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.506422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.506423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.506424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.516379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.516381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.516391 LLDP, length 82 [|LLDP] 19:52:12.516392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.516405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.516405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 179f 84ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.516407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.516408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.516409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.516415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.516416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.516417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.516418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.516419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.516420 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.526377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.526379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.526389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.526390 LLDP, length 82 [|LLDP] 19:52:12.526392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.526403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.526404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.526419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.526420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17a7 25ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.526421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.526422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.526423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.526424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.526425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.526426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.536397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.536400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.536414 LLDP, length 82 [|LLDP] 19:52:12.536416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.536430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.536431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17ae c70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.536433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.536434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.536435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.536442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.536443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.536444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.536445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.536446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.536447 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.546385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.546387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.546396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.546397 LLDP, length 82 [|LLDP] 19:52:12.546399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.546411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.546412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.546428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.546428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17b6 682e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.546430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.546431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.546432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.546433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.546434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.546435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.556380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.556382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.556391 LLDP, length 82 [|LLDP] 19:52:12.556393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.556405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.556406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17be 094e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.556407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.556408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.556410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.556416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.556418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.556419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.556420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.556421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.556421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.566376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.566378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.566387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.566388 LLDP, length 82 [|LLDP] 19:52:12.566391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.566401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.566403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.566418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.566418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17c5 aa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.566420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.566421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.566422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.566423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.576379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.576381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.576390 LLDP, length 82 [|LLDP] 19:52:12.576392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.576402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.576403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17cd 4b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.576404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.576405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.576408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.586389 LLDP, length 82 [|LLDP] 19:52:12.586391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.586400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.586401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.586411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.586413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.586414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17d4 ecae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.586416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.586417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.596385 LLDP, length 82 [|LLDP] 19:52:12.596387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.596401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.596402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17dc 8dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.596403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.596404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.596405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.596412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.596414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.606391 LLDP, length 82 [|LLDP] 19:52:12.606393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.606403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.606404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.606405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.606418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.606421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.606422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17e4 2eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.606423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.606424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.606425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.606427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.606428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.606429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.606429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.616386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.616388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.616398 LLDP, length 82 [|LLDP] 19:52:12.616400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.616414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.616414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17eb d00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.616416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.616417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.616418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.616424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.616425 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.616426 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.616427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.616428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.616429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.626377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.626379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.626386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.626387 LLDP, length 82 [|LLDP] 19:52:12.626389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.626400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.626401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.626414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.626415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17f3 712e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.626416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.626417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.626418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.626419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.626420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.626421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.636375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.636377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.636385 LLDP, length 82 [|LLDP] 19:52:12.636387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.636397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.636398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17fb 124e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.636400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.636401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.636402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.636408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.636409 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.636410 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.636411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.636412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.636413 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.646389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.646391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.646402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.646403 LLDP, length 82 [|LLDP] 19:52:12.646405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.646418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.646419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.646436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.646437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1802 b36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.646439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.646440 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.646441 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.646442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.646443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.646444 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.656382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.656384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.656393 LLDP, length 82 [|LLDP] 19:52:12.656395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.656407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.656408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 180a 548e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.656410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.656411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.656412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.656418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.656419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.656420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.656421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.656422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.656423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.666363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.666365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.666371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.666372 LLDP, length 82 [|LLDP] 19:52:12.666374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.666382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.666384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.666395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.666396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1811 f5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.666398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.666399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.666400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.666401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.676419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.676421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.676427 LLDP, length 82 [|LLDP] 19:52:12.676429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.676438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.676438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1819 96ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.676440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.676441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.676444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.686412 LLDP, length 82 [|LLDP] 19:52:12.686414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.686420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.686421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.686428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.686430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.686431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1821 37ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.686433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.686434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.696382 LLDP, length 82 [|LLDP] 19:52:12.696384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.696393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.696394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1828 d90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.696396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.696397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.696398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.696403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.696405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.706369 LLDP, length 82 [|LLDP] 19:52:12.706371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.706378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.706379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.706380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.706390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.706392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.706393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1830 7a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.706394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.706396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.706397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.706398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.706399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.706400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.706400 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.716366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.716368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.716380 LLDP, length 82 [|LLDP] 19:52:12.716381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.716389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.716390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1838 1b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.716391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.716392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.716393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.716399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.716401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.716402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.716403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.716404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.716405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.726367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.726369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.726374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.726375 LLDP, length 82 [|LLDP] 19:52:12.726377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.726385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.726386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.726397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.726398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 183f bc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.726400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.726401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.726402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.726403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.726404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.726405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.736365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.736367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.736379 LLDP, length 82 [|LLDP] 19:52:12.736381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.736390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.736391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1847 5d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.736392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.736393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.736395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.736400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.736401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.736402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.736403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.736404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.736405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.746366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.746367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.746379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.746380 LLDP, length 82 [|LLDP] 19:52:12.746382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.746389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.746390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.746401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.746402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 184e feae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.746403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.746404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.746405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.746406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.746407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.746408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.756379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.756381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.756390 LLDP, length 82 [|LLDP] 19:52:12.756392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.756404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.756405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1856 9fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.756406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.756407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.756408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.756414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.756415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.756416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.756418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.756418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.756419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.766363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.766371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.766378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.766379 LLDP, length 82 [|LLDP] 19:52:12.766381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.766389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.766390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.766402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.766403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 185e 40ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.766404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.766405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.766406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.766407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.776370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.776372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.776378 LLDP, length 82 [|LLDP] 19:52:12.776380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.776388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.776389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1865 e20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.776390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.776391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.776394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.786383 LLDP, length 82 [|LLDP] 19:52:12.786385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.786396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.786397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.786406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.786409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.786410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 186d 832e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.786411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.786413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.796373 LLDP, length 82 [|LLDP] 19:52:12.796374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.796385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.796385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1875 244e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.796387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.796388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.796389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.796395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.796396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.806370 LLDP, length 82 [|LLDP] 19:52:12.806372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.806379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.806380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.806381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.806391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.806393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.806394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 187c c56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.806396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.806397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.806398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.806399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.806400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.806401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.806402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.816369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.816370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.816376 LLDP, length 82 [|LLDP] 19:52:12.816378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.816387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.816387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1884 668e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.816389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.816390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.816391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.816397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.816398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.816400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.816400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.816401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.816402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.826367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.826369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.826383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.826384 LLDP, length 82 [|LLDP] 19:52:12.826386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.826393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.826394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.826405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.826405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 188c 07ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.826407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.826408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.826409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.826410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.826411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.826412 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.836367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.836369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.836381 LLDP, length 82 [|LLDP] 19:52:12.836383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.836391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.836391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1893 a8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.836393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.836394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.836395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.836400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.836401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.836402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.836403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.836404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.836405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.846365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.846367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.846379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.846380 LLDP, length 82 [|LLDP] 19:52:12.846382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.846389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.846391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.846402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.846403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 189b 49ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.846404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.846405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.846406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.846407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.846408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.846409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.856370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.856372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.856384 LLDP, length 82 [|LLDP] 19:52:12.856386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.856394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.856395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18a2 eb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.856397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.856398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.856399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.856404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.856406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.856407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.856408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.856409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.856410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.866363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.866364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.866370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.866371 LLDP, length 82 [|LLDP] 19:52:12.866373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.866379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.866381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.866391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.866392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18aa 8c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.866393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.866394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.866395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.866396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.876389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.876391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.876396 LLDP, length 82 [|LLDP] 19:52:12.876398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.876407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.876407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18b2 2d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.876409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.876410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.876413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.886372 LLDP, length 82 [|LLDP] 19:52:12.886374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.886380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.886381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.886388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.886390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.886391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18b9 ce6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.886392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.886394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.896373 LLDP, length 82 [|LLDP] 19:52:12.896375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.896384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.896385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18c1 6f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.896386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.896387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.896388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.896394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.896395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.906372 LLDP, length 82 [|LLDP] 19:52:12.906374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.906381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.906382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.906382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.906392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.906394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.906395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18c9 10ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.906397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.906398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.906399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.906400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.906401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.906402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.906402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.916370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.916372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.916377 LLDP, length 82 [|LLDP] 19:52:12.916379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.916387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.916387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18d0 b1ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.916389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.916390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.916391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.916396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.916398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.916399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.916399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.916400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.916401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.926366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.926368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.926380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.926381 LLDP, length 82 [|LLDP] 19:52:12.926383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.926389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.926391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.926402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.926403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18d8 52ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.926404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.926405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.926406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.926407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.926408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.926409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.936371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.936372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.936378 LLDP, length 82 [|LLDP] 19:52:12.936379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.936388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.936389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18df f40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.936390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.936391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.936392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.936397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.936399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.936400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.936401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.936402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.936403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.946366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.946368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.946380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.946381 LLDP, length 82 [|LLDP] 19:52:12.946383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.946389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.946391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.946402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.946403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18e7 952e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.946404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.946405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.946406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.946407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.946408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.946409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.956366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.956368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.956373 LLDP, length 82 [|LLDP] 19:52:12.956375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.956384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.956384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18ef 364e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.956386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.956387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.956388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.956394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.956395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.956396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.956397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.956398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.956399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.966364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.966366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.966372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.966374 LLDP, length 82 [|LLDP] 19:52:12.966376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.966383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.966385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.966396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.966397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18f6 d76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.966398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.966399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.966400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.966401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.976384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.976386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.976391 LLDP, length 82 [|LLDP] 19:52:12.976392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.976400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.976401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18fe 788e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.976402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.976403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.976406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.986421 LLDP, length 82 [|LLDP] 19:52:12.986422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.986429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.986430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.986437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.986439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.986440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1906 19ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.986441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.986442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.996359 LLDP, length 82 [|LLDP] 19:52:12.996360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.996370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.996371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 190d bace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.996372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.996380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.996381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.996386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.996388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.006376 LLDP, length 82 [|LLDP] 19:52:13.006378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.006384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.006385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.006386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.006397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.006399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.006400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1915 5bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.006402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.006403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.006404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.006405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.006406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.006407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.006408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.016369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.016371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.016383 LLDP, length 82 [|LLDP] 19:52:13.016385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.016394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.016394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 191c fd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.016396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.016397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.016398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.016403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.016405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.016406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.016407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.016408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.016409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.026370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.026372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.026377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.026378 LLDP, length 82 [|LLDP] 19:52:13.026380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.026388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.026389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.026400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.026401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1924 9e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.026402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.026403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.026404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.026405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.026406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.026407 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.036369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.036370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.036376 LLDP, length 82 [|LLDP] 19:52:13.036378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.036386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.036386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 192c 3f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.036388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.036389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.036390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.036395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.036397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.036398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.036399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.036400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.036401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.046368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.046369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.046381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.046382 LLDP, length 82 [|LLDP] 19:52:13.046384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.046391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.046392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.046403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.046403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1933 e06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.046405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.046406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.046407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.046408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.046409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.046410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.056373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.056375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.056381 LLDP, length 82 [|LLDP] 19:52:13.056383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.056390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.056391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 193b 818e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.056393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.056394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.056395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.056400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.056401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.056402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.056403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.056404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.056405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.066366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.066368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.066380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.066381 LLDP, length 82 [|LLDP] 19:52:13.066383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.066390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.066391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.066403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.066404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1943 22ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.066405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.066406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.066407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.066408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.076385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.076386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.076391 LLDP, length 82 [|LLDP] 19:52:13.076393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.076401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.076402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 194a c3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.076403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.076405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.076408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.086388 LLDP, length 82 [|LLDP] 19:52:13.086389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.086395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.086397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.086403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.086406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.086406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1952 64ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.086408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.086409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.096387 LLDP, length 82 [|LLDP] 19:52:13.096389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.096398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.096399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 195a 060e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.096400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.096401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.096402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.096408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.096410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.106370 LLDP, length 82 [|LLDP] 19:52:13.106372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.106382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.106383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.106384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.106394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.106396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.106397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1961 a72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.106398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.106399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.106400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.106402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.106402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.106404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.106404 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.116379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.116381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.116389 LLDP, length 82 [|LLDP] 19:52:13.116390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.116400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.116401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1969 484e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.116402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.116404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.116405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.116411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.116412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.116413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.116414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.116415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.116416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.126373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.126374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.126387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.126388 LLDP, length 82 [|LLDP] 19:52:13.126391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.126398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.126399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.126410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.126411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1970 e96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.126412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.126413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.126414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.126415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.126416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.126417 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.136370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.136372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.136377 LLDP, length 82 [|LLDP] 19:52:13.136379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.136387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.136388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1978 8a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.136390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.136391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.136392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.136397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.136399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.136400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.136401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.136402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.136403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.146373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.146375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.146381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.146382 LLDP, length 82 [|LLDP] 19:52:13.146384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.146391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.146393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.146404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.146405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1980 2bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.146406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.146407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.146408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.146409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.146410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.146411 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.156371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.156373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.156384 LLDP, length 82 [|LLDP] 19:52:13.156386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.156394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.156395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1987 ccce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.156397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.156398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.156398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.156404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.156405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.156406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.156407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.156408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.156409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.166367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.166369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.166374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.166375 LLDP, length 82 [|LLDP] 19:52:13.166377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.166384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.166385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.166395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.166396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 198f 6dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.166398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.166399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.166400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.166401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.176393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.176394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.176400 LLDP, length 82 [|LLDP] 19:52:13.176402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.176410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.176411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1997 0f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.176413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.176414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.176417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.186376 LLDP, length 82 [|LLDP] 19:52:13.186377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.186383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.186384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.186390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.186393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.186393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 199e b02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.186395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.186396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.196382 LLDP, length 82 [|LLDP] 19:52:13.196383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.196393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.196393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19a6 514e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.196395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.196396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.196397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.196403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.196404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.206374 LLDP, length 82 [|LLDP] 19:52:13.206375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.206382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.206383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.206383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.206392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.206395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.206396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19ad f26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.206397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.206398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.206399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.206400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.206402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.206402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.206403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.216375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.216377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.216382 LLDP, length 82 [|LLDP] 19:52:13.216384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.216392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.216393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19b5 938e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.216394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.216395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.216396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.216413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.216415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.216416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.216417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.216418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.216419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.226409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.226412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.226421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.226422 LLDP, length 82 [|LLDP] 19:52:13.226424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.226438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.226439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.226458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.226459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19bd 34ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.226460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.226461 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.226462 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.226463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.226464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.226465 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.236385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.236386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.236400 LLDP, length 82 [|LLDP] 19:52:13.236402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.236414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.236415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19c4 d5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.236417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.236418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.236419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.236424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.236426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.236427 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.236428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.236428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.236429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.246379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.246381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.246394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.246395 LLDP, length 82 [|LLDP] 19:52:13.246398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.246406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.246408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.246419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.246420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19cc 76ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.246422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.246423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.246424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.246425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.246426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.246427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.256375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.256377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.256390 LLDP, length 82 [|LLDP] 19:52:13.256392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.256401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.256401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19d4 180e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.256403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.256404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.256405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.256410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.256412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.256413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.256414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.256415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.256416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.266368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.266376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.266382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.266383 LLDP, length 82 [|LLDP] 19:52:13.266385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.266392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.266393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.266404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.266405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19db b92e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.266406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.266407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.266408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.266409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.276397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.276399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.276408 LLDP, length 82 [|LLDP] 19:52:13.276410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.276423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.276424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19e3 5a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.276425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.276426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.276429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.286384 LLDP, length 82 [|LLDP] 19:52:13.286386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.286393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.286394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.286402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.286404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.286405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19ea fb6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.286407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.286408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.296380 LLDP, length 82 [|LLDP] 19:52:13.296382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.296393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.296394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19f2 9c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.296395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.296396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.296397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.296403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.296405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.306379 LLDP, length 82 [|LLDP] 19:52:13.306381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.306392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.306393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.306394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.306404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.306407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.306408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19fa 3dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.306409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.306410 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.306412 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.306413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.306414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.306415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.306416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.316378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.316380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.316386 LLDP, length 82 [|LLDP] 19:52:13.316388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.316397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.316397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a01 dece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.316399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.316400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.316401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.316406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.316408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.316409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.316410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.316411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.316412 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.326376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.326378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.326390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.326391 LLDP, length 82 [|LLDP] 19:52:13.326394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.326400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.326402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.326414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.326414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a09 7fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.326416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.326417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.326418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.326419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.326420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.326421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.336380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.336382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.336388 LLDP, length 82 [|LLDP] 19:52:13.336390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.336400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.336400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a11 210e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.336402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.336403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.336404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.336410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.336412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.336413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.336413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.336414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.336415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.346378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.346380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.346386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.346387 LLDP, length 82 [|LLDP] 19:52:13.346389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.346396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.346397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.346409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.346410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a18 c22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.346412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.346413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.346414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.346415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.346415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.346417 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.356375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.356377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.356389 LLDP, length 82 [|LLDP] 19:52:13.356391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.356399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.356400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a20 634e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.356401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.356402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.356403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.356409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.356411 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.356412 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.356413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.356414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.356414 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.366370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.366371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.366382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.366383 LLDP, length 82 [|LLDP] 19:52:13.366385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.366393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.366395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.366406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.366407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a28 046e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.366409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.366410 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.366411 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.366411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.376379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.376381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.376388 LLDP, length 82 [|LLDP] 19:52:13.376390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.376398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.376399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a2f a58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.376401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.376402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.376405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.386379 LLDP, length 82 [|LLDP] 19:52:13.386381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.386388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.386389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.386396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.386398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.386399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a37 46ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.386401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.386402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.396381 LLDP, length 82 [|LLDP] 19:52:13.396382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.396392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.396393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a3e e7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.396394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.396395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.396396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.396402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.396403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.406380 LLDP, length 82 [|LLDP] 19:52:13.406381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.406392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.406393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.406394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.406404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.406406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.406407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a46 88ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.406408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.406409 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.406410 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.406412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.406412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.406413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.406415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.416376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.416377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.416383 LLDP, length 82 [|LLDP] 19:52:13.416385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.416393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.416394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a4e 2a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.416396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.416397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.416397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.416403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.416404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.416405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.416406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.416407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.416408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.426377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.426378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.426385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.426386 LLDP, length 82 [|LLDP] 19:52:13.426388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.426395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.426396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.426408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.426409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a55 cb2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.426410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.426411 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.426412 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.426413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.426414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.426415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.436378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.436379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.436385 LLDP, length 82 [|LLDP] 19:52:13.436386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.436395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.436396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a5d 6c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.436397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.436398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.436399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.436405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.436406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.436407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.436408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.436409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.436410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.446378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.446380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.446386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.446387 LLDP, length 82 [|LLDP] 19:52:13.446390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.446396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.446398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.446408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.446409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a65 0d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.446411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.446412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.446413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.446414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.446415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.446416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.456378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.456380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.456385 LLDP, length 82 [|LLDP] 19:52:13.456387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.456395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.456396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a6c ae8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.456398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.456399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.456400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.456405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.456407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.456408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.456409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.456410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.456411 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.466369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.466370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.466383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.466384 LLDP, length 82 [|LLDP] 19:52:13.466386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.466392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.466394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.466404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.466405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a74 4fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.466406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.466407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.466408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.466409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.476380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.476382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.476387 LLDP, length 82 [|LLDP] 19:52:13.476388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.476396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.476397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a7b f0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.476398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.476399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.476402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.486384 LLDP, length 82 [|LLDP] 19:52:13.486386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.486392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.486393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.486400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.486402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.486404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a83 91ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.486405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.486406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.496382 LLDP, length 82 [|LLDP] 19:52:13.496384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.496393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.496394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a8b 330e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.496396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.496397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.496398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.496403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.496405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.506381 LLDP, length 82 [|LLDP] 19:52:13.506382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.506396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.506396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.506397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.506407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.506409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.506411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a92 d42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.506412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.506413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.506414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.506415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.506416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.506417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.506418 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.516378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.516380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.516386 LLDP, length 82 [|LLDP] 19:52:13.516388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.516397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.516398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a9a 754e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.516399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.516400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.516401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.516406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.516408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.516409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.516410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.516410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.516411 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.526379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.526380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.526392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.526393 LLDP, length 82 [|LLDP] 19:52:13.526396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.526402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.526404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.526415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.526416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1aa2 166e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.526417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.526418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.526419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.526420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.526421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.526422 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.536384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.536387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.536400 LLDP, length 82 [|LLDP] 19:52:13.536402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.536411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.536411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1aa9 b78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.536413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.536414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.536415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.536421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.536422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.536423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.536424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.536425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.536426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.546380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.546381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.546387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.546388 LLDP, length 82 [|LLDP] 19:52:13.546390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.546397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.546398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.546409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.546410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ab1 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.546411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.546412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.546413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.546414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.546415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.546416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.556381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.556383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.556394 LLDP, length 82 [|LLDP] 19:52:13.556396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.556404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.556405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ab8 f9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.556406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.556407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.556408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.556414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.556415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.556416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.556417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.556418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.556419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.566380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.566382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.566388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.566389 LLDP, length 82 [|LLDP] 19:52:13.566391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.566399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.566401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.566412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.566413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ac0 9aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.566414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.566415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.566416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.566417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.576385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.576386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.576392 LLDP, length 82 [|LLDP] 19:52:13.576394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.576402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.576403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ac8 3c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.576404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.576405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.576409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.586381 LLDP, length 82 [|LLDP] 19:52:13.586383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.586390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.586391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.586398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.586400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.586401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1acf dd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.586402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.586403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.596384 LLDP, length 82 [|LLDP] 19:52:13.596385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.596395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.596396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ad7 7e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.596397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.596398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.596399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.596405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.596406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.606387 LLDP, length 82 [|LLDP] 19:52:13.606389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.606396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.606397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.606398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.606411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.606413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.606415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1adf 1f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.606416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.606417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.606418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.606419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.606421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.606422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.606423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.616381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.616383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.616395 LLDP, length 82 [|LLDP] 19:52:13.616397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.616406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.616407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ae6 c08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.616408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.616409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.616410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.616416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.616417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.616418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.616419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.616420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.616421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.626382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.626384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.626390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.626391 LLDP, length 82 [|LLDP] 19:52:13.626393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.626400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.626401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.626412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.626413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1aee 61ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.626415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.626415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.626416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.626417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.626418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.626419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.636385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.636387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.636394 LLDP, length 82 [|LLDP] 19:52:13.636396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.636404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.636405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1af6 02ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.636407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.636408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.636409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.636415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.636416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.636417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.636418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.636419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.636420 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.646383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.646385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.646390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.646391 LLDP, length 82 [|LLDP] 19:52:13.646393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.646400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.646401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.646413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.646414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1afd a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.646415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.646416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.646417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.646418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.646419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.646420 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.656380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.656382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.656393 LLDP, length 82 [|LLDP] 19:52:13.656395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.656403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.656404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b05 450e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.656405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.656406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.656407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.656413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.656414 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.656415 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.656416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.656417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.656418 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.666374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.666376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.666388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.666389 LLDP, length 82 [|LLDP] 19:52:13.666391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.666398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.666404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.666415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.666416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b0c e62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.666418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.666419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.666420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.666421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.676389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.676391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.676398 LLDP, length 82 [|LLDP] 19:52:13.676400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.676409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.676410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b14 874e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.676412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.676412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.676415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.686402 LLDP, length 82 [|LLDP] 19:52:13.686404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.686414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.686415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.686426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.686428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.686429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b1c 286e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.686431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.686432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.696393 LLDP, length 82 [|LLDP] 19:52:13.696394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.696408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.696409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b23 c98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.696410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.696411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.696412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.696419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.696420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.706388 LLDP, length 82 [|LLDP] 19:52:13.706389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.706397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.706398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.706399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.706410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.706413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.706414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b2b 6aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.706415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.706416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.706417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.706419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.706420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.706421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.706422 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.716387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.716388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.716396 LLDP, length 82 [|LLDP] 19:52:13.716398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.716408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.716409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b33 0bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.716411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.716412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.716413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.716418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.716420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.716421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.716422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.716423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.716423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.726395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.726397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.726404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.726405 LLDP, length 82 [|LLDP] 19:52:13.726407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.726415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.726416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.726428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.726429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b3a acee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.726430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.726431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.726432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.726433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.726434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.726435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.736394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.736396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.736403 LLDP, length 82 [|LLDP] 19:52:13.736405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.736414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.736414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b42 4e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.736416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.736417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.736418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.736423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.736425 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.736426 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.736427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.736428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.736429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.746387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.746389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.746396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.746397 LLDP, length 82 [|LLDP] 19:52:13.746400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.746408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.746410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.746421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.746422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b49 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.746423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.746424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.746425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.746426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.746427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.746428 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.756399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.756401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.756410 LLDP, length 82 [|LLDP] 19:52:13.756412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.756424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.756425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b51 904e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.756426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.756428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.756429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.756435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.756436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.756437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.756438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.756439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.756440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.766388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.766389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.766398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.766399 LLDP, length 82 [|LLDP] 19:52:13.766401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.766412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.766413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.766427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.766428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b59 316e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.766430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.766431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.766432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.766433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.776443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.776445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.776453 LLDP, length 82 [|LLDP] 19:52:13.776455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.776466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.776467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b60 d28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.776469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.776470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.776473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.786380 LLDP, length 82 [|LLDP] 19:52:13.786381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.786397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.786398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.786408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.786410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.786411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b68 73ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.786412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.786414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.796400 LLDP, length 82 [|LLDP] 19:52:13.796402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.796417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.796417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b70 14ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.796419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.796420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.796421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.796428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.796429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.806403 LLDP, length 82 [|LLDP] 19:52:13.806405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.806415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.806416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.806417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.806429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.806432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.806432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b77 b5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.806434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.806435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.806436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.806438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.806439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.806440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.806441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.816389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.816391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.816399 LLDP, length 82 [|LLDP] 19:52:13.816400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.816411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.816412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b7f 570e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.816413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.816414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.816415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.816422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.816423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.816424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.816425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.816426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.816427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.826390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.826392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.826400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.826401 LLDP, length 82 [|LLDP] 19:52:13.826403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.826412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.826414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.826426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.826427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b86 f82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.826428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.826429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.826431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.826432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.826432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.826433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.836388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.836390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.836396 LLDP, length 82 [|LLDP] 19:52:13.836398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.836408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.836409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b8e 994e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.836410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.836411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.836412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.836418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.836420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.836421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.836421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.836422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.836423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.846393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.846395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.846402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.846404 LLDP, length 82 [|LLDP] 19:52:13.846406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.846414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.846416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.846428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.846429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b96 3a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.846430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.846431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.846432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.846433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.846434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.846435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.856391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.856393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.856399 LLDP, length 82 [|LLDP] 19:52:13.856401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.856412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.856413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b9d db8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.856414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.856415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.856416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.856422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.856423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.856424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.856425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.856426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.856427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.866382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.866383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.866390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.866391 LLDP, length 82 [|LLDP] 19:52:13.866394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.866402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.866404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.866415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.866416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ba5 7cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.866418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.866419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.866420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.866420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.876402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.876404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.876410 LLDP, length 82 [|LLDP] 19:52:13.876412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.876421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.876422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bad 1dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.876423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.876424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.876427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.886401 LLDP, length 82 [|LLDP] 19:52:13.886402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.886411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.886412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.886420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.886422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.886423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bb4 beee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.886424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.886426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.896401 LLDP, length 82 [|LLDP] 19:52:13.896403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.896415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.896416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bbc 600e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.896418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.896419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.896420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.896427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.896429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.906394 LLDP, length 82 [|LLDP] 19:52:13.906396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.906404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.906405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.906406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.906416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.906418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.906419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bc4 012e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.906421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.906422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.906423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.906424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.906425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.906426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.906427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.916395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.916397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.916404 LLDP, length 82 [|LLDP] 19:52:13.916406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.916416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.916417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bcb a24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.916419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.916420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.916421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.916426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.916428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.916429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.916430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.916431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.916431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.926390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.926392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.926399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.926400 LLDP, length 82 [|LLDP] 19:52:13.926402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.926412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.926413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.926426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.926427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bd3 436e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.926428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.926429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.926430 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.926431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.926432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.926433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.936389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.936391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.936399 LLDP, length 82 [|LLDP] 19:52:13.936400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.936410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.936410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bda e48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.936412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.936413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.936414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.936419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.936421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.936422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.936423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.936424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.936425 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.946388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.946389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.946397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.946398 LLDP, length 82 [|LLDP] 19:52:13.946400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.946409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.946410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.946422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.946423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1be2 85ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.946425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.946426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.946427 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.946428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.946429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.946430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.956391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.956393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.956400 LLDP, length 82 [|LLDP] 19:52:13.956402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.956413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.956413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bea 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.956415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.956416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.956417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.956422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.956424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.956425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.956426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.956427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.956428 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.966396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.966398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.966405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.966406 LLDP, length 82 [|LLDP] 19:52:13.966409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.966418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.966420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.966432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.966433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bf1 c7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.966435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.966435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.966436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.966437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.976395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.976397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.976404 LLDP, length 82 [|LLDP] 19:52:13.976406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.976416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.976417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bf9 690e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.976419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.976420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.976423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.986397 LLDP, length 82 [|LLDP] 19:52:13.986398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.986406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.986407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.986415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.986417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.986418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c01 0a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.986419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.986421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.996377 LLDP, length 82 [|LLDP] 19:52:13.996379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.996390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.996391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c08 ab4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.996392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.996393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.996394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.996400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.996401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.006398 LLDP, length 82 [|LLDP] 19:52:14.006400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.006409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.006410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.006411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.006422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.006425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.006425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c10 4c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.006427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.006428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.006429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.006431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.006432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.006432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.006433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.016391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.016392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.016400 LLDP, length 82 [|LLDP] 19:52:14.016402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.016412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.016413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c17 ed8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.016415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.016416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.016417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.016422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.016424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.016425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.016426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.016427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.016428 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.026392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.026393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.026400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.026401 LLDP, length 82 [|LLDP] 19:52:14.026403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.026411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.026413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.026426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.026426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c1f 8eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.026428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.026429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.026430 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.026431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.026432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.026433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.036391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.036393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.036400 LLDP, length 82 [|LLDP] 19:52:14.036401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.036410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.036411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c27 2fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.036413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.036414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.036415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.036421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.036422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.036423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.036424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.036425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.036426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.046393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.046395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.046401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.046402 LLDP, length 82 [|LLDP] 19:52:14.046404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.046413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.046414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.046427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.046427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c2e d0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.046429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.046430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.046431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.046432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.046433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.046434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.056391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.056393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.056401 LLDP, length 82 [|LLDP] 19:52:14.056402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.056412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.056413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c36 720e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.056414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.056416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.056417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.056422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.056424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.056425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.056425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.056426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.056427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.066401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.066403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.066412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.066413 LLDP, length 82 [|LLDP] 19:52:14.066415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.066426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.066427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.066443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.066444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c3e 132e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.066445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.066446 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.066447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.066448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.076402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.076405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.076414 LLDP, length 82 [|LLDP] 19:52:14.076415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.076428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.076429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c45 b44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.076431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.076432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.076435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.086395 LLDP, length 82 [|LLDP] 19:52:14.086397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.086405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.086406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.086414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.086416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.086417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c4d 556e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.086419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.086420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.096396 LLDP, length 82 [|LLDP] 19:52:14.096397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.096409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.096410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c54 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.096411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.096412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.096413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.096419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.096421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.106394 LLDP, length 82 [|LLDP] 19:52:14.106395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.106409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.106410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.106411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.106422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.106425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.106426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c5c 97ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.106427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.106428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.106429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.106430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.106432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.106432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.106434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.116395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.116397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.116404 LLDP, length 82 [|LLDP] 19:52:14.116406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.116416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.116417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c64 38ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.116419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.116420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.116421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.116426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.116427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.116428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.116429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.116430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.116431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.126392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.126393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.126401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.126402 LLDP, length 82 [|LLDP] 19:52:14.126405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.126413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.126415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.126427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.126428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c6b d9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.126429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.126430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.126431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.126432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.126434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.126435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.136394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.136396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.136404 LLDP, length 82 [|LLDP] 19:52:14.136405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.136417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.136417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c73 7b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.136419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.136420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.136421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.136426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.136428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.136429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.136429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.136430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.136431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.146394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.146396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.146404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.146405 LLDP, length 82 [|LLDP] 19:52:14.146407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.146417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.146418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.146431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.146432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c7b 1c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.146433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.146435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.146436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.146437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.146438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.146439 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.156394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.156396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.156403 LLDP, length 82 [|LLDP] 19:52:14.156405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.156415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.156416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c82 bd4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.156417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.156418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.156419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.156425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.156427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.156428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.156429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.156429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.156430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.166387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.166389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.166395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.166396 LLDP, length 82 [|LLDP] 19:52:14.166398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.166408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.166409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.166422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.166422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c8a 5e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.166424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.166425 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.166426 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.166427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.176397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.176399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.176406 LLDP, length 82 [|LLDP] 19:52:14.176408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.176417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.176418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c91 ff8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.176420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.176421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.176424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.186396 LLDP, length 82 [|LLDP] 19:52:14.186398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.186406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.186407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.186415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.186417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.186418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c99 a0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.186419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.186421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.196397 LLDP, length 82 [|LLDP] 19:52:14.196399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.196410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.196411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ca1 41ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.196413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.196414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.196415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.196421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.196435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.206426 LLDP, length 82 [|LLDP] 19:52:14.206428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.206442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.206443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.206444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.206457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.206461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.206462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ca8 e2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.206464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.206465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.206466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.206467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.206469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.206469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.206470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.216410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.216412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.216421 LLDP, length 82 [|LLDP] 19:52:14.216423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.216435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.216435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cb0 840e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.216437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.216438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.216439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.216446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.216447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.216448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.216449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.216450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.216451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.226393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.226394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.226400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.226401 LLDP, length 82 [|LLDP] 19:52:14.226403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.226412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.226413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.226425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.226425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cb8 252e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.226427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.226428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.226429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.226430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.226431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.226432 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.236392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.236394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.236400 LLDP, length 82 [|LLDP] 19:52:14.236402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.236412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.236413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cbf c64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.236414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.236415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.236416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.236421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.236423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.236424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.236425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.236426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.236427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.246392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.246394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.246400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.246401 LLDP, length 82 [|LLDP] 19:52:14.246403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.246411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.246412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.246424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.246424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cc7 676e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.246426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.246427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.246428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.246429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.246430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.246431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.256391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.256393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.256398 LLDP, length 82 [|LLDP] 19:52:14.256400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.256408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.256409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ccf 088e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.256411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.256412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.256413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.256418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.256420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.256421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.256422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.256423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.256424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.266384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.266386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.266392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.266393 LLDP, length 82 [|LLDP] 19:52:14.266395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.266402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.266403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.266414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.266415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cd6 a9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.266416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.266417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.266419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.266420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.276394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.276395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.276401 LLDP, length 82 [|LLDP] 19:52:14.276402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.276410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.276410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cde 4ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.276412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.276413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.276416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.286393 LLDP, length 82 [|LLDP] 19:52:14.286394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.286400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.286401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.286408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.286410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.286411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ce5 ebee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.286413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.286414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.296394 LLDP, length 82 [|LLDP] 19:52:14.296395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.296404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.296405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ced 8d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.296406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.296407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.296408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.296413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.296414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.306391 LLDP, length 82 [|LLDP] 19:52:14.306392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.306403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.306404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.306405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.306413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.306416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.306416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cf5 2e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.306418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.306419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.306420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.306421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.306422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.306423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.306424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.316390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.316392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.316398 LLDP, length 82 [|LLDP] 19:52:14.316400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.316408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.316409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cfc cf4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.316410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.316411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.316412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.316418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.316420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.316420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.316421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.316422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.316423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.326390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.326392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.326404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.326405 LLDP, length 82 [|LLDP] 19:52:14.326407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.326414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.326415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.326426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.326426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d04 706e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.326428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.326429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.326429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.326430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.326431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.326433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.336395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.336396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.336403 LLDP, length 82 [|LLDP] 19:52:14.336405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.336415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.336415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d0c 118e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.336417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.336418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.336419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.336425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.336426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.336427 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.336428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.336429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.336430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.346392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.346394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.346406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.346407 LLDP, length 82 [|LLDP] 19:52:14.346410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.346417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.346418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.346429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.346430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d13 b2ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.346432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.346433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.346434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.346435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.346436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.346437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.356392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.356394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.356399 LLDP, length 82 [|LLDP] 19:52:14.356401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.356409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.356410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d1b 53ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.356411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.356412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.356413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.356419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.356420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.356421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.356422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.356423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.356424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.366386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.366394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.366401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.366402 LLDP, length 82 [|LLDP] 19:52:14.366404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.366411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.366412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.366424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.366425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d22 f4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.366427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.366428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.366428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.366430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.376394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.376396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.376401 LLDP, length 82 [|LLDP] 19:52:14.376403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.376411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.376412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d2a 960e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.376413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.376415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.376418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.386395 LLDP, length 82 [|LLDP] 19:52:14.386397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.386403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.386404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.386411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.386413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.386413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d32 372e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.386415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.386416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.396398 LLDP, length 82 [|LLDP] 19:52:14.396400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.396409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.396410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d39 d84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.396411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.396412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.396413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.396418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.396420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.406395 LLDP, length 82 [|LLDP] 19:52:14.406397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.406408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.406408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.406409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.406418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.406421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.406422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d41 796e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.406423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.406424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.406425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.406426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.406428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.406429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.406429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.416391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.416393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.416405 LLDP, length 82 [|LLDP] 19:52:14.416407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.416415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.416416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d49 1a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.416418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.416419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.416420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.416426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.416427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.416428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.416429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.416430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.416431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.426393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.426395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.426401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.426402 LLDP, length 82 [|LLDP] 19:52:14.426404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.426411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.426412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.426423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.426424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d50 bbae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.426426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.426427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.426428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.426429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.426430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.426431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.436394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.436396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.436402 LLDP, length 82 [|LLDP] 19:52:14.436404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.436412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.436413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d58 5cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.436414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.436415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.436416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.436422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.436423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.436424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.436425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.436426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.436427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.446394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.446395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.446400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.446401 LLDP, length 82 [|LLDP] 19:52:14.446403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.446410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.446412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.446423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.446424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d5f fdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.446426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.446426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.446428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.446428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.446429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.446430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.456393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.456395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.456401 LLDP, length 82 [|LLDP] 19:52:14.456402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.456411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.456412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d67 9f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.456413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.456414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.456415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.456420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.456422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.456423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.456424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.456425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.456426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.466387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.466389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.466401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.466402 LLDP, length 82 [|LLDP] 19:52:14.466404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.466411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.466412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.466423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.466424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d6f 402e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.466426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.466427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.466428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.466429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.476396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.476398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.476404 LLDP, length 82 [|LLDP] 19:52:14.476405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.476413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.476414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d76 e14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.476415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.476416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.476419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.486394 LLDP, length 82 [|LLDP] 19:52:14.486396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.486402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.486403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.486409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.486411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.486412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d7e 826e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.486413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.486415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.496396 LLDP, length 82 [|LLDP] 19:52:14.496397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.496406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.496406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d86 238e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.496408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.496409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.496410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.496415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.496417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.506396 LLDP, length 82 [|LLDP] 19:52:14.506397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.506404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.506405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.506406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.506415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.506418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.506419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d8d c4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.506420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.506421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.506422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.506424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.506425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.506426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.506426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.516395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.516397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.516402 LLDP, length 82 [|LLDP] 19:52:14.516404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.516412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.516412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d95 65ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.516414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.516415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.516416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.516421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.516423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.516424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.516425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.516426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.516427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.526396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.526398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.526411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.526412 LLDP, length 82 [|LLDP] 19:52:14.526414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.526422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.526423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.526434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.526435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d9d 06ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.526437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.526438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.526438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.526439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.526441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.526442 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.536396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.536397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.536402 LLDP, length 82 [|LLDP] 19:52:14.536404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.536412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.536413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1da4 a80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.536414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.536415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.536417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.536421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.536423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.536424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.536425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.536426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.536427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.546394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.546396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.546402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.546403 LLDP, length 82 [|LLDP] 19:52:14.546406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.546413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.546415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.546427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.546427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dac 492e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.546429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.546430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.546431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.546432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.546433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.546434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.556398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.556400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.556406 LLDP, length 82 [|LLDP] 19:52:14.556408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.556416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.556417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1db3 ea4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.556418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.556419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.556420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.556425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.556427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.556428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.556429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.556430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.556431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.566390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.566392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.566397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.566398 LLDP, length 82 [|LLDP] 19:52:14.566400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.566407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.566408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.566419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.566420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dbb 8b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.566421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.566422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.566423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.566424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.576382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.576384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.576397 LLDP, length 82 [|LLDP] 19:52:14.576398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.576407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.576408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dc3 2c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.576409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.576410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.576413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.586412 LLDP, length 82 [|LLDP] 19:52:14.586414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.586420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.586421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.586428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.586430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.586431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dca cdae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.586432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.586434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.596413 LLDP, length 82 [|LLDP] 19:52:14.596414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.596423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.596424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dd2 6ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.596425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.596426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.596427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.596432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.596433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.606397 LLDP, length 82 [|LLDP] 19:52:14.606398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.606404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.606405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.606406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.606415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.606418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.606418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dda 0fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.606420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.606421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.606422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.606424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.606425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.606426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.606426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.616398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.616399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.616405 LLDP, length 82 [|LLDP] 19:52:14.616407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.616415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.616416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1de1 b10e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.616417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.616418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.616419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.616425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.616427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.616428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.616429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.616429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.616430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.626398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.626400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.626406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.626407 LLDP, length 82 [|LLDP] 19:52:14.626409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.626416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.626418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.626429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.626430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1de9 522e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.626431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.626433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.626434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.626435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.626436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.626437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.636398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.636400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.636406 LLDP, length 82 [|LLDP] 19:52:14.636408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.636416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.636417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1df0 f34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.636419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.636420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.636421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.636426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.636428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.636429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.636430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.636430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.636431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.646394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.646396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.646402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.646402 LLDP, length 82 [|LLDP] 19:52:14.646405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.646412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.646413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.646424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.646425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1df8 946e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.646426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.646428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.646429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.646430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.646431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.646432 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.656395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.656397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.656409 LLDP, length 82 [|LLDP] 19:52:14.656411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.656419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.656420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e00 358e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.656421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.656422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.656423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.656429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.656430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.656431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.656432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.656433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.656434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.666397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.666399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.666404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.666405 LLDP, length 82 [|LLDP] 19:52:14.666407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.666414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.666415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.666425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.666427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e07 d6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.666428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.666429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.666430 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.666431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.676415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.676417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.676423 LLDP, length 82 [|LLDP] 19:52:14.676425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.676435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.676436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e0f 77ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.676437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.676438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.676441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.686410 LLDP, length 82 [|LLDP] 19:52:14.686411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.686417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.686418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.686425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.686428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.686429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e17 18ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.686430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.686432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.696402 LLDP, length 82 [|LLDP] 19:52:14.696403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.696412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.696413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e1e ba0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.696414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.696415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.696416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.696422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.696423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.706402 LLDP, length 82 [|LLDP] 19:52:14.706404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.706410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.706411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.706412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.706422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.706425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.706426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e26 5b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.706427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.706428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.706429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.706430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.706431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.706433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.706434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.716402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.716403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.716409 LLDP, length 82 [|LLDP] 19:52:14.716411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.716419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.716420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e2d fc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.716421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.716422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.716423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.716429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.716431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.716431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.716433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.716434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.716435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.726396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.726398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.726403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.726404 LLDP, length 82 [|LLDP] 19:52:14.726406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.726412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.726414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.726424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.726425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e35 9d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.726427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.726428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.726429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.726430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.726431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.726432 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.736412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.736414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.736420 LLDP, length 82 [|LLDP] 19:52:14.736422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.736434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.736435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e3d 3e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.736437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.736438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.736439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.736445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.736447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.736448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.736449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.736449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.736450 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.746430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.746433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.746444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.746446 LLDP, length 82 [|LLDP] 19:52:14.746448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.746460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.746461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.746481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.746482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e44 dfae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.746483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.746484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.746485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.746487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.746488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.746489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.756421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.756424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.756433 LLDP, length 82 [|LLDP] 19:52:14.756435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.756447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.756447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e4c 80ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.756449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.756450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.756451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.756457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.756459 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.756460 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.756461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.756463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.756464 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.766410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.766412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.766421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.766423 LLDP, length 82 [|LLDP] 19:52:14.766425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.766433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.766435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.766452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.766453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e54 21ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.766454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.766455 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.766456 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.766457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.776434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.776436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.776446 LLDP, length 82 [|LLDP] 19:52:14.776448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.776458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.776459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e5b c30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.776460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.776462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.776464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.786433 LLDP, length 82 [|LLDP] 19:52:14.786434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.786444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.786446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.786457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.786459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.786460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e63 642e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.786462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.786463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.796402 LLDP, length 82 [|LLDP] 19:52:14.796404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.796418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.796419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e6b 054e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.796420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.796422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.796423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.796430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.796432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.806446 LLDP, length 82 [|LLDP] 19:52:14.806448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.806460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.806461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.806462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.806481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.806484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.806485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e72 a66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.806486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.806487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.806488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.806490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.806491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.806492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.806493 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.816410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.816412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.816419 LLDP, length 82 [|LLDP] 19:52:14.816421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.816432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.816433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e7a 478e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.816435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.816436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.816437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.816443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.816444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.816445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.816446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.816447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.816448 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.826405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.826407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.826420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.826421 LLDP, length 82 [|LLDP] 19:52:14.826423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.826431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.826432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.826446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.826447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e81 e8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.826448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.826449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.826450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.826451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.826452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.826453 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.836405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.836407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.836414 LLDP, length 82 [|LLDP] 19:52:14.836416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.836425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.836426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e89 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.836428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.836429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.836430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.836436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.836437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.836438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.836439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.836440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.836441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.846405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.846406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.846414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.846415 LLDP, length 82 [|LLDP] 19:52:14.846417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.846425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.846426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.846439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.846440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e91 2aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.846441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.846443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.846444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.846444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.846445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.846446 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.856404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.856406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.856413 LLDP, length 82 [|LLDP] 19:52:14.856415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.856424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.856425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e98 cc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.856427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.856428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.856429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.856435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.856436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.856437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.856438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.856439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.856440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.866398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.866400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.866407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.866409 LLDP, length 82 [|LLDP] 19:52:14.866411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.866418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.866419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.866432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.866433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ea0 6d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.866435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.866436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.866437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.866437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.876398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.876400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.876407 LLDP, length 82 [|LLDP] 19:52:14.876408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.876418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.876419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ea8 0e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.876421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.876422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.876425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.886407 LLDP, length 82 [|LLDP] 19:52:14.886409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.886416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.886417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.886427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.886429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.886430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1eaf af6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.886431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.886433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.896413 LLDP, length 82 [|LLDP] 19:52:14.896414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.896425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.896426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1eb7 508e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.896427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.896428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.896430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.896436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.896437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.906406 LLDP, length 82 [|LLDP] 19:52:14.906408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.906414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.906415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.906416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.906427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.906429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.906430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ebe f1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.906431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.906432 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.906433 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.906435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.906436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.906437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.906437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.916407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.916409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.916416 LLDP, length 82 [|LLDP] 19:52:14.916417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.916427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.916427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ec6 92ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.916429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.916430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.916431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.916437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.916438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.916439 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.916440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.916441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.916442 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.926405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.926407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.926415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.926416 LLDP, length 82 [|LLDP] 19:52:14.926418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.926426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.926428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.926440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.926441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ece 33ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.926443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.926444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.926444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.926445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.926446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.926448 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.936405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.936407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.936414 LLDP, length 82 [|LLDP] 19:52:14.936416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.936425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.936426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ed5 d50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.936427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.936428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.936429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.936435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.936437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.936438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.936439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.936440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.936440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.946404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.946406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.946419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.946420 LLDP, length 82 [|LLDP] 19:52:14.946422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.946429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.946431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.946445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.946445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1edd 762e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.946447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.946448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.946449 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.946450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.946451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.946452 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.956405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.956406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.956413 LLDP, length 82 [|LLDP] 19:52:14.956415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.956424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.956425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ee5 174e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.956426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.956427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.956428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.956433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.956435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.956436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.956437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.956438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.956439 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.966400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.966402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.966408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.966410 LLDP, length 82 [|LLDP] 19:52:14.966412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.966419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.966420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.966433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.966433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1eec b86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.966435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.966436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.966437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.966438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.976417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.976419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.976426 LLDP, length 82 [|LLDP] 19:52:14.976428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.976436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.976438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ef4 598e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.976439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.976440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.976443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.986419 LLDP, length 82 [|LLDP] 19:52:14.986421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.986428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.986429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.986437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.986439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.986440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1efb faae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.986442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.986443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.996451 LLDP, length 82 [|LLDP] 19:52:14.996453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.996464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.996465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f03 9bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.996466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.996468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.996469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.996475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.996476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.006406 LLDP, length 82 [|LLDP] 19:52:15.006408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.006415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.006416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.006417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.006428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.006430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.006431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f0b 3cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.006432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.006433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.006434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.006436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.006437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.006438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.006439 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.016406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.016408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.016415 LLDP, length 82 [|LLDP] 19:52:15.016416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.016425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.016426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f12 de0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.016427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.016428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.016430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.016435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.016437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.016438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.016439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.016440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.016441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.026408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.026410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.026416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.026417 LLDP, length 82 [|LLDP] 19:52:15.026419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.026426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.026428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.026441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.026442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f1a 7f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.026443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.026444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.026445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.026446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.026447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.026448 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.036406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.036408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.036414 LLDP, length 82 [|LLDP] 19:52:15.036416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.036425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.036426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f22 204e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.036427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.036428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.036429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.036435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.036436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.036437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.036438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.036439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.036440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.046406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.046408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.046415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.046416 LLDP, length 82 [|LLDP] 19:52:15.046418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.046425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.046427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.046441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.046442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f29 c16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.046444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.046445 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.046446 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.046447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.046448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.046449 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.056407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.056408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.056415 LLDP, length 82 [|LLDP] 19:52:15.056416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.056426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.056427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f31 628e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.056428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.056429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.056430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.056435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.056437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.056438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.056439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.056439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.056440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.066408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.066410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.066416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.066417 LLDP, length 82 [|LLDP] 19:52:15.066420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.066427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.066428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.066441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.066442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f39 03ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.066443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.066444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.066445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.066446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.076425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.076427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.076434 LLDP, length 82 [|LLDP] 19:52:15.076435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.076444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.076445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f40 a4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.076446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.076447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.076450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.086393 LLDP, length 82 [|LLDP] 19:52:15.086395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.086403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.086404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.086412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.086414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.086415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f48 45ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.086416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.086418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.096394 LLDP, length 82 [|LLDP] 19:52:15.096395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.096406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.096406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f4f e70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.096408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.096409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.096410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.096417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.096419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.106409 LLDP, length 82 [|LLDP] 19:52:15.106411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.106419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.106420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.106421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.106432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.106435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.106435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f57 882e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.106437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.106438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.106439 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.106441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.106441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.106442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.106443 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.116406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.116408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.116421 LLDP, length 82 [|LLDP] 19:52:15.116422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.116432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.116433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f5f 294e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.116434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.116435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.116436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.116442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.116443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.116444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.116445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.116446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.116447 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.126407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.126409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.126423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.126424 LLDP, length 82 [|LLDP] 19:52:15.126426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.126433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.126435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.126448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.126449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f66 ca6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.126450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.126451 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.126452 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.126453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.126454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.126455 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.136413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.136415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.136424 LLDP, length 82 [|LLDP] 19:52:15.136426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.136436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.136437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f6e 6b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.136438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.136439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.136440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.136446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.136448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.136449 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.136449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.136450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.136451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.146408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.146409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.146417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.146418 LLDP, length 82 [|LLDP] 19:52:15.146420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.146427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.146429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.146442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.146442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f76 0cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.146444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.146445 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.146446 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.146447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.146448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.146449 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.156406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.156407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.156414 LLDP, length 82 [|LLDP] 19:52:15.156416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.156426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.156427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f7d adce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.156428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.156429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.156430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.156435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.156437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.156438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.156439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.156440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.156441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.166403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.166405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.166412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.166413 LLDP, length 82 [|LLDP] 19:52:15.166416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.166423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.166424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.166438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.166439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f85 4eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.166441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.166441 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.166442 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.166444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.176459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.176473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.176481 LLDP, length 82 [|LLDP] 19:52:15.176483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.176491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.176491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f8c f00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.176493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.176494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.176497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.186442 LLDP, length 82 [|LLDP] 19:52:15.186444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.186456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.186457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.186470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.186473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.186474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f94 912e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.186476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.186478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.196420 LLDP, length 82 [|LLDP] 19:52:15.196422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.196432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.196433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f9c 324e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.196435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.196435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.196436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.196437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.196448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.196450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.196451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.196457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.196459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.196460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.196461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.206425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.206427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.206437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.206438 LLDP, length 82 [|LLDP] 19:52:15.206440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.206449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.206450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.206468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.206469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fa3 d36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.206470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.206471 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.206472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.206473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.206474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.206476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.216417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.216419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.216434 LLDP, length 82 [|LLDP] 19:52:15.216436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.216446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.216447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fab 748e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.216448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.216449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.216450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.216456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.216458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.216459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.216460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.216461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.216462 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.226416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.226418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.226432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.226434 LLDP, length 82 [|LLDP] 19:52:15.226436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.226445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.226446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.226461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.226462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fb3 15ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.226464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.226464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.226465 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.226467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.226468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.226469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.236409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.236412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.236425 LLDP, length 82 [|LLDP] 19:52:15.236427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.236437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.236438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fba b6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.236439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.236440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.236441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.236447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.236449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.236450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.236451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.236452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.236453 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.246422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.246424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.246433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.246434 LLDP, length 82 [|LLDP] 19:52:15.246436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.246446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.246447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.246464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.246465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fc2 57ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.246466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.246467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.246468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.246469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.246470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.246471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.256405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.256407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.256414 LLDP, length 82 [|LLDP] 19:52:15.256416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.256426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.256427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fc9 f90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.256428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.256429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.256430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.256436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.256437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.256438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.256439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.266457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.266459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.266466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.266467 LLDP, length 82 [|LLDP] 19:52:15.266470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.266478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.266489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.266490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fd1 9a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.266491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.276426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.276427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.276434 LLDP, length 82 [|LLDP] 19:52:15.276436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.276445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.276446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fd9 3b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.276448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.276449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.276452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.286394 LLDP, length 82 [|LLDP] 19:52:15.286396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.286403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.286404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.286412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.286415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.286416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fe0 dc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.286417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.286419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.296422 LLDP, length 82 [|LLDP] 19:52:15.296424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.296434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.296435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fe8 7d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.296436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.296437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.296438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.296439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.296449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.296450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.296451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.296457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.296459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.296460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.296461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.306424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.306426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.306436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.306437 LLDP, length 82 [|LLDP] 19:52:15.306439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.306449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.306450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.306466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.306467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ff0 1eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.306468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.306469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.306470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.306472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.306473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.306474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.316417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.316418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.316425 LLDP, length 82 [|LLDP] 19:52:15.316427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.316437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.316437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ff7 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.316439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.316440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.316441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.316447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.316449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.316450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.316451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.316452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.316452 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.326414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.326416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.326424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.326425 LLDP, length 82 [|LLDP] 19:52:15.326427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.326434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.326435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.326450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.326451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fff 60ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.326453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.326454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.326455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.326456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.326457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.326458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.336416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.336417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.336424 LLDP, length 82 [|LLDP] 19:52:15.336426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.336436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.336436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2007 020e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.336438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.336439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.336440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.336446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.336447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.336448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.336449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.336450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.336451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.346415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.346417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.346425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.346426 LLDP, length 82 [|LLDP] 19:52:15.346428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.346436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.346438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.346452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.346453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 200e a32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.346455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.346456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.346457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.346458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.346458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.346459 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.356409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.356411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.356419 LLDP, length 82 [|LLDP] 19:52:15.356421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.356431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.356432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2016 444e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.356434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.356435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.356436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.356441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.356442 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.356443 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.356444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.366420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.366422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.366430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.366431 LLDP, length 82 [|LLDP] 19:52:15.366433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.366441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.366452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.366453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 201d e56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.366454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.376400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.376402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.376408 LLDP, length 82 [|LLDP] 19:52:15.376410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.376418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.376419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2025 868e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.376421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.376422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.376425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.386402 LLDP, length 82 [|LLDP] 19:52:15.386403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.386410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.386411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.386421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.386423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.386424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 202d 27ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.386426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.386427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.396417 LLDP, length 82 [|LLDP] 19:52:15.396418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.396429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.396429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2034 c8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.396431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.396431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.396432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.396433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.396443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.396445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.396446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.396452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.396454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.396455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.396456 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.406417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.406418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.406426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.406428 LLDP, length 82 [|LLDP] 19:52:15.406430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.406437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.406438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.406453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.406454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 203c 69ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.406455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.406456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.406457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.406458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.406460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.406461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.416415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.416417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.416424 LLDP, length 82 [|LLDP] 19:52:15.416425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.416436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.416437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2044 0b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.416438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.416439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.416440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.416446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.416447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.416448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.416449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.416450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.416451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.426425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.426427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.426436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.426437 LLDP, length 82 [|LLDP] 19:52:15.426440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.426448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.426450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.426467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.426468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 204b ac2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.426469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.426470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.426471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.426472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.426474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.426475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.436507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.436509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.436517 LLDP, length 82 [|LLDP] 19:52:15.436519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.436529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.436529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2053 4d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.436531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.436532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.436533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.436540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.436541 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.436542 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.436543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.436544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.436545 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.446432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.446434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.446444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.446445 LLDP, length 82 [|LLDP] 19:52:15.446447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.446459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.446460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.446479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.446480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 205a ee6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.446482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.446483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.446484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.446485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.446486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.446487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.456421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.456423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.456432 LLDP, length 82 [|LLDP] 19:52:15.456434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.456446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.456447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2062 8f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.456448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.456450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.456451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.456456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.456458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.456459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.456460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.466439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.466442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.466451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.466452 LLDP, length 82 [|LLDP] 19:52:15.466454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.466464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.466478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.466479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 206a 30ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.466480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.476427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.476429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.476439 LLDP, length 82 [|LLDP] 19:52:15.476441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.476452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.476453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2071 d1ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.476455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.476456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.476458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.486433 LLDP, length 82 [|LLDP] 19:52:15.486436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.486445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.486446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.486457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.486460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.486460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2079 72ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.486462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.486463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.496437 LLDP, length 82 [|LLDP] 19:52:15.496439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.496451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.496452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2081 140e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.496453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.496454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.496455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.496456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.496468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.496470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.496471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.496476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.496478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.496479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.496479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.506439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.506441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.506451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.506452 LLDP, length 82 [|LLDP] 19:52:15.506455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.506464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.506465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.506483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.506484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2088 b52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.506485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.506487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.506487 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.506488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.506489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.506490 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.516424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.516426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.516441 LLDP, length 82 [|LLDP] 19:52:15.516444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.516455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.516456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2090 564e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.516457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.516458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.516459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.516466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.516467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.516468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.516469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.516470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.516471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.526430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.526432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.526441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.526442 LLDP, length 82 [|LLDP] 19:52:15.526444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.526454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.526455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.526471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.526472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2097 f76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.526473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.526474 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.526475 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.526476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.526477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.526479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.536428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.536430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.536438 LLDP, length 82 [|LLDP] 19:52:15.536440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.536451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.536451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 209f 988e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.536453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.536454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.536455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.536461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.536463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.536464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.536465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.536466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.536467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.546422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.546424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.546433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.546434 LLDP, length 82 [|LLDP] 19:52:15.546436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.546445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.546447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.546462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.546463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20a7 39ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.546465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.546465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.546466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.546467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.546468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.546470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.556420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.556422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.556430 LLDP, length 82 [|LLDP] 19:52:15.556432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.556442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.556443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20ae dace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.556444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.556446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.556447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.556452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.556454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.556455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.556456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.566437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.566439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.566450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.566451 LLDP, length 82 [|LLDP] 19:52:15.566453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.566464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.566478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.566479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20b6 7bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.566481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.576429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.576431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.576441 LLDP, length 82 [|LLDP] 19:52:15.576443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.576454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.576454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20be 1d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.576456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.576457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.576460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.586446 LLDP, length 82 [|LLDP] 19:52:15.586448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.586457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.586458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.586469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.586472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.586472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20c5 be2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.586474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.586476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.596430 LLDP, length 82 [|LLDP] 19:52:15.596432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.596449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.596450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20cd 5f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.596451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.596452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.596453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.596454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.596465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.596467 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.596468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.596473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.596475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.596476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.596477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.606437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.606439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.606449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.606450 LLDP, length 82 [|LLDP] 19:52:15.606452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.606463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.606465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.606484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.606485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20d5 006e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.606487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.606487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.606488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.606489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.606491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.606492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.616425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.616428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.616436 LLDP, length 82 [|LLDP] 19:52:15.616438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.616451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.616452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20dc a18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.616453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.616454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.616455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.616462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.616463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.616464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.616465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.616467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.616467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.626428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.626430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.626439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.626440 LLDP, length 82 [|LLDP] 19:52:15.626442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.626453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.626454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.626469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.626470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20e4 42ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.626471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.626472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.626473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.626474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.626475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.626476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.636428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.636430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.636439 LLDP, length 82 [|LLDP] 19:52:15.636441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.636453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.636454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20eb e3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.636455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.636456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.636458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.636464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.636466 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.636467 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.636467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.636468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.636469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.646431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.646433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.646441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.646443 LLDP, length 82 [|LLDP] 19:52:15.646445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.646456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.646458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.646472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.646473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20f3 84ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.646475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.646476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.646476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.646477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.646478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.646479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.656423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.656425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.656434 LLDP, length 82 [|LLDP] 19:52:15.656435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.656447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.656448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20fb 260e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.656450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.656451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.656452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.656458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.656459 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.656460 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.656461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.666430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.666432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.666443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.666444 LLDP, length 82 [|LLDP] 19:52:15.666446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.666457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.666469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.666470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2102 c72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.666472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.676431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.676433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.676442 LLDP, length 82 [|LLDP] 19:52:15.676444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.676456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.676457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 210a 684e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.676459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.676460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.676463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.686435 LLDP, length 82 [|LLDP] 19:52:15.686436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.686447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.686448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.686460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.686462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.686463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2112 096e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.686465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.686466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.696430 LLDP, length 82 [|LLDP] 19:52:15.696432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.696445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.696446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2119 aa8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.696448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.696449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.696450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.696451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.696461 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.696463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.696464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.696470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.696472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.696473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.696473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.706418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.706420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.706434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.706435 LLDP, length 82 [|LLDP] 19:52:15.706437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.706445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.706446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.706459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.706460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2121 4bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.706462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.706463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.706464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.706465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.706466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.706467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.716414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.716416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.716429 LLDP, length 82 [|LLDP] 19:52:15.716431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.716440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.716440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2128 ecce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.716442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.716443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.716444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.716450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.716451 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.716452 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.716453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.716454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.716455 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.726430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.726432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.726441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.726442 LLDP, length 82 [|LLDP] 19:52:15.726444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.726455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.726456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.726470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.726471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2130 8dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.726472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.726473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.726474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.726475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.726476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.726477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.736417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.736419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.736425 LLDP, length 82 [|LLDP] 19:52:15.736426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.736435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.736435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2138 2f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.736437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.736438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.736439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.736445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.736447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.736448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.736449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.736450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.736451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.746414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.746416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.746421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.746423 LLDP, length 82 [|LLDP] 19:52:15.746425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.746432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.746433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.746444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.746446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 213f d02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.746447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.746448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.746449 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.746450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.746451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.746452 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.756422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.756424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.756432 LLDP, length 82 [|LLDP] 19:52:15.756434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.756446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.756447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2147 714e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.756448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.756449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.756450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.756455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.756457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.756458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.756459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.766426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.766427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.766435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.766436 LLDP, length 82 [|LLDP] 19:52:15.766438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.766448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.766458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.766459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 214f 126e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.766461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.776422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.776424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.776432 LLDP, length 82 [|LLDP] 19:52:15.776433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.776443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.776444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2156 b38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.776446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.776447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.776449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.786421 LLDP, length 82 [|LLDP] 19:52:15.786422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.786429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.786430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.786438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.786440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.786441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 215e 54ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.786442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.786444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.796425 LLDP, length 82 [|LLDP] 19:52:15.796427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.796440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.796441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2165 f5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.796443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.796444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.796445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.796446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.796456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.796458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.796458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.796465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.796466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.796468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.796468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.806436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.806438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.806447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.806448 LLDP, length 82 [|LLDP] 19:52:15.806450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.806466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.806468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.806484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.806485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 216d 96ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.806486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.806487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.806488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.806489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.806490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.806491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.816421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.816422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.816435 LLDP, length 82 [|LLDP] 19:52:15.816436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.816445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.816446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2175 380e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.816447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.816448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.816449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.816455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.816457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.816458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.816459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.816460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.816461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.826419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.826421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.826427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.826428 LLDP, length 82 [|LLDP] 19:52:15.826430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.826437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.826438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.826450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.826451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 217c d92e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.826452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.826453 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.826454 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.826455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.826456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.826457 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.836415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.836417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.836423 LLDP, length 82 [|LLDP] 19:52:15.836425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.836434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.836435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2184 7a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.836437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.836438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.836438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.836445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.836446 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.836447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.836448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.836449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.836450 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.846418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.846420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.846427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.846428 LLDP, length 82 [|LLDP] 19:52:15.846430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.846437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.846439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.846451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.846452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 218c 1b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.846453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.846454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.846455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.846456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.846457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.846458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.856411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.856419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.856424 LLDP, length 82 [|LLDP] 19:52:15.856426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.856434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.856435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2193 bc8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.856437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.856438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.856439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.856444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.856446 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.856447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.856448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.866416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.866418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.866423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.866424 LLDP, length 82 [|LLDP] 19:52:15.866426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.866434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.866442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.866442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 219b 5dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.866444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.876436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.876438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.876447 LLDP, length 82 [|LLDP] 19:52:15.876449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.876462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.876463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21a2 fece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.876465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.876466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.876469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.886422 LLDP, length 82 [|LLDP] 19:52:15.886423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.886430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.886431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.886438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.886441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.886442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21aa 9fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.886443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.886445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.896420 LLDP, length 82 [|LLDP] 19:52:15.896421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.896431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.896432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21b2 410e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.896433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.896434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.896435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.896436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.896445 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.896447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.896448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.896454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.896456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.896457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.896458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.906426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.906428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.906436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.906437 LLDP, length 82 [|LLDP] 19:52:15.906439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.906455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.906456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.906470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.906471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21b9 e22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.906472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.906473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.906474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.906475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.906476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.906477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.916440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.916443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.916453 LLDP, length 82 [|LLDP] 19:52:15.916455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.916466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.916467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21c1 834e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.916469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.916470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.916471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.916477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.916479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.916480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.916481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.916482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.916482 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.926420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.926421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.926434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.926435 LLDP, length 82 [|LLDP] 19:52:15.926438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.926446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.926447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.926459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.926460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21c9 246e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.926461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.926462 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.926463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.926464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.926465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.926466 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.936418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.936419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.936425 LLDP, length 82 [|LLDP] 19:52:15.936427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.936435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.936436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21d0 c58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.936437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.936439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.936440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.936445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.936447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.936448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.936449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.936450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.936451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.946450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.946452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.946466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.946467 LLDP, length 82 [|LLDP] 19:52:15.946470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.946482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.946483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.946503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.946504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21d8 66ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.946506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.946506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.946507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.946509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.946510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.946511 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.956426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.956428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.956437 LLDP, length 82 [|LLDP] 19:52:15.956439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.956453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.956454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21e0 07ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.956455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.956456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.956457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.956463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.956465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.956466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.956467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.966427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.966429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.966436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.966437 LLDP, length 82 [|LLDP] 19:52:15.966439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.966448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.966458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.966459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21e7 a8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.966460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.976426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.976428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.976434 LLDP, length 82 [|LLDP] 19:52:15.976436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.976445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.976446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21ef 4a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.976448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.976449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.976452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.986427 LLDP, length 82 [|LLDP] 19:52:15.986429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.986437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.986438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.986447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.986450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.986450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21f6 eb2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.986452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.986454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.996426 LLDP, length 82 [|LLDP] 19:52:15.996428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.996440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.996441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21fe 8c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.996442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.996444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.996445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.996445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.996455 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.996457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.996458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.996463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.996464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.996465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.996466 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.006423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.006425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.006432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.006433 LLDP, length 82 [|LLDP] 19:52:16.006436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.006444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.006445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.006457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.006458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2206 2d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.006459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.006460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.006461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.006462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.006463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.006464 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.016425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.016427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.016434 LLDP, length 82 [|LLDP] 19:52:16.016435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.016445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.016446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 220d ce8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.016447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.016448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.016449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.016455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.016457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.016458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.016459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.016460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.016460 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.026422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.026424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.026431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.026432 LLDP, length 82 [|LLDP] 19:52:16.026434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.026442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.026444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.026455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.026456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2215 6fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.026457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.026458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.026459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.026460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.026461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.026462 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.036425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.036427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.036442 LLDP, length 82 [|LLDP] 19:52:16.036444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.036454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.036454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 221d 10ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.036456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.036457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.036458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.036463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.036465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.036466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.036467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.036468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.036469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.046424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.046426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.046439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.046440 LLDP, length 82 [|LLDP] 19:52:16.046442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.046452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.046453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.046465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.046466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2224 b1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.046467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.046468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.046469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.046470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.046471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.046472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.056418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.056420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.056427 LLDP, length 82 [|LLDP] 19:52:16.056429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.056439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.056440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 222c 530e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.056442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.056443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.056444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.056449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.056451 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.056452 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.056453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.066424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.066426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.066433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.066434 LLDP, length 82 [|LLDP] 19:52:16.066436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.066445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.066455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.066455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2233 f42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.066457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.076425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.076426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.076433 LLDP, length 82 [|LLDP] 19:52:16.076435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.076444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.076445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 223b 954e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.076447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.076448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.076451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.086428 LLDP, length 82 [|LLDP] 19:52:16.086430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.086437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.086438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.086446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.086449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.086450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2243 366e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.086451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.086452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.096428 LLDP, length 82 [|LLDP] 19:52:16.096430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.096442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.096443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 224a d78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.096445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.096446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.096447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.096448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.096457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.096459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.096460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.096465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.096467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.096467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.096468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.106424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.106426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.106441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.106442 LLDP, length 82 [|LLDP] 19:52:16.106444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.106453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.106455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.106468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.106468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2252 78ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.106470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.106471 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.106472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.106473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.106474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.106475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.116427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.116429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.116437 LLDP, length 82 [|LLDP] 19:52:16.116439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.116449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.116450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 225a 19ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.116451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.116452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.116453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.116459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.116460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.116461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.116462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.116463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.116464 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.126427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.126428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.126436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.126437 LLDP, length 82 [|LLDP] 19:52:16.126439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.126448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.126450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.126462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.126463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2261 baee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.126464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.126465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.126466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.126467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.126468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.126470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.136424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.136426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.136433 LLDP, length 82 [|LLDP] 19:52:16.136435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.136445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.136446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2269 5c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.136447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.136448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.136449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.136455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.136456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.136457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.136458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.136459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.136460 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.146428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.146430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.146446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.146447 LLDP, length 82 [|LLDP] 19:52:16.146450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.146459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.146460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.146481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.146482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2270 fd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.146483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.146485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.146486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.146487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.146504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.146506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.156448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.156450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.156460 LLDP, length 82 [|LLDP] 19:52:16.156462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.156477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.156478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2278 9e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.156479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.156480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.156481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.156488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.156489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.156490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.156491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.166450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.166452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.166462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.166463 LLDP, length 82 [|LLDP] 19:52:16.166466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.166477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.166493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.166494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2280 3f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.166495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.176442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.176443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.176449 LLDP, length 82 [|LLDP] 19:52:16.176451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.176460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.176461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2287 e08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.176462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.176463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.176466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.186414 LLDP, length 82 [|LLDP] 19:52:16.186415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.186423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.186424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.186431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.186433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.186434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 228f 81ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.186436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.186437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.196425 LLDP, length 82 [|LLDP] 19:52:16.196427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.196439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.196440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2297 22ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.196441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.196442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.196443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.196444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.196453 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.196455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.196456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.196461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.196463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.196464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.196465 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.206429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.206431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.206440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.206441 LLDP, length 82 [|LLDP] 19:52:16.206443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.206453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.206454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.206469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.206470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 229e c3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.206471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.206472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.206473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.206475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.206476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.206477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.216479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.216482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.216499 LLDP, length 82 [|LLDP] 19:52:16.216502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.216522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.216523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22a6 650e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.216524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.216525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.216527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.216533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.216535 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.216536 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.216538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.216539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.216540 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.226484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.226486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.226504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.226505 LLDP, length 82 [|LLDP] 19:52:16.226508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.226524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.226525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.226551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.226552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22ae 062e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.226553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.226554 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.226555 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.226556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.226557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.226558 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.236479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.236483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.236498 LLDP, length 82 [|LLDP] 19:52:16.236501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.236519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.236520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22b5 a74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.236521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.236522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.236523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.236531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.236532 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.236533 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.236534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.236535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.236536 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.246487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.246490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.246506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.246507 LLDP, length 82 [|LLDP] 19:52:16.246510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.246525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.246526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.246551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.246551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22bd 486e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.246553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.246554 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.246555 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.246556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.246557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.246558 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.256474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.256477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.256494 LLDP, length 82 [|LLDP] 19:52:16.256497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.256515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.256515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22c4 e98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.256517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.256518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.256520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.256527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.256528 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.256529 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.256530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.266490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.266493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.266509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.266510 LLDP, length 82 [|LLDP] 19:52:16.266513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.266528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.266548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.266549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22cc 8aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.266550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.276479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.276482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.276497 LLDP, length 82 [|LLDP] 19:52:16.276500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.276516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.276517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22d4 2bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.276519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.276520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.276522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.286473 LLDP, length 82 [|LLDP] 19:52:16.286475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.286490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.286491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.286509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.286512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.286513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22db ccee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.286515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.286516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.296434 LLDP, length 82 [|LLDP] 19:52:16.296436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.296450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.296450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22e3 6e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.296452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.296453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.296454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.296455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.296465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.296467 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.296468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.296474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.296476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.296477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.296477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.306433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.306435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.306442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.306443 LLDP, length 82 [|LLDP] 19:52:16.306445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.306455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.306457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.306471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.306472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22eb 0f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.306473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.306474 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.306475 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.306476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.306477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.306478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.316430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.316432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.316440 LLDP, length 82 [|LLDP] 19:52:16.316441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.316452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.316453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22f2 b04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.316455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.316456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.316457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.316462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.316464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.316465 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.316466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.316467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.316468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.326429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.326432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.326439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.326440 LLDP, length 82 [|LLDP] 19:52:16.326442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.326451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.326453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.326466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.326467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22fa 516e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.326469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.326470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.326471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.326472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.326473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.326474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.336438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.336440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.336447 LLDP, length 82 [|LLDP] 19:52:16.336448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.336458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.336459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2301 f28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.336461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.336462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.336463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.336468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.336470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.336471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.336472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.336473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.336474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.346430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.346432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.346439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.346440 LLDP, length 82 [|LLDP] 19:52:16.346443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.346450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.346452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.346466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.346466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2309 93ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.346468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.346469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.346470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.346471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.346472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.346473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.356425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.356427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.356434 LLDP, length 82 [|LLDP] 19:52:16.356435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.356446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.356447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2311 34ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.356448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.356449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.356450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.356456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.356457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.356458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.356459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.366474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.366476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.366483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.366484 LLDP, length 82 [|LLDP] 19:52:16.366486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.366494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.366505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.366506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2318 d5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.366508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.376416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.376418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.376425 LLDP, length 82 [|LLDP] 19:52:16.376427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.376437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.376438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2320 770e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.376440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.376440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.376443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.386432 LLDP, length 82 [|LLDP] 19:52:16.386433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.386441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.386442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.386450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.386453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.386454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2328 182e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.386455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.386456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.396436 LLDP, length 82 [|LLDP] 19:52:16.396438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.396450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.396451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 232f b94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.396452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.396453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.396454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.396455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.396464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.396466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.396467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.396472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.396474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.396475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.396476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.406426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.406428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.406442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.406443 LLDP, length 82 [|LLDP] 19:52:16.406445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.406454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.406455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.406469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.406470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2337 5a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.406471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.406472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.406473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.406474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.406475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.406476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.416428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.416430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.416438 LLDP, length 82 [|LLDP] 19:52:16.416440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.416450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.416451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 233e fb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.416452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.416453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.416454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.416460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.416461 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.416462 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.416463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.416464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.416465 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.426431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.426433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.426440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.426441 LLDP, length 82 [|LLDP] 19:52:16.426443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.426452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.426454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.426467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.426468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2346 9cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.426470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.426470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.426472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.426473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.426474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.426475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.436428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.436430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.436445 LLDP, length 82 [|LLDP] 19:52:16.436446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.436455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.436456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 234e 3dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.436457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.436458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.436459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.436465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.436467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.436468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.436469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.436470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.436470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.446428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.446430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.446443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.446445 LLDP, length 82 [|LLDP] 19:52:16.446447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.446457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.446458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.446471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.446472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2355 deee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.446474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.446475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.446476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.446477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.446478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.446478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.456426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.456428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.456435 LLDP, length 82 [|LLDP] 19:52:16.456436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.456446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.456447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 235d 800e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.456448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.456449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.456450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.456456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.456457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.456458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.456459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.466432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.466434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.466440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.466441 LLDP, length 82 [|LLDP] 19:52:16.466444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.466452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.466462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.466463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2365 212e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.466465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.476434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.476436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.476443 LLDP, length 82 [|LLDP] 19:52:16.476445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.476455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.476456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 236c c24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.476457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.476459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.476461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.486431 LLDP, length 82 [|LLDP] 19:52:16.486433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.486440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.486441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.486449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.486452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.486452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2374 636e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.486454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.486456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.496432 LLDP, length 82 [|LLDP] 19:52:16.496434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.496450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.496451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 237c 048e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.496452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.496453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.496454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.496455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.496464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.496466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.496467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.496473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.496475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.496475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.496476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.506430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.506432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.506439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.506440 LLDP, length 82 [|LLDP] 19:52:16.506442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.506451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.506452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.506465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.506465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2383 a5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.506467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.506468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.506469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.506470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.506471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.506472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.520489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.520491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.520498 LLDP, length 82 [|LLDP] 19:52:16.520500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.520509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.520511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 238b 46ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.520512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.520513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.520514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.520519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.520521 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.520522 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.520523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.520523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.520524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.526430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.526432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.526438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.526439 LLDP, length 82 [|LLDP] 19:52:16.526441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.526449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.526450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.526463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.526464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2392 e7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.526466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.526467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.526468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.526468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.526470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.526471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.536433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.536435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.536441 LLDP, length 82 [|LLDP] 19:52:16.536443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.536453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.536454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 239a 890e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.536455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.536456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.536457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.536463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.536464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.536465 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.536466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.536467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.536468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.546436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.546438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.546445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.546446 LLDP, length 82 [|LLDP] 19:52:16.546448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.546456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.546457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.546470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.546471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23a2 2a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.546472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.546473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.546474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.546475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.546477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.546478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.556429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.556431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.556438 LLDP, length 82 [|LLDP] 19:52:16.556440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.556449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.556449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23a9 cb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.556451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.556452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.556453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.556458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.556460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.556461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.556462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.566434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.566436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.566442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.566443 LLDP, length 82 [|LLDP] 19:52:16.566445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.566454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.566464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.566465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23b1 6c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.566467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.576434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.576436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.576443 LLDP, length 82 [|LLDP] 19:52:16.576445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.576455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.576456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23b9 0d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.576457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.576458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.576461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.586435 LLDP, length 82 [|LLDP] 19:52:16.586437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.586444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.586445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.586452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.586455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.586456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23c0 aeae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.586457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.586459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.596434 LLDP, length 82 [|LLDP] 19:52:16.596436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.596448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.596449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23c8 4fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.596450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.596451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.596452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.596453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.596462 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.596463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.596464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.596470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.596471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.596472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.596473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.606433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.606435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.606441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.606442 LLDP, length 82 [|LLDP] 19:52:16.606445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.606453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.606454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.606467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.606468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23cf f0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.606469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.606470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.606471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.606472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.606473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.606474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.616433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.616435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.616442 LLDP, length 82 [|LLDP] 19:52:16.616444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.616454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.616455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23d7 920e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.616457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.616458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.616459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.616464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.616466 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.616466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.616467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.616468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.616469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.626429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.626431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.626438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.626439 LLDP, length 82 [|LLDP] 19:52:16.626442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.626450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.626451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.626465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.626465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23df 332e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.626467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.626468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.626469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.626470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.626471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.626472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.636436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.636438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.636444 LLDP, length 82 [|LLDP] 19:52:16.636446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.636456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.636456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23e6 d44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.636458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.636459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.636460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.636465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.636467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.636468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.636469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.636470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.636471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.646432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.646434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.646441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.646442 LLDP, length 82 [|LLDP] 19:52:16.646444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.646452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.646453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.646466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.646467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23ee 756e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.646468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.646469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.646470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.646471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.646472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.646473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.656426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.656428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.656435 LLDP, length 82 [|LLDP] 19:52:16.656437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.656446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.656446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23f6 168e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.656448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.656449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.656450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.656455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.656457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.656457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.656458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.666435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.666437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.666444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.666445 LLDP, length 82 [|LLDP] 19:52:16.666447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.666456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.666467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.666468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23fd b7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.666469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.676436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.676438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.676445 LLDP, length 82 [|LLDP] 19:52:16.676447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.676457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.676458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2405 58ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.676460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.676461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.676464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.686436 LLDP, length 82 [|LLDP] 19:52:16.686438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.686445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.686446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.686454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.686456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.686457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 240c f9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.686459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.686460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.696436 LLDP, length 82 [|LLDP] 19:52:16.696438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.696450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.696451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2414 9b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.696453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.696454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.696455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.696456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.696464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.696466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.696467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.696472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.696474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.696475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.696476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.706432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.706434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.706447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.706448 LLDP, length 82 [|LLDP] 19:52:16.706450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.706458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.706459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.706473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.706473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 241c 3c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.706475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.706476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.706477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.706478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.706479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.706480 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.716432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.716434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.716441 LLDP, length 82 [|LLDP] 19:52:16.716443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.716454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.716455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2423 dd4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.716456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.716457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.716458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.716463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.716465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.716466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.716467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.716468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.716468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.726431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.726433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.726446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.726447 LLDP, length 82 [|LLDP] 19:52:16.726450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.726457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.726459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.726472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.726473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 242b 7e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.726474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.726475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.726476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.726477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.726478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.726479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.736435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.736437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.736443 LLDP, length 82 [|LLDP] 19:52:16.736445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.736455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.736456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2433 1f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.736458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.736459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.736460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.736465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.736467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.736468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.736469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.736470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.736471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.746435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.746437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.746444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.746445 LLDP, length 82 [|LLDP] 19:52:16.746447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.746455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.746457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.746470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.746471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 243a c0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.746472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.746473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.746474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.746475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.746476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.746477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.756443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.756445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.756455 LLDP, length 82 [|LLDP] 19:52:16.756456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.756470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.756471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2442 61ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.756472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.756473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.756474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.756480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.756481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.756482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.756483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.766437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.766439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.766446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.766447 LLDP, length 82 [|LLDP] 19:52:16.766449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.766457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.766469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.766469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 244a 02ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.766471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.776440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.776442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.776449 LLDP, length 82 [|LLDP] 19:52:16.776451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.776461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.776462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2451 a40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.776463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.776464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.776467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.786437 LLDP, length 82 [|LLDP] 19:52:16.786439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.786447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.786448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.786456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.786458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.786459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2459 452e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.786460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.786461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.796438 LLDP, length 82 [|LLDP] 19:52:16.796440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.796453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.796454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2460 e64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.796455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.796456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.796457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.796458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.796467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.796469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.796470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.796475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.796476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.796477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.796478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.806450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.806452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.806461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.806462 LLDP, length 82 [|LLDP] 19:52:16.806465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.806477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.806478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.806495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.806495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2468 876e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.806497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.806498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.806499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.806500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.806501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.806502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.816436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.816438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.816445 LLDP, length 82 [|LLDP] 19:52:16.816447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.816458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.816458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2470 288e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.816460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.816461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.816462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.816467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.816469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.816470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.816471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.816471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.816472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.826434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.826436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.826449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.826450 LLDP, length 82 [|LLDP] 19:52:16.826452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.826461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.826462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.826476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.826477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2477 c9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.826478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.826479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.826481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.826482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.826482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.826483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.836434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.836436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.836451 LLDP, length 82 [|LLDP] 19:52:16.836452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.836461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.836462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 247f 6ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.836464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.836465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.836466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.836471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.836473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.836474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.836475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.836476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.836477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.846438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.846440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.846447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.846448 LLDP, length 82 [|LLDP] 19:52:16.846450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.846459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.846460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.846474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.846475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2487 0bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.846476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.846477 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.846478 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.846479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.846480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.846481 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.856429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.856431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.856437 LLDP, length 82 [|LLDP] 19:52:16.856439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.856449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.856449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 248e ad0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.856451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.856452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.856453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.856458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.856460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.856461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.856462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.866436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.866438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.866445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.866446 LLDP, length 82 [|LLDP] 19:52:16.866448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.866457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.866468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.866469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2496 4e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.866470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.876439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.876441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.876447 LLDP, length 82 [|LLDP] 19:52:16.876449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.876458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.876459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 249d ef4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.876460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.876461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.876464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.886440 LLDP, length 82 [|LLDP] 19:52:16.886442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.886449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.886450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.886458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.886460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.886461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24a5 906e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.886463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.886465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.896440 LLDP, length 82 [|LLDP] 19:52:16.896442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.896453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.896454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24ad 318e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.896456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.896457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.896458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.896459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.896467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.896469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.896470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.896475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.896477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.896478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.896479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.906441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.906443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.906450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.906451 LLDP, length 82 [|LLDP] 19:52:16.906453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.906461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.906462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.906476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.906477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24b4 d2ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.906478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.906479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.906480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.906481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.906482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.906483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.916437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.916438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.916445 LLDP, length 82 [|LLDP] 19:52:16.916447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.916457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.916458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24bc 73ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.916459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.916460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.916461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.916466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.916468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.916469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.916470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.916471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.916472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.926440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.926442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.926449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.926450 LLDP, length 82 [|LLDP] 19:52:16.926452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.926460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.926462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.926475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.926476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24c4 14ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.926477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.926478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.926479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.926480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.926481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.926482 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.936436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.936438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.936445 LLDP, length 82 [|LLDP] 19:52:16.936447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.936456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.936457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24cb b60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.936459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.936460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.936461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.936466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.936468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.936469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.936470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.936471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.936472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.946465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.946467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.946480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.946481 LLDP, length 82 [|LLDP] 19:52:16.946484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.946495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.946497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.946516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.946517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24d3 572e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.946518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.946519 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.946520 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.946522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.946523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.946524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.956436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.956438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.956445 LLDP, length 82 [|LLDP] 19:52:16.956447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.956457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.956458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24da f84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.956459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.956460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.956461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.956467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.956469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.956470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.956470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.966441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.966443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.966450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.966451 LLDP, length 82 [|LLDP] 19:52:16.966454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.966462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.966473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.966474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24e2 996e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.966475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.976448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.976451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.976461 LLDP, length 82 [|LLDP] 19:52:16.976462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.976473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.976474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24ea 3a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.976476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.976477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.976479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.986450 LLDP, length 82 [|LLDP] 19:52:16.986452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.986460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.986461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.986472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.986475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.986476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24f1 dbae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.986477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.986478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.996449 LLDP, length 82 [|LLDP] 19:52:16.996451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.996463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.996464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24f9 7cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.996465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.996467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.996467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.996468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.996478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.996479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.996480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.996486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.996487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.996488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.996490 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.006439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.006441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.006447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.006448 LLDP, length 82 [|LLDP] 19:52:17.006451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.006459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.006460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.006474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.006475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2501 1dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.006476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.006477 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.006478 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.006479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.006480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.006481 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.016450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.016452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.016462 LLDP, length 82 [|LLDP] 19:52:17.016464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.016476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.016477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2508 bf0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.016478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.016480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.016481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.016487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.016489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.016490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.016490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.016491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.016492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.026440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.026442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.026450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.026451 LLDP, length 82 [|LLDP] 19:52:17.026453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.026461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.026463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.026477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.026478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2510 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.026479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.026480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.026481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.026482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.026483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.026484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.036439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.036440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.036447 LLDP, length 82 [|LLDP] 19:52:17.036449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.036459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.036459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2518 014e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.036461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.036462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.036463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.036469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.036470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.036471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.036472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.036473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.036474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.046450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.046452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.046462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.046463 LLDP, length 82 [|LLDP] 19:52:17.046465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.046476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.046477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.046493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.046494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 251f a26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.046496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.046497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.046497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.046498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.046500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.046501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.056435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.056437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.056444 LLDP, length 82 [|LLDP] 19:52:17.056446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.056456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.056457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2527 438e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.056458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.056459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.056460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.056466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.056467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.056468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.056469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.066444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.066446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.066452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.066453 LLDP, length 82 [|LLDP] 19:52:17.066456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.066464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.066475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.066476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 252e e4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.066477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.076453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.076455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.076464 LLDP, length 82 [|LLDP] 19:52:17.076465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.076476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.076477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2536 85ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.076479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.076480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.076482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.086469 LLDP, length 82 [|LLDP] 19:52:17.086471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.086483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.086484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.086500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.086503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.086503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 253e 26ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.086505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.086506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.096445 LLDP, length 82 [|LLDP] 19:52:17.096447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.096459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.096460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2545 c80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.096461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.096462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.096463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.096464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.096473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.096475 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.096476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.096483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.096484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.096485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.096486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.106437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.106439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.106453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.106454 LLDP, length 82 [|LLDP] 19:52:17.106456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.106464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.106465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.106479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.106479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 254d 692e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.106481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.106482 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.106483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.106484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.106484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.106486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.116440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.116441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.116456 LLDP, length 82 [|LLDP] 19:52:17.116457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.116468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.116469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2555 0a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.116470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.116471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.116472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.116478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.116479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.116480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.116481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.116482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.116483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.126441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.126444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.126450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.126451 LLDP, length 82 [|LLDP] 19:52:17.126453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.126461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.126463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.126476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.126477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 255c ab6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.126478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.126479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.126480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.126481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.126482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.126483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.136438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.136440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.136453 LLDP, length 82 [|LLDP] 19:52:17.136467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.136476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.136477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2564 4c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.136479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.136480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.136481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.136486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.136488 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.136488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.136489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.136490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.136491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.146464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.146466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.146476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.146477 LLDP, length 82 [|LLDP] 19:52:17.146479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.146493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.146495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.146515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.146516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 256b edae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.146518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.146519 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.146520 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.146521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.146522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.146523 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.156440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.156441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.156448 LLDP, length 82 [|LLDP] 19:52:17.156450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.156461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.156462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2573 8ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.156464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.156465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.156466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.156471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.156473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.156474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.156475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.166444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.166446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.166453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.166454 LLDP, length 82 [|LLDP] 19:52:17.166456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.166465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.166477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.166477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 257b 2fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.166479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.176442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.176444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.176450 LLDP, length 82 [|LLDP] 19:52:17.176452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.176461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.176461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2582 d10e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.176463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.176464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.176467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.186448 LLDP, length 82 [|LLDP] 19:52:17.186449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.186457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.186459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.186466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.186468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.186469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 258a 722e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.186470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.186472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.196443 LLDP, length 82 [|LLDP] 19:52:17.196445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.196460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.196461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2592 134e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.196463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.196464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.196465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.196466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.196475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.196476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.196477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.196482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.196484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.196485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.196486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.206442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.206444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.206451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.206452 LLDP, length 82 [|LLDP] 19:52:17.206454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.206462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.206464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.206476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.206477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2599 b46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.206479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.206480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.206481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.206482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.206483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.206484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.216441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.216443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.216450 LLDP, length 82 [|LLDP] 19:52:17.216452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.216461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.216461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25a1 558e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.216463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.216464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.216465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.216470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.216472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.216473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.216474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.216475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.216475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.226442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.226444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.226451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.226452 LLDP, length 82 [|LLDP] 19:52:17.226454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.226463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.226464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.226478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.226479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25a8 f6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.226481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.226482 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.226483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.226484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.226485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.226486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.236440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.236442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.236450 LLDP, length 82 [|LLDP] 19:52:17.236451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.236461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.236462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25b0 97ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.236463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.236464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.236465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.236471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.236473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.236474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.236475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.236476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.236477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.246442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.246444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.246451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.246452 LLDP, length 82 [|LLDP] 19:52:17.246454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.246463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.246465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.246478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.246478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25b8 38ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.246480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.246481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.246482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.246482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.246483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.246484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.256436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.256438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.256445 LLDP, length 82 [|LLDP] 19:52:17.256447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.256457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.256458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25bf da0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.256459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.256460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.256461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.256466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.256468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.256469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.256469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.266444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.266446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.266453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.266454 LLDP, length 82 [|LLDP] 19:52:17.266456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.266463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.266474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.266475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25c7 7b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.266476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.276443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.276445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.276452 LLDP, length 82 [|LLDP] 19:52:17.276453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.276461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.276463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25cf 1c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.276464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.276465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.276468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.286497 LLDP, length 82 [|LLDP] 19:52:17.286499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.286515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.286516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.286538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.286542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.286543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25d6 bd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.286545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.286546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.296490 LLDP, length 82 [|LLDP] 19:52:17.296492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.296513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.296514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25de 5e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.296515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.296516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.296517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.296518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.296537 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.296539 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.296540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.296546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.296548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.296549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.296550 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.306449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.306451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.306457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.306459 LLDP, length 82 [|LLDP] 19:52:17.306461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.306471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.306473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.306488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.306489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25e5 ffae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.306490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.306491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.306493 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.306494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.306495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.306496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.316446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.316448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.316455 LLDP, length 82 [|LLDP] 19:52:17.316457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.316467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.316469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25ed a0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.316470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.316471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.316472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.316478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.316480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.316481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.316482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.316483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.316483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.326444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.326446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.326453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.326454 LLDP, length 82 [|LLDP] 19:52:17.326457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.326466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.326468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.326482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.326483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25f5 41ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.326485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.326485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.326486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.326487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.326488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.326489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.336445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.336447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.336453 LLDP, length 82 [|LLDP] 19:52:17.336455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.336466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.336467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25fc e30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.336468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.336469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.336470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.336476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.336478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.336479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.336480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.336481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.336481 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.346447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.346449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.346456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.346457 LLDP, length 82 [|LLDP] 19:52:17.346459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.346467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.346469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.346483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.346484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2604 842e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.346486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.346487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.346488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.346489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.346490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.346491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.356436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.356444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.356451 LLDP, length 82 [|LLDP] 19:52:17.356452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.356462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.356463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 260c 254e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.356464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.356465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.356466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.356472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.356473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.356474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.356476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.369541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.369542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.369549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.369550 LLDP, length 82 [|LLDP] 19:52:17.369552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.369561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.369572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.369573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2613 c66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.369574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.376447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.376449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.376456 LLDP, length 82 [|LLDP] 19:52:17.376457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.376468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.376469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 261b 678e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.376470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.376471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.376474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.386444 LLDP, length 82 [|LLDP] 19:52:17.386446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.386453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.386454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.386462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.386465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.386465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2623 08ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.386467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.386468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.396449 LLDP, length 82 [|LLDP] 19:52:17.396450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.396461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.396462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 262a a9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.396464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.396465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.396466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.396466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.396476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.396478 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.396479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.396484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.396485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.396486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.396487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.406442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.406444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.406457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.406459 LLDP, length 82 [|LLDP] 19:52:17.406461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.406469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.406470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.406483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.406484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2632 4aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.406485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.406486 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.406487 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.406488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.406489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.406490 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.416442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.416444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.416457 LLDP, length 82 [|LLDP] 19:52:17.416459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.416468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.416469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2639 ec0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.416470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.416471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.416473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.416478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.416479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.416481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.416482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.416483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.416483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.430134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.430136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.430142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.430144 LLDP, length 82 [|LLDP] 19:52:17.430146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.430154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.430155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.430167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.430168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2641 8d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.430170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.430171 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.430172 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.430172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.430173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.430174 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.436444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.436446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.436453 LLDP, length 82 [|LLDP] 19:52:17.436455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.436465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.436466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2649 2e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.436467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.436468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.436469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.436475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.436476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.436477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.436478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.436479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.436480 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.446446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.446448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.446455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.446456 LLDP, length 82 [|LLDP] 19:52:17.446458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.446466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.446467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.446480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.446481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2650 cf6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.446483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.446483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.446484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.446485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.446486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.446487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.456440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.456442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.456449 LLDP, length 82 [|LLDP] 19:52:17.456451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.456460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.456461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2658 708e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.456462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.456463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.456464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.456470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.456471 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.456472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.456473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.466446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.466448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.466455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.466456 LLDP, length 82 [|LLDP] 19:52:17.466458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.466466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.466478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.466478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2660 11ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.466480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.476447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.476449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.476456 LLDP, length 82 [|LLDP] 19:52:17.476457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.476466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.476467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2667 b2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.476469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.476470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.476473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.490752 LLDP, length 82 [|LLDP] 19:52:17.490754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.490761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.490762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.490770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.490772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.490773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 266f 53ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.490774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.490776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.496447 LLDP, length 82 [|LLDP] 19:52:17.496448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.496460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.496461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2676 f50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.496462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.496463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.496464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.496465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.496474 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.496476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.496477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.496483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.496484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.496485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.496486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.506446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.506448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.506455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.506455 LLDP, length 82 [|LLDP] 19:52:17.506458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.506466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.506467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.506481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.506482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 267e 962e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.506483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.506484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.506485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.506486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.506487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.506488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.516443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.516446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.516459 LLDP, length 82 [|LLDP] 19:52:17.516461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.516470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.516471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2686 374e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.516472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.516473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.516474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.516480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.516481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.516482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.516483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.516484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.516485 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.526443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.526445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.526452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.526453 LLDP, length 82 [|LLDP] 19:52:17.526455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.526464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.526465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.526478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.526478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 268d d86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.526480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.526481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.526482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.526482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.526484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.526485 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.536445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.536447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.536453 LLDP, length 82 [|LLDP] 19:52:17.536455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.536464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.536465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2695 798e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.536467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.536468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.536469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.536474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.536476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.536477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.536478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.536479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.536480 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.546442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.546444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.546458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.546459 LLDP, length 82 [|LLDP] 19:52:17.546461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.546469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.546470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.546484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.546484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 269d 1aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.546486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.546487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.546488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.546489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.546489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.546491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.556439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.556441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.556453 LLDP, length 82 [|LLDP] 19:52:17.556455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.556464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.556465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26a4 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.556467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.556468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.556469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.556475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.556476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.556477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.556478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.566467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.566468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.566475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.566476 LLDP, length 82 [|LLDP] 19:52:17.566478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.566487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.566498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.566499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26ac 5cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.566500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.576449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.576450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.576457 LLDP, length 82 [|LLDP] 19:52:17.576459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.576468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.576469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26b3 fe0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.576470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.576472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.576474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.586452 LLDP, length 82 [|LLDP] 19:52:17.586454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.586461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.586462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.586470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.586472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.586473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26bb 9f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.586475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.586476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.596450 LLDP, length 82 [|LLDP] 19:52:17.596452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.596463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.596463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26c3 404e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.596465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.596466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.596467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.596468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.596477 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.596479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.596480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.596485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.596487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.596487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.596489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.606447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.606449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.606463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.606464 LLDP, length 82 [|LLDP] 19:52:17.606466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.606474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.606475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.606488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.606489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26ca e16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.606491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.606491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.606492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.606493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.606494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.606495 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.616447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.616449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.616456 LLDP, length 82 [|LLDP] 19:52:17.616458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.616468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.616469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26d2 828e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.616470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.616471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.616472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.616478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.616479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.616481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.616481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.616482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.616483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.626447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.626449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.626456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.626457 LLDP, length 82 [|LLDP] 19:52:17.626459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.626467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.626469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.626481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.626481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26da 23ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.626483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.626484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.626485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.626486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.626487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.626488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.636445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.636447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.636460 LLDP, length 82 [|LLDP] 19:52:17.636461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.636471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.636472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26e1 c4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.636473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.636474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.636475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.636480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.636482 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.636483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.636484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.636485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.636486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.646447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.646449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.646456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.646457 LLDP, length 82 [|LLDP] 19:52:17.646459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.646467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.646468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.646480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.646481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26e9 65ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.646483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.646484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.646484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.646485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.646486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.646487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.656441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.656443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.656450 LLDP, length 82 [|LLDP] 19:52:17.656452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.656461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.656462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26f1 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.656463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.656464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.656465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.656471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.656472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.656473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.656474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.666450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.666451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.666459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.666460 LLDP, length 82 [|LLDP] 19:52:17.666462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.666471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.666481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.666482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26f8 a82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.666484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.676451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.676453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.676459 LLDP, length 82 [|LLDP] 19:52:17.676461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.676470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.676471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2700 494e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.676472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.676473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.676476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.686449 LLDP, length 82 [|LLDP] 19:52:17.686451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.686459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.686460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.686468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.686470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.686471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2707 ea6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.686472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.686474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.696448 LLDP, length 82 [|LLDP] 19:52:17.696450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.696461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.696462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 270f 8b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.696463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.696464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.696465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.696466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.696475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.696476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.696478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.696483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.696485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.696486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.696487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.706448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.706450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.706463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.706464 LLDP, length 82 [|LLDP] 19:52:17.706466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.706474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.706475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.706487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.706488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2717 2cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.706490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.706491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.706491 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.706492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.706493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.706494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.716447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.716449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.716462 LLDP, length 82 [|LLDP] 19:52:17.716464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.716473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.716474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 271e cdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.716475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.716477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.716478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.716483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.716484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.716485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.716486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.716487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.716488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.726447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.726449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.726462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.726463 LLDP, length 82 [|LLDP] 19:52:17.726465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.726472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.726474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.726486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.726487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2726 6eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.726488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.726489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.726490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.726491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.726492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.726493 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.736446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.736448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.736461 LLDP, length 82 [|LLDP] 19:52:17.736463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.736473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.736474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 272e 100e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.736475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.736476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.736477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.736482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.736484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.736485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.736486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.736487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.736488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.746448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.746450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.746456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.746457 LLDP, length 82 [|LLDP] 19:52:17.746459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.746468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.746469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.746482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.746483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2735 b12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.746484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.746485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.746486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.746487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.746488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.746489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.756457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.756459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.756469 LLDP, length 82 [|LLDP] 19:52:17.756471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.756483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.756484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 273d 524e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.756485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.756486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.756487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.756493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.756495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.756496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.756496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.766467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.766470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.766478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.766479 LLDP, length 82 [|LLDP] 19:52:17.766482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.766493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.766507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.766507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2744 f36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.766509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.776458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.776460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.776469 LLDP, length 82 [|LLDP] 19:52:17.776471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.776482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.776483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 274c 948e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.776484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.776485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.776488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.786452 LLDP, length 82 [|LLDP] 19:52:17.786454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.786462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.786463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.786471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.786473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.786474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2754 35ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.786476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.786477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.796453 LLDP, length 82 [|LLDP] 19:52:17.796455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.796471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.796472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 275b d6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.796473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.796474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.796475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.796476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.796485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.796487 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.796489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.796494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.796496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.796497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.796498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.806453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.806455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.806461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.806463 LLDP, length 82 [|LLDP] 19:52:17.806465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.806473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.806475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.806488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.806488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2763 77ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.806490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.806491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.806492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.806492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.806494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.806495 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.816451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.816453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.816460 LLDP, length 82 [|LLDP] 19:52:17.816462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.816471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.816472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 276b 190e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.816474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.816475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.816475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.816481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.816483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.816483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.816484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.816485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.816486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.826450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.826452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.826459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.826460 LLDP, length 82 [|LLDP] 19:52:17.826462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.826470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.826472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.826485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.826486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2772 ba2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.826488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.826489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.826490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.826490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.826491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.826492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.836450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.836451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.836465 LLDP, length 82 [|LLDP] 19:52:17.836467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.836476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.836477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 277a 5b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.836478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.836479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.836480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.836486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.836487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.836488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.836489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.836490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.836491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.846450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.846452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.846458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.846459 LLDP, length 82 [|LLDP] 19:52:17.846461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.846470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.846472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.846485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.846486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2781 fc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.846487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.846488 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.846489 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.846490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.846491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.846492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.856448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.856450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.856457 LLDP, length 82 [|LLDP] 19:52:17.856459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.856469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.856469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2789 9d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.856471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.856472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.856473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.856479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.856480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.856481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.856482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.866455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.866457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.866464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.866465 LLDP, length 82 [|LLDP] 19:52:17.866467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.866475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.866486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.866487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2791 3eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.866488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.876453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.876455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.876462 LLDP, length 82 [|LLDP] 19:52:17.876464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.876473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.876474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2798 dfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.876475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.876476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.876480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.886454 LLDP, length 82 [|LLDP] 19:52:17.886456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.886464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.886465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.886472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.886474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.886475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27a0 80ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.886477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.886478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.896457 LLDP, length 82 [|LLDP] 19:52:17.896459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.896470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.896471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27a8 220e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.896473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.896473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.896474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.896475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.896484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.896486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.896487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.896493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.896494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.896495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.896496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.906453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.906455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.906469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.906469 LLDP, length 82 [|LLDP] 19:52:17.906472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.906480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.906481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.906494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.906494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27af c32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.906496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.906497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.906498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.906499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.906500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.906501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.916453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.916455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.916462 LLDP, length 82 [|LLDP] 19:52:17.916463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.916473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.916474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27b7 644e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.916475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.916476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.916477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.916482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.916484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.916485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.916486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.916487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.916488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.926453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.926455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.926462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.926463 LLDP, length 82 [|LLDP] 19:52:17.926465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.926473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.926474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.926487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.926488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27bf 056e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.926489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.926490 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.926492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.926492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.926493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.926494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.936452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.936453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.936460 LLDP, length 82 [|LLDP] 19:52:17.936462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.936472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.936473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27c6 a68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.936474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.936475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.936476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.936481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.936483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.936484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.936485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.936486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.936487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.946450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.946452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.946459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.946460 LLDP, length 82 [|LLDP] 19:52:17.946462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.946470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.946471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.946484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.946485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27ce 47ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.946486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.946487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.946488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.946489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.946490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.946491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.956446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.956448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.956456 LLDP, length 82 [|LLDP] 19:52:17.956457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.956467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.956467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27d5 e8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.956469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.956470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.956471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.956476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.956478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.956479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.956480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.966454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.966456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.966463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.966464 LLDP, length 82 [|LLDP] 19:52:17.966466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.966474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.966485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.966485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27dd 89ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.966487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.976455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.976457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.976463 LLDP, length 82 [|LLDP] 19:52:17.976465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.976475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.976476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27e5 2b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.976477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.976478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.976481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.986455 LLDP, length 82 [|LLDP] 19:52:17.986457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.986464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.986466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.986473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.986475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.986476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27ec cc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.986478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.986479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.996456 LLDP, length 82 [|LLDP] 19:52:17.996458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.996469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.996470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27f4 6d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.996471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.996472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.996473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.996474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.996483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.996484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.996485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.996491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.996492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.996493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.996494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.006452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.006454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.006467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.006468 LLDP, length 82 [|LLDP] 19:52:18.006470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.006479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.006481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.006494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.006495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27fc 0e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.006496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.006497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.006498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.006499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.006500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.006501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.016456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.016457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.016471 LLDP, length 82 [|LLDP] 19:52:18.016474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.016483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.016484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2803 af8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.016485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.016486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.016487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.016493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.016495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.016496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.016497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.016497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.016498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.026453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.026455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.026468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.026469 LLDP, length 82 [|LLDP] 19:52:18.026472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.026480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.026481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.026495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.026496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 280b 50ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.026497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.026498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.026499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.026500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.026501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.026502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.036453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.036455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.036461 LLDP, length 82 [|LLDP] 19:52:18.036463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.036473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.036474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2812 f1ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.036475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.036476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.036477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.036483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.036485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.036486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.036487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.036488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.036488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.046455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.046457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.046464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.046465 LLDP, length 82 [|LLDP] 19:52:18.046467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.046475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.046477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.046489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.046490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 281a 92ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.046491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.046492 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.046493 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.046494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.046495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.046496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.056448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.056449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.056456 LLDP, length 82 [|LLDP] 19:52:18.056458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.056468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.056469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2822 340e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.056470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.056471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.056472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.056478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.056480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.056481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.056481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.066456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.066458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.066464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.066465 LLDP, length 82 [|LLDP] 19:52:18.066467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.066475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.066486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.066486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2829 d52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.066488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.076456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.076457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.076464 LLDP, length 82 [|LLDP] 19:52:18.076466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.076475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.076476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2831 764e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.076478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.076479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.076482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.086480 LLDP, length 82 [|LLDP] 19:52:18.086482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.086494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.086495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.086508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.086511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.086512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2839 176e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.086513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.086514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.096460 LLDP, length 82 [|LLDP] 19:52:18.096462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.096473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.096474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2840 b88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.096475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.096476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.096477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.096478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.096487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.096489 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.096490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.096496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.096497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.096498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.096499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.106457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.106459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.106473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.106474 LLDP, length 82 [|LLDP] 19:52:18.106477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.106485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.106486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.106501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.106502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2848 59ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.106503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.106504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.106505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.106506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.106507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.106508 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.116470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.116479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.116490 LLDP, length 82 [|LLDP] 19:52:18.116492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.116503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.116504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 284f face 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.116506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.116507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.116518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.116525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.116527 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.116528 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.116529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.116530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.116531 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.126479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.126488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.126499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.126500 LLDP, length 82 [|LLDP] 19:52:18.126502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.126516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.126517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.126538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.126539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2857 9bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.126540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.126541 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.126542 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.126543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.126544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.126545 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.136467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.136469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.136485 LLDP, length 82 [|LLDP] 19:52:18.136487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.136500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.136501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 285f 3d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.136502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.136504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.136505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.136510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.136512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.136513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.136514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.136515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.136516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.146475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.146478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.146487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.146489 LLDP, length 82 [|LLDP] 19:52:18.146491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.146501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.146503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.146520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.146521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2866 de2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.146522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.146523 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.146524 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.146525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.146526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.146527 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.156467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.156469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.156479 LLDP, length 82 [|LLDP] 19:52:18.156481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.156493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.156494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 286e 7f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.156496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.156497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.156498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.156504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.156506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.156507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.156508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.166461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.166463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.166470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.166471 LLDP, length 82 [|LLDP] 19:52:18.166473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.166483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.166494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.166495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2876 206e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.166496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.176460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.176461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.176467 LLDP, length 82 [|LLDP] 19:52:18.176469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.176478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.176479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 287d c18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.176480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.176481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.176485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.186470 LLDP, length 82 [|LLDP] 19:52:18.186472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.186482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.186483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.186494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.186497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.186498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2885 62ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.186499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.186501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.196471 LLDP, length 82 [|LLDP] 19:52:18.196473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.196487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.196488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 288d 03ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.196489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.196490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.196491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.196492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.196503 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.196505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.196506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.196512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.196514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.196515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.196516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.206458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.206460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.206467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.206468 LLDP, length 82 [|LLDP] 19:52:18.206470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.206478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.206480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.206494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.206495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2894 a4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.206496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.206497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.206498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.206499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.206500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.206501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.216491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.216494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.216508 LLDP, length 82 [|LLDP] 19:52:18.216511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.216524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.216525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 289c 460e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.216527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.216528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.216529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.216536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.216537 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.216538 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.216539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.216540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.216541 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.226461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.226463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.226471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.226473 LLDP, length 82 [|LLDP] 19:52:18.226475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.226484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.226485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.226498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.226499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28a3 e72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.226501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.226502 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.226503 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.226504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.226505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.226506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.236456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.236458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.236471 LLDP, length 82 [|LLDP] 19:52:18.236473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.236482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.236483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ab 884e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.236485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.236486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.236487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.236492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.236494 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.236495 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.236496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.236497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.236498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.246456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.246458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.246471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.246472 LLDP, length 82 [|LLDP] 19:52:18.246475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.246482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.246484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.246496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.246497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28b3 296e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.246498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.246499 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.246500 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.246501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.246502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.246503 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.256461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.256463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.256471 LLDP, length 82 [|LLDP] 19:52:18.256473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.256484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.256485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ba ca8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.256487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.256488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.256489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.256494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.256496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.256497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.256498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.266460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.266462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.266469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.266471 LLDP, length 82 [|LLDP] 19:52:18.266473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.266482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.266493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.266494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28c2 6bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.266495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.276467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.276469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.276477 LLDP, length 82 [|LLDP] 19:52:18.276479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.276488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.276489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ca 0cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.276491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.276492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.276495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.286464 LLDP, length 82 [|LLDP] 19:52:18.286466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.286475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.286476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.286484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.286487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.286487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28d1 adee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.286489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.286490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.296470 LLDP, length 82 [|LLDP] 19:52:18.296471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.296483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.296484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28d9 4f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.296485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.296486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.296487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.296488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.296498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.296499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.296500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.296506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.296507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.296508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.296509 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.306457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.306459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.306466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.306467 LLDP, length 82 [|LLDP] 19:52:18.306469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.306478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.306479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.306493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.306494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28e0 f02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.306495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.306496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.306497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.306498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.306499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.306500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.316458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.316461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.316474 LLDP, length 82 [|LLDP] 19:52:18.316477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.316485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.316486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28e8 914e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.316487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.316488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.316489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.316495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.316497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.316498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.316499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.316500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.316501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.326459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.326461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.326467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.326468 LLDP, length 82 [|LLDP] 19:52:18.326470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.326478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.326480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.326493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.326493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28f0 326e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.326495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.326496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.326497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.326498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.326499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.326499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.339209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.339211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.339217 LLDP, length 82 [|LLDP] 19:52:18.339219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.339229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.339230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28f7 d38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.339231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.339232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.339233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.339239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.339240 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.339241 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.339242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.339243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.339244 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.346465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.346467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.346474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.346475 LLDP, length 82 [|LLDP] 19:52:18.346477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.346486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.346487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.346501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.346501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ff 74ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.346503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.346504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.346505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.346506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.346507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.346508 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.356457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.356459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.356466 LLDP, length 82 [|LLDP] 19:52:18.356468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.356476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.356477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2907 15ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.356478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.356479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.356480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.356486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.356488 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.356489 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.356490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.366464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.366466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.366473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.366474 LLDP, length 82 [|LLDP] 19:52:18.366476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.366485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.366497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.366498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 290e b6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.366499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.376463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.376464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.376471 LLDP, length 82 [|LLDP] 19:52:18.376473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.376482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.376483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2916 580e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.376485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.376486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.376489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.386462 LLDP, length 82 [|LLDP] 19:52:18.386463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.386472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.386473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.386481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.386484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.386485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 291d f92e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.386486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.386488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.399812 LLDP, length 82 [|LLDP] 19:52:18.399814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.399825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.399826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2925 9a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.399828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.399829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.399830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.399831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.399840 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.399841 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.399843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.399848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.399850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.399851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.399851 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.406460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.406462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.406469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.406470 LLDP, length 82 [|LLDP] 19:52:18.406472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.406480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.406481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.406494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.406494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 292d 3b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.406496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.406497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.406498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.406499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.406500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.406501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.416459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.416461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.416468 LLDP, length 82 [|LLDP] 19:52:18.416469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.416479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.416480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2934 dc8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.416481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.416482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.416483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.416489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.416490 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.416491 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.416492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.416493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.416494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.426465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.426466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.426481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.426482 LLDP, length 82 [|LLDP] 19:52:18.426485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.426495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.426497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.426516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.426517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 293c 7dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.426519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.426520 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.426521 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.426522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.426523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.426524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.436478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.436480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.436491 LLDP, length 82 [|LLDP] 19:52:18.436493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.436505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.436506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2944 1ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.436508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.436509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.436510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.436516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.436518 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.436519 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.436520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.436521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.436522 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.446479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.446482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.446491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.446492 LLDP, length 82 [|LLDP] 19:52:18.446495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.446506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.446508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.446524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.446525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 294b bfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.446526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.446527 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.446528 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.446529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.446530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.446531 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.460422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.460425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.460435 LLDP, length 82 [|LLDP] 19:52:18.460437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.460449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.460450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2953 610e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.460452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.460453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.460454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.460460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.460462 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.460463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.460464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.466474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.466477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.466486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.466487 LLDP, length 82 [|LLDP] 19:52:18.466489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.466500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.466512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.466512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 295b 022e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.466514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.476471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.476473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.476481 LLDP, length 82 [|LLDP] 19:52:18.476483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.476494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.476494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2962 a34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.476496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.476497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.476500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.486470 LLDP, length 82 [|LLDP] 19:52:18.486472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.486482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.486483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.486493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.486495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.486496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 296a 446e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.486497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.486499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.496494 LLDP, length 82 [|LLDP] 19:52:18.496496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.496512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.496513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2971 e58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.496515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.496516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.496517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.496518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.496531 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.496533 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.496534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.496540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.496542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.496543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.496544 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.506470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.506472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.506481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.506482 LLDP, length 82 [|LLDP] 19:52:18.506485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.506493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.506494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.506509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.506509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2979 86ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.506511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.506512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.506513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.506514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.506515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.506516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.516483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.516485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.516495 LLDP, length 82 [|LLDP] 19:52:18.516497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.516511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.516512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2981 27ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.516514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.516515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.516516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.516523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.516524 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.516525 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.516526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.516527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.516528 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.526479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.526481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.526489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.526490 LLDP, length 82 [|LLDP] 19:52:18.526493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.526503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.526505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.526520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.526521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2988 c8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.526522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.526524 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.526525 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.526526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.526527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.526528 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.536475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.536477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.536485 LLDP, length 82 [|LLDP] 19:52:18.536487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.536500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.536500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2990 6a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.536502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.536503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.536504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.536510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.536512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.536513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.536514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.536515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.536516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.546475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.546477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.546486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.546487 LLDP, length 82 [|LLDP] 19:52:18.546489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.546500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.546501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.546517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.546518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2998 0b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.546519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.546520 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.546521 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.546522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.546523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.546524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.556472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.556474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.556483 LLDP, length 82 [|LLDP] 19:52:18.556485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.556496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.556497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 299f ac4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.556499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.556500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.556501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.556507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.556509 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.556510 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.556511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.566478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.566480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.566490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.566491 LLDP, length 82 [|LLDP] 19:52:18.566493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.566501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.566514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.566515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29a7 4d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.566516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.576478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.576480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.576489 LLDP, length 82 [|LLDP] 19:52:18.576490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.576501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.576502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29ae ee8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.576504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.576505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.576508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.586476 LLDP, length 82 [|LLDP] 19:52:18.586478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.586487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.586488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.586498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.586500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.586501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29b6 8fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.586503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.586504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.596476 LLDP, length 82 [|LLDP] 19:52:18.596478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.596493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.596493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29be 30ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.596495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.596496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.596497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.596498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.596508 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.596511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.596512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.596518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.596519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.596520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.596521 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.606477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.606479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.606489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.606490 LLDP, length 82 [|LLDP] 19:52:18.606493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.606503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.606504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.606520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.606521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29c5 d1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.606522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.606523 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.606524 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.606525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.606526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.606527 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.616470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.616473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.616488 LLDP, length 82 [|LLDP] 19:52:18.616490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.616501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.616502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29cd 730e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.616504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.616505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.616506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.616512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.616513 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.616514 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.616515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.616516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.616517 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.626473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.626475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.626483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.626484 LLDP, length 82 [|LLDP] 19:52:18.626486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.626495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.626496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.626510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.626511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29d5 142e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.626512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.626513 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.626514 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.626515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.626516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.626517 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.636475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.636477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.636485 LLDP, length 82 [|LLDP] 19:52:18.636487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.636499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.636500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29dc b54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.636501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.636502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.636503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.636509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.636510 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.636511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.636512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.636513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.636514 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.646486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.646488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.646497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.646498 LLDP, length 82 [|LLDP] 19:52:18.646500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.646513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.646515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.646531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.646533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29e4 566e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.646534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.646535 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.646536 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.646537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.646538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.646539 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.656474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.656476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.656485 LLDP, length 82 [|LLDP] 19:52:18.656487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.656500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.656502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29eb f78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.656503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.656504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.656505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.656511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.656512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.656513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.656514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.666488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.666490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.666499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.666500 LLDP, length 82 [|LLDP] 19:52:18.666503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.666513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.666526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.666526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29f3 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.666528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.676489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.676491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.676498 LLDP, length 82 [|LLDP] 19:52:18.676501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.676512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.676513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29fb 39ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.676514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.676515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.676518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.686486 LLDP, length 82 [|LLDP] 19:52:18.686488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.686496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.686497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.686508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.686510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.686511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a02 daee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.686513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.686514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.696475 LLDP, length 82 [|LLDP] 19:52:18.696477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.696491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.696492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a0a 7c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.696493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.696494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.696495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.696496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.696506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.696508 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.696509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.696514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.696516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.696517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.696518 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.706464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.706466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.706473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.706474 LLDP, length 82 [|LLDP] 19:52:18.706476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.706485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.706486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.706498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.706499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a12 1d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.706500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.706501 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.706502 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.706503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.706504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.706505 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.716464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.716466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.716479 LLDP, length 82 [|LLDP] 19:52:18.716481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.716491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.716492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a19 be4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.716493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.716494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.716495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.716501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.716502 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.716503 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.716504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.716505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.716506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.726461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.726463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.726469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.726470 LLDP, length 82 [|LLDP] 19:52:18.726472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.726480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.726481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.726492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.726493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a21 5f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.726494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.726495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.726496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.726497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.726499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.726499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.736460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.736462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.736474 LLDP, length 82 [|LLDP] 19:52:18.736476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.736485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.736486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a29 008e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.736488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.736489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.736490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.736495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.736497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.736498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.736499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.736500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.736501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.746463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.746465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.746479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.746480 LLDP, length 82 [|LLDP] 19:52:18.746483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.746490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.746492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.746504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.746505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a30 a1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.746507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.746507 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.746508 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.746509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.746510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.746511 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.756469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.756471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.756479 LLDP, length 82 [|LLDP] 19:52:18.756481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.756494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.756495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a38 42ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.756496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.756498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.756499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.756504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.756506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.756507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.756508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.766465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.766467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.766472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.766473 LLDP, length 82 [|LLDP] 19:52:18.766475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.766483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.766492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.766492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a3f e3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.766494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.776467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.776469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.776474 LLDP, length 82 [|LLDP] 19:52:18.776476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.776484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.776485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a47 850e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.776486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.776487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.776490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.786462 LLDP, length 82 [|LLDP] 19:52:18.786464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.786470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.786471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.786477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.786479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.786480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a4f 262e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.786482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.786483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.796468 LLDP, length 82 [|LLDP] 19:52:18.796470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.796479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.796480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a56 c74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.796481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.796482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.796484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.796485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.796493 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.796494 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.796496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.796501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.796502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.796503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.796504 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.806463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.806464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.806471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.806472 LLDP, length 82 [|LLDP] 19:52:18.806474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.806481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.806482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.806493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.806494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a5e 686e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.806496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.806497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.806498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.806499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.806500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.806501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.816461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.816463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.816476 LLDP, length 82 [|LLDP] 19:52:18.816477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.816487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.816488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a66 098e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.816489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.816490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.816491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.816497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.816499 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.816499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.816500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.816501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.816502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.826463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.826464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.826470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.826471 LLDP, length 82 [|LLDP] 19:52:18.826474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.826480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.826482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.826492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.826493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a6d aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.826495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.826496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.826497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.826498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.826499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.826500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.836463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.836465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.836477 LLDP, length 82 [|LLDP] 19:52:18.836479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.836487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.836488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a75 4bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.836489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.836490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.836491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.836496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.836498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.836499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.836500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.836501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.836502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.846460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.846463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.846476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.846477 LLDP, length 82 [|LLDP] 19:52:18.846479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.846487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.846489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.846500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.846501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a7c ecee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.846502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.846504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.846504 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.846505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.846506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.846507 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.856465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.856466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.856473 LLDP, length 82 [|LLDP] 19:52:18.856474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.856483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.856484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a84 8e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.856486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.856487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.856488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.856493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.856495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.856496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.856497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.866466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.866468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.866474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.866475 LLDP, length 82 [|LLDP] 19:52:18.866477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.866484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.866493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.866494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a8c 2f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.866495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.876465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.876467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.876473 LLDP, length 82 [|LLDP] 19:52:18.876474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.876483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.876483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a93 d04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.876485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.876486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.876489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.886469 LLDP, length 82 [|LLDP] 19:52:18.886470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.886477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.886478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.886484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.886487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.886488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a9b 716e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.886489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.886490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.896465 LLDP, length 82 [|LLDP] 19:52:18.896466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.896476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.896477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2aa3 128e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.896478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.896479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.896480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.896481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.896489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.896492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.896493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.896498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.896500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.896501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.896502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.906462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.906463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.906469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.906470 LLDP, length 82 [|LLDP] 19:52:18.906472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.906478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.906480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.906491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.906492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2aaa b3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.906493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.906494 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.906495 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.906496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.906497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.906498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.916464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.916465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.916470 LLDP, length 82 [|LLDP] 19:52:18.916472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.916480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.916481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ab2 54ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.916483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.916484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.916485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.916490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.916492 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.916493 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.916494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.916495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.916495 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.926463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.926465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.926471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.926472 LLDP, length 82 [|LLDP] 19:52:18.926474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.926480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.926482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.926493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.926493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ab9 f5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.926495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.926496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.926497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.926498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.926499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.926500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.936461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.936463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.936474 LLDP, length 82 [|LLDP] 19:52:18.936476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.936484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.936485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ac1 970e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.936486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.936487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.936488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.936493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.936495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.936496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.936497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.936498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.936499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.946463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.946465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.946470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.946471 LLDP, length 82 [|LLDP] 19:52:18.946474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.946480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.946482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.946493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.946493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ac9 382e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.946495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.946496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.946497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.946498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.946499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.946500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.956458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.956460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.956466 LLDP, length 82 [|LLDP] 19:52:18.956467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.956476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.956477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ad0 d94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.956478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.956479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.956480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.956485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.956487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.956488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.956489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.966466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.966468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.966473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.966475 LLDP, length 82 [|LLDP] 19:52:18.966477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.966485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.966493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.966494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ad8 7a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.966495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.976465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.976466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.976471 LLDP, length 82 [|LLDP] 19:52:18.976473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.976481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.976482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ae0 1b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.976483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.976484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.976487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.986482 LLDP, length 82 [|LLDP] 19:52:18.986484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.986494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.986495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.986496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.986510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.986513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.986514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ae7 bcae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.986515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.986517 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.986518 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.986519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.986520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.986521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.986522 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.996473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.996475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.996489 LLDP, length 82 [|LLDP] 19:52:18.996491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.996502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.996503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2aef 5dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.996505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.996506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.996507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.996512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.996514 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.996515 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.996516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.996517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.996517 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.006469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.006471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.006478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.006479 LLDP, length 82 [|LLDP] 19:52:19.006481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.006489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.006491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.006503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.006503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2af6 feee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.006505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.006506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.006507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.006508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.006509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.006509 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.016469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.016470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.016476 LLDP, length 82 [|LLDP] 19:52:19.016478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.016488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.016489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2afe a00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.016490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.016491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.016492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.016497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.016499 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.016500 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.016501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.016502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.016503 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.026466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.026467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.026472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.026473 LLDP, length 82 [|LLDP] 19:52:19.026475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.026483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.026484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.026495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.026496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b06 412e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.026497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.026498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.026499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.026500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.026501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.026502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.036465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.036467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.036472 LLDP, length 82 [|LLDP] 19:52:19.036474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.036482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.036482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b0d e24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.036484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.036485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.036486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.036491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.036492 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.036494 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.036494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.036495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.036496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.046457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.046459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.046470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.046471 LLDP, length 82 [|LLDP] 19:52:19.046473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.046480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.046481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.046492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.046493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b15 836e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.046494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.046495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.046496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.046497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.056471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.056473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.056479 LLDP, length 82 [|LLDP] 19:52:19.056481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.056489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.056490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b1d 248e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.056491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.056492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.056495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.066494 LLDP, length 82 [|LLDP] 19:52:19.066495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.066502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.066503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.066509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.066512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.066512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b24 c5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.066514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.066515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.076470 LLDP, length 82 [|LLDP] 19:52:19.076471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.076480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.076480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b2c 66ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.076482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.076483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.076484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.076489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.076491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.086468 LLDP, length 82 [|LLDP] 19:52:19.086470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.086476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.086477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.086478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.086487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.086490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.086490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b34 07ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.086492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.086493 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.086494 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.086495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.086496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.086497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.086498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.096467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.096469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.096476 LLDP, length 82 [|LLDP] 19:52:19.096478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.096487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.096488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b3b a90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.096490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.096501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.096502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.096508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.096510 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.096511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.096512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.096513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.096513 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.106492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.106494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.106504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.106505 LLDP, length 82 [|LLDP] 19:52:19.106507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.106519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.106521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.106538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.106539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b43 4a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.106541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.106542 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.106543 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.106544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.106545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.106546 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.116471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.116474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.116481 LLDP, length 82 [|LLDP] 19:52:19.116483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.116493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.116494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b4a eb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.116495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.116496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.116497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.116503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.116504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.116505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.116506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.116507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.116508 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.126471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.126473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.126479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.126480 LLDP, length 82 [|LLDP] 19:52:19.126482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.126489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.126491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.126502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.126503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b52 8c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.126505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.126506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.126507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.126508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.126509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.126510 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.136478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.136480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.136494 LLDP, length 82 [|LLDP] 19:52:19.136496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.136507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.136508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b5a 2d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.136509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.136510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.136511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.136517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.136518 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.136519 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.136520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.136521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.136522 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.146462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.146470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.146476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.146477 LLDP, length 82 [|LLDP] 19:52:19.146479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.146486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.146487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.146499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.146499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b61 ceae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.146501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.146502 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.146503 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.146504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.156470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.156472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.156478 LLDP, length 82 [|LLDP] 19:52:19.156480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.156488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.156489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b69 6fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.156490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.156491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.156494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.166469 LLDP, length 82 [|LLDP] 19:52:19.166471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.166477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.166478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.166485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.166487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.166488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b71 10ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.166490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.166491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.176472 LLDP, length 82 [|LLDP] 19:52:19.176474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.176484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.176485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b78 b20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.176486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.176487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.176488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.176494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.176496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.186476 LLDP, length 82 [|LLDP] 19:52:19.186477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.186484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.186485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.186486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.186495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.186498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.186498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b80 532e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.186500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.186501 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.186502 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.186503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.186504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.186505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.186506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.196467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.196469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.196481 LLDP, length 82 [|LLDP] 19:52:19.196483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.196492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.196493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b87 f44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.196494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.196495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.196496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.196502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.196504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.196505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.196506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.196507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.196507 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.206466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.206468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.206480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.206481 LLDP, length 82 [|LLDP] 19:52:19.206483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.206490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.206492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.206502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.206503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b8f 956e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.206505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.206506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.206507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.206508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.206509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.206510 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.216467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.216469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.216481 LLDP, length 82 [|LLDP] 19:52:19.216482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.216490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.216491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b97 368e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.216492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.216493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.216494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.216500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.216501 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.216502 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.216503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.216504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.216505 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.226496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.226505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.226518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.226519 LLDP, length 82 [|LLDP] 19:52:19.226521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.226534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.226535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.226553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.226554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b9e d7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.226555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.226557 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.226558 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.226559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.226560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.226561 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.236476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.236478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.236486 LLDP, length 82 [|LLDP] 19:52:19.236488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.236498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.236499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ba6 78ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.236500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.236502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.236503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.236508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.236510 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.236511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.236512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.236513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.236513 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.249056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.249058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.249068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.249069 LLDP, length 82 [|LLDP] 19:52:19.249072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.249081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.249083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.249099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.249100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2bae 19ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.249101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.249102 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.249103 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.249104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 14232 packets captured 14247 packets received by filter 0 packets dropped by kernel 2 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra1 with rc 0 and out 19:52:08.326339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.326341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.326351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.326352 LLDP, length 82 [|LLDP] 19:52:08.326355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.326369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.326370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.326389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.326390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b22 cd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.326392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.326392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.326393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.326394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.326395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.326396 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.336314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.336316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.336324 LLDP, length 82 [|LLDP] 19:52:08.336326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.336339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.336340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b2a 6e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.336341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.336342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.336343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.336349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.336351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.336352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.336353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.336353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.336354 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.346308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.346310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.346318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.346319 LLDP, length 82 [|LLDP] 19:52:08.346321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.346331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.346332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.346346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.346347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b32 0fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.346348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.346349 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.346350 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.346352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.346353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.346354 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.356306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.356308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.356315 LLDP, length 82 [|LLDP] 19:52:08.356317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.356328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.356329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b39 b0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.356330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.356331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.356332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.356338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.356339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.356340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.356341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.356342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.356343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.366305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.366307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.366315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.366316 LLDP, length 82 [|LLDP] 19:52:08.366318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.366328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.366330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.366344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.366345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b41 51ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.366346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.366347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.366348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.366349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.366350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.366351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.376299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.376301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.376308 LLDP, length 82 [|LLDP] 19:52:08.376310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.376321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.376322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b48 f30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.376324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.376325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.376326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.376331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.376333 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.376334 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.376335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.386331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.386333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.386340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.386342 LLDP, length 82 [|LLDP] 19:52:08.386344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.386353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.386364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.386365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b50 942e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.386367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.396312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.396314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.396321 LLDP, length 82 [|LLDP] 19:52:08.396323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.396334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.396335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b58 354e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.396336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.396337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.396340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.406329 LLDP, length 82 [|LLDP] 19:52:08.406331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.406340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.406341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.406349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.406351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.406352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b5f d66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.406353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.406355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.416309 LLDP, length 82 [|LLDP] 19:52:08.416311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.416324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.416324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b67 778e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.416326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.416327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.416328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.416329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.416338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.416339 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.416340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.416346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.416347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.416348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.416349 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.426305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.426307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.426315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.426316 LLDP, length 82 [|LLDP] 19:52:08.426319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.426328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.426330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.426344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.426344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b6f 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.426346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.426347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.426348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.426349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.426350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.426351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.436306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.436308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.436315 LLDP, length 82 [|LLDP] 19:52:08.436317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.436328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.436329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b76 b9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.436331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.436331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.436332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.436338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.436339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.436341 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.436342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.436342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.436343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.446306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.446308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.446315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.446317 LLDP, length 82 [|LLDP] 19:52:08.446319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.446329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.446330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.446344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.446345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b7e 5aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.446346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.446347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.446348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.446349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.446350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.446351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.456309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.456311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.456318 LLDP, length 82 [|LLDP] 19:52:08.456320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.456331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.456332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b85 fc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.456333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.456334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.456335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.456341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.456342 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.456343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.456344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.456345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.456346 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.466304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.466306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.466313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.466314 LLDP, length 82 [|LLDP] 19:52:08.466316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.466325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.466327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.466340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.466341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b8d 9d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.466342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.466343 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.466344 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.466345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.466346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.466347 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.476302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.476304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.476312 LLDP, length 82 [|LLDP] 19:52:08.476314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.476324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.476325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b95 3e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.476326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.476327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.476328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.476334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.476335 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.476336 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.476337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.486291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.486293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.486301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.486302 LLDP, length 82 [|LLDP] 19:52:08.486304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.486313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.486325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.486325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0b9c df6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.486327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.496316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.496318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.496326 LLDP, length 82 [|LLDP] 19:52:08.496328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.496338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.496339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ba4 808e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.496340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.496341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.496344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.506339 LLDP, length 82 [|LLDP] 19:52:08.506341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.506349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.506350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.506359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.506362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.506363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bac 21ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.506364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.506365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.516310 LLDP, length 82 [|LLDP] 19:52:08.516312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.516324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.516325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bb3 c2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.516326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.516327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.516328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.516329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.516338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.516340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.516341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.516346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.516348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.516349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.516350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.526306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.526308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.526316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.526317 LLDP, length 82 [|LLDP] 19:52:08.526319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.526328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.526330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.526343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.526344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bbb 63ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.526345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.526346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.526347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.526348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.526349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.526350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.536308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.536310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.536318 LLDP, length 82 [|LLDP] 19:52:08.536320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.536330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.536331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bc3 050e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.536332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.536333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.536334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.536340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.536341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.536342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.536343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.536344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.536345 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.546307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.546309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.546323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.546324 LLDP, length 82 [|LLDP] 19:52:08.546326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.546335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.546337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.546350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.546351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bca a62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.546352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.546353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.546354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.546355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.546356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.546357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.556308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.556310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.556317 LLDP, length 82 [|LLDP] 19:52:08.556319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.556330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.556331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bd2 474e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.556333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.556334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.556335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.556340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.556342 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.556343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.556344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.556345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.556346 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.566307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.566309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.566317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.566318 LLDP, length 82 [|LLDP] 19:52:08.566320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.566328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.566329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.566343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.566344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bd9 e86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.566345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.566346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.566347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.566348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.566349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.566350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.576301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.576303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.576310 LLDP, length 82 [|LLDP] 19:52:08.576312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.576321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.576322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0be1 898e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.576324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.576324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.576325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.576331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.576333 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.576334 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.576335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.586334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.586336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.586344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.586345 LLDP, length 82 [|LLDP] 19:52:08.586347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.586357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.586368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.586369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0be9 2aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.586370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.596293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.596295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.596302 LLDP, length 82 [|LLDP] 19:52:08.596304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.596314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.596314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bf0 cbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.596316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.596317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.596320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.606317 LLDP, length 82 [|LLDP] 19:52:08.606319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.606327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.606328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.606336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.606338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.606339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0bf8 6cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.606341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.606342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.616312 LLDP, length 82 [|LLDP] 19:52:08.616313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.616326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.616327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c00 0e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.616328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.616329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.616330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.616331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.616341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.616342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.616343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.616349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.616351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.616352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.616353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.626308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.626310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.626317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.626318 LLDP, length 82 [|LLDP] 19:52:08.626320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.626329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.626330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.626343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.626344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c07 af2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.626345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.626346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.626347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.626348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.626349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.626350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.636310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.636312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.636321 LLDP, length 82 [|LLDP] 19:52:08.636323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.636333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.636334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c0f 504e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.636336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.636336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.636337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.636343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.636344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.636345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.636346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.636347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.636348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.646309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.646311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.646318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.646319 LLDP, length 82 [|LLDP] 19:52:08.646321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.646331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.646333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.646346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.646348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c16 f16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.646349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.646350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.646351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.646352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.646352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.646353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.656309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.656311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.656318 LLDP, length 82 [|LLDP] 19:52:08.656320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.656330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.656331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c1e 928e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.656333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.656334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.656335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.656340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.656342 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.656343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.656344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.656345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.656345 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.666307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.666309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.666316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.666317 LLDP, length 82 [|LLDP] 19:52:08.666319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.666328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.666329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.666343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.666343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c26 33ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.666345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.666346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.666347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.666348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.666349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.666350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.676303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.676305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.676312 LLDP, length 82 [|LLDP] 19:52:08.676314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.676325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.676326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c2d d4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.676327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.676328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.676329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.676334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.676336 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.676337 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.676338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.686318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.686320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.686327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.686328 LLDP, length 82 [|LLDP] 19:52:08.686331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.686341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.686352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.686352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c35 75ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.686354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.696318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.696320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.696328 LLDP, length 82 [|LLDP] 19:52:08.696330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.696340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.696341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c3d 170e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.696342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.696343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.696346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.706292 LLDP, length 82 [|LLDP] 19:52:08.706294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.706301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.706303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.706311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.706313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.706314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c44 b82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.706316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.706317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.716315 LLDP, length 82 [|LLDP] 19:52:08.716317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.716331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.716332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c4c 594e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.716333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.716334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.716335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.716336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.716345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.716346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.716347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.716353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.716354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.716355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.716356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.726310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.726312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.726320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.726321 LLDP, length 82 [|LLDP] 19:52:08.726323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.726332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.726334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.726347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.726348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c53 fa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.726349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.726350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.726351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.726353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.726354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.726355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.736311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.736313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.736321 LLDP, length 82 [|LLDP] 19:52:08.736322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.736333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.736334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c5b 9b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.736335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.736337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.736337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.736343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.736344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.736345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.736346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.736347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.736348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.746323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.746325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.746335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.746336 LLDP, length 82 [|LLDP] 19:52:08.746338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.746349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.746351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.746366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.746368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c63 3cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.746369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.746370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.746371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.746372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.746373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.746374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.756317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.756319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.756326 LLDP, length 82 [|LLDP] 19:52:08.756328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.756340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.756341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c6a ddce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.756342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.756344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.756345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.756350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.756352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.756353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.756354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.756355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.756356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.766311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.766313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.766321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.766322 LLDP, length 82 [|LLDP] 19:52:08.766324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.766334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.766336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.766349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.766351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c72 7eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.766352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.766353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.766354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.766355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.766356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.766356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.776307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.776309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.776316 LLDP, length 82 [|LLDP] 19:52:08.776318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.776329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.776330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c7a 200e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.776331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.776332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.776333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.776339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.776341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.776342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.776343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.786338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.786340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.786347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.786348 LLDP, length 82 [|LLDP] 19:52:08.786351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.786360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.786371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.786372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c81 c12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.786374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.796337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.796339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.796347 LLDP, length 82 [|LLDP] 19:52:08.796348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.796360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.796361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c89 624e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.796363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.796363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.796366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.806343 LLDP, length 82 [|LLDP] 19:52:08.806345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.806354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.806355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.806364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.806366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.806367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c91 036e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.806368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.806370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.816314 LLDP, length 82 [|LLDP] 19:52:08.816315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.816332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.816333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0c98 a48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.816334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.816335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.816336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.816337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.816347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.816349 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.816350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.816355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.816357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.816358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.816358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.826312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.826314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.826321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.826322 LLDP, length 82 [|LLDP] 19:52:08.826324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.826333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.826334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.826349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.826350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ca0 45ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.826351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.826352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.826353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.826354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.826355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.826356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.836313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.836315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.836322 LLDP, length 82 [|LLDP] 19:52:08.836324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.836335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.836335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ca7 e6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.836337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.836338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.836339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.836344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.836346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.836347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.836348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.836349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.836350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.846311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.846313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.846320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.846321 LLDP, length 82 [|LLDP] 19:52:08.846324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.846332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.846334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.846347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.846348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0caf 87ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.846350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.846351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.846352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.846352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.846353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.846355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.856312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.856314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.856321 LLDP, length 82 [|LLDP] 19:52:08.856323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.856333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.856334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cb7 290e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.856336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.856336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.856337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.856343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.856345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.856345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.856346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.856347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.856348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.866314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.866316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.866323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.866324 LLDP, length 82 [|LLDP] 19:52:08.866326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.866335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.866336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.866349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.866350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cbe ca2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.866352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.866353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.866353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.866355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.866356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.866357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.876311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.876313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.876320 LLDP, length 82 [|LLDP] 19:52:08.876321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.876333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.876333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cc6 6b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.876335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.876336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.876337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.876343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.876345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.876346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.876347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.886338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.886340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.886347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.886348 LLDP, length 82 [|LLDP] 19:52:08.886350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.886360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.886371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.886372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cce 0c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.886373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.896321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.896323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.896330 LLDP, length 82 [|LLDP] 19:52:08.896332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.896341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.896342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cd5 ad8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.896344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.896345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.896347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.906339 LLDP, length 82 [|LLDP] 19:52:08.906341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.906349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.906350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.906358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.906361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.906361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cdd 4eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.906363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.906364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.916314 LLDP, length 82 [|LLDP] 19:52:08.916316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.916327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.916328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ce4 efce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.916329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.916330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.916331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.916332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.916341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.916343 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.916344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.916349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.916350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.916351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.916352 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.926314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.926315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.926322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.926323 LLDP, length 82 [|LLDP] 19:52:08.926325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.926335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.926337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.926351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.926351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cec 90ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.926353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.926354 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.926355 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.926356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.926357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.926358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.936319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.936321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.936328 LLDP, length 82 [|LLDP] 19:52:08.936330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.936341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.936341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cf4 320e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.936343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.936344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.936345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.936351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.936352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.936353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.936354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.936355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.936356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.946317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.946319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.946327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.946328 LLDP, length 82 [|LLDP] 19:52:08.946330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.946339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.946341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.946355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.946355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0cfb d32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.946357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.946358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.946359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.946360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.946361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.946362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.956315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.956317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.956324 LLDP, length 82 [|LLDP] 19:52:08.956326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.956336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.956337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d03 744e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.956339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.956340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.956341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.956347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.956349 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.956349 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.956351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.956352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.956353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.966312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.966314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.966321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.966322 LLDP, length 82 [|LLDP] 19:52:08.966324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.966332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.966334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.966347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.966348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d0b 156e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.966350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.966351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.966352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.966353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.966354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:08.966355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:08.976310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.976312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.976319 LLDP, length 82 [|LLDP] 19:52:08.976321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.976332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.976333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d12 b68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.976334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.976335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:08.976336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.976342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.976344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.976345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:08.976345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:08.986348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.986351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.986362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.986363 LLDP, length 82 [|LLDP] 19:52:08.986365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.986374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:08.986388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.986389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d1a 57ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.986390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.996348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:08.996350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.996358 LLDP, length 82 [|LLDP] 19:52:08.996360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:08.996371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:08.996373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d21 f8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:08.996374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:08.996375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:08.996378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.006339 LLDP, length 82 [|LLDP] 19:52:09.006341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.006349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.006350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.006360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.006362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.006363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d29 99ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.006365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.006366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.016326 LLDP, length 82 [|LLDP] 19:52:09.016327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.016341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.016342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d31 3b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.016344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.016345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.016346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.016346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.016362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.016365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.016365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.016372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.016374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.016375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.016375 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.026319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.026321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.026330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.026331 LLDP, length 82 [|LLDP] 19:52:09.026334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.026344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.026345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.026361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.026362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d38 dc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.026364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.026365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.026366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.026367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.026368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.026369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.036320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.036322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.036330 LLDP, length 82 [|LLDP] 19:52:09.036331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.036343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.036344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d40 7d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.036345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.036346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.036348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.036353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.036355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.036356 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.036357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.036358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.036359 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.046318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.046320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.046327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.046328 LLDP, length 82 [|LLDP] 19:52:09.046330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.046340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.046341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.046355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.046356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d48 1e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.046357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.046358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.046359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.046360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.046361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.046362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.056319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.056321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.056337 LLDP, length 82 [|LLDP] 19:52:09.056339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.056349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.056350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d4f bf8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.056351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.056352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.056353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.056359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.056361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.056362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.056363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.056364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.056365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.066319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.066321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.066328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.066329 LLDP, length 82 [|LLDP] 19:52:09.066332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.066342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.066343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.066358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.066358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d57 60ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.066360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.066361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.066362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.066363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.066364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.066365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.076311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.076313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.076320 LLDP, length 82 [|LLDP] 19:52:09.076322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.076333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.076334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d5f 01ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.076335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.076336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.076337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.076342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.076344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.076345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.076346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.086342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.086344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.086352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.086353 LLDP, length 82 [|LLDP] 19:52:09.086355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.086365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.086377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.086378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d66 a2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.086380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.096308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.096310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.096318 LLDP, length 82 [|LLDP] 19:52:09.096320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.096332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.096333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d6e 440e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.096334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.096335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.096338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.106344 LLDP, length 82 [|LLDP] 19:52:09.106346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.106355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.106356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.106364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.106366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.106367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d75 e52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.106369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.106371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.116329 LLDP, length 82 [|LLDP] 19:52:09.116331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.116351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.116352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d7d 864e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.116354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.116355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.116356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.116357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.116368 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.116370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.116371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.116376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.116378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.116379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.116380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.126332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.126334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.126345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.126346 LLDP, length 82 [|LLDP] 19:52:09.126348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.126359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.126360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.126378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.126379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d85 276e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.126380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.126381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.126382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.126383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.126384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.126385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.136319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.136321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.136335 LLDP, length 82 [|LLDP] 19:52:09.136337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.136348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.136349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d8c c88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.136350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.136351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.136352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.136358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.136360 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.136361 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.136361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.136362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.136363 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.146315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.146317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.146324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.146325 LLDP, length 82 [|LLDP] 19:52:09.146328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.146337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.146338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.146352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.146353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d94 69ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.146354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.146355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.146356 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.146357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.146358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.146359 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.156336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.156338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.156348 LLDP, length 82 [|LLDP] 19:52:09.156350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.156362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.156363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0d9c 0ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.156365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.156366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.156367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.156373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.156375 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.156376 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.156377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.156378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.156379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.166324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.166326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.166335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.166335 LLDP, length 82 [|LLDP] 19:52:09.166338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.166347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.166349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.166364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.166365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0da3 abee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.166366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.166367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.166368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.166369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.166370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.166371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.176316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.176318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.176325 LLDP, length 82 [|LLDP] 19:52:09.176327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.176338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.176338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dab 4d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.176340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.176341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.176342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.176348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.176350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.176351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.176351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.186342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.186343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.186351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.186352 LLDP, length 82 [|LLDP] 19:52:09.186354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.186363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.186374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.186375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0db2 ee2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.186377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.196342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.196344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.196351 LLDP, length 82 [|LLDP] 19:52:09.196353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.196364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.196365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dba 8f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.196366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.196367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.196370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.206341 LLDP, length 82 [|LLDP] 19:52:09.206342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.206351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.206352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.206360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.206362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.206363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dc2 306e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.206365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.206366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.216326 LLDP, length 82 [|LLDP] 19:52:09.216328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.216341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.216342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dc9 d18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.216343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.216344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.216345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.216346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.216355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.216357 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.216358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.216364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.216366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.216367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.216367 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.226318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.226320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.226327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.226329 LLDP, length 82 [|LLDP] 19:52:09.226331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.226341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.226342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.226356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.226357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dd1 72ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.226358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.226359 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.226360 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.226361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.226362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.226363 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.236320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.236322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.236328 LLDP, length 82 [|LLDP] 19:52:09.236330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.236341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.236342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dd9 13ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.236343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.236344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.236345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.236351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.236352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.236353 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.236354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.236355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.236356 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.246319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.246321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.246329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.246330 LLDP, length 82 [|LLDP] 19:52:09.246332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.246341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.246342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.246356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.246357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0de0 b4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.246359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.246359 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.246360 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.246361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.246363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.246364 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.256322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.256324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.256331 LLDP, length 82 [|LLDP] 19:52:09.256333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.256344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.256345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0de8 560e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.256347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.256348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.256349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.256354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.256356 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.256357 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.256358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.256359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.256360 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.266319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.266321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.266328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.266329 LLDP, length 82 [|LLDP] 19:52:09.266331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.266340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.266341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.266355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.266356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0def f72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.266357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.266358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.266359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.266360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.266361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.266362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.276312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.276314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.276321 LLDP, length 82 [|LLDP] 19:52:09.276323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.276333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.276334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0df7 984e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.276336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.276336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.276337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.276343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.276344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.276346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.276347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.286344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.286346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.286352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.286353 LLDP, length 82 [|LLDP] 19:52:09.286356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.286365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.286376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.286377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0dff 396e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.286378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.296345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.296347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.296354 LLDP, length 82 [|LLDP] 19:52:09.296356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.296366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.296367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e06 da8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.296368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.296369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.296386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.306370 LLDP, length 82 [|LLDP] 19:52:09.306372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.306384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.306385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.306397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.306400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.306401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e0e 7bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.306402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.306404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.316338 LLDP, length 82 [|LLDP] 19:52:09.316340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.316353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.316354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e16 1cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.316356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.316357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.316358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.316359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.316369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.316371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.316372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.316378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.316380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.316381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.316382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.326332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.326334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.326343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.326344 LLDP, length 82 [|LLDP] 19:52:09.326347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.326352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.326353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.326368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.326369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e1d bdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.326371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.326371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.326372 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.326373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.326374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.326376 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.336316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.336318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.336324 LLDP, length 82 [|LLDP] 19:52:09.336326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.336337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.336337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e25 5f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.336339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.336340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.336341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.336346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.336347 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.336348 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.336349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.336350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.336351 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.346311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.346312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.346317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.346318 LLDP, length 82 [|LLDP] 19:52:09.346321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.346323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.346324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.346336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.346337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e2d 002e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.346338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.346339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.346340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.346341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.346342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.346343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.356312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.356313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.356317 LLDP, length 82 [|LLDP] 19:52:09.356319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.356323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.356323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e34 a14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.356325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.356326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.356327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.356332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.356333 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.356334 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.356335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.356336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.356337 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.366311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.366312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.366317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.366318 LLDP, length 82 [|LLDP] 19:52:09.366320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.366328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.366330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.366341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.366342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e3c 426e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.366343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.366344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.366345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.366346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.366347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.366348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.376305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.376306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.376310 LLDP, length 82 [|LLDP] 19:52:09.376312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.376316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.376316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e43 e38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.376318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.376319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.376320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.376325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.376327 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.376328 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.376328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.386296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.386297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.386308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.386309 LLDP, length 82 [|LLDP] 19:52:09.386311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.386314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.386323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.386323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e4b 84ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.386325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.396329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.396330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.396334 LLDP, length 82 [|LLDP] 19:52:09.396336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.396339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.396340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e53 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.396342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.396343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.396346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.406338 LLDP, length 82 [|LLDP] 19:52:09.406339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.406341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.406342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.406347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.406350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.406350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e5a c6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.406352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.406353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.416314 LLDP, length 82 [|LLDP] 19:52:09.416315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.416319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.416320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e62 680e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.416321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.416322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.416323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.416324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.416331 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.416332 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.416334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.416338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.416340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.416341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.416342 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.426309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.426311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.426322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.426323 LLDP, length 82 [|LLDP] 19:52:09.426325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.426328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.426329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.426342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.426343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e6a 092e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.426344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.426345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.426346 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.426347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.426348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.426349 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.436319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.436320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.436325 LLDP, length 82 [|LLDP] 19:52:09.436327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.436330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.436331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e71 aa4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.436332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.436333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.436335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.436340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.436341 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.436342 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.436343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.436344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.436345 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.446314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.446316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.446322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.446323 LLDP, length 82 [|LLDP] 19:52:09.446325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.446328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.446329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.446342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.446343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e79 4b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.446344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.446345 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.446347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.446348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.446349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.446350 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.456313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.456314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.456320 LLDP, length 82 [|LLDP] 19:52:09.456321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.456325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.456326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e80 ec8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.456327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.456328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.456329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.456334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.456336 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.456337 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.456338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.456339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.456340 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.466313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.466315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.466320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.466320 LLDP, length 82 [|LLDP] 19:52:09.466323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.466325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.466326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.466336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.466337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e88 8dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.466338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.466339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.466340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.466341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.466342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.466343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.476307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.476308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.476312 LLDP, length 82 [|LLDP] 19:52:09.476314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.476318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.476319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e90 2ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.476320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.476321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.476322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.476327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.476329 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.476330 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.476331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.486299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.486300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.486305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.486306 LLDP, length 82 [|LLDP] 19:52:09.486308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.486311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.486318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.486319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e97 cfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.486320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.496321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.496322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.496327 LLDP, length 82 [|LLDP] 19:52:09.496328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.496332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.496333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0e9f 710e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.496335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.496336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.496339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.506298 LLDP, length 82 [|LLDP] 19:52:09.506299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.506302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.506303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.506308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.506310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.506311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ea7 122e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.506313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.506314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.516314 LLDP, length 82 [|LLDP] 19:52:09.516315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.516326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.516327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0eae b34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.516328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.516329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.516330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.516331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.516338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.516340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.516341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.516345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.516347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.516348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.516348 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.526312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.526313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.526325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.526326 LLDP, length 82 [|LLDP] 19:52:09.526328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.526330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.526332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.526342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.526343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0eb6 546e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.526345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.526346 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.526347 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.526347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.526348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.526349 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.536316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.536317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.536322 LLDP, length 82 [|LLDP] 19:52:09.536323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.536327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.536328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ebd f58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.536329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.536330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.536331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.536336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.536338 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.536339 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.536340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.536341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.536341 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.546312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.546314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.546318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.546320 LLDP, length 82 [|LLDP] 19:52:09.546322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.546324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.546325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.546336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.546336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ec5 96ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.546338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.546339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.546340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.546341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.546342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.546343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.556314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.556315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.556327 LLDP, length 82 [|LLDP] 19:52:09.556329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.556332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.556333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ecd 37ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.556335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.556336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.556337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.556342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.556344 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.556345 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.556346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.556347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.556347 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.566312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.566313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.566318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.566319 LLDP, length 82 [|LLDP] 19:52:09.566321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.566324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.566325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.566336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.566336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ed4 d8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.566338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.566339 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.566340 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.566341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.566342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.566343 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.576356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.576360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.576373 LLDP, length 82 [|LLDP] 19:52:09.576375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.576389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.576390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0edc 7a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.576391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.576392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.576393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.576400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.576402 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.576403 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.576404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.586341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.586344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.586354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.586355 LLDP, length 82 [|LLDP] 19:52:09.586358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.586369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.586383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.586384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ee4 1b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.586386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.596340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.596342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.596352 LLDP, length 82 [|LLDP] 19:52:09.596353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.596365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.596366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0eeb bc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.596368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.596368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.596371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.606321 LLDP, length 82 [|LLDP] 19:52:09.606322 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.606333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.606334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.606344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.606347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.606348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ef3 5d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.606350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.606351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.616335 LLDP, length 82 [|LLDP] 19:52:09.616337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.616351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.616352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0efa fe8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.616353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.616354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.616356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.616357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.616367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.616369 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.616370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.616376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.616378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.616379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.616380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.626333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.626335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.626344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.626345 LLDP, length 82 [|LLDP] 19:52:09.626348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.626358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.626360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.626375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.626376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f02 9fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.626377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.626378 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.626379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.626380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.626381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.626382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.636337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.636339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.636348 LLDP, length 82 [|LLDP] 19:52:09.636350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.636361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.636362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f0a 40ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.636364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.636365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.636366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.636372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.636374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.636375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.636376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.636377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.636378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.646335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.646337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.646347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.646348 LLDP, length 82 [|LLDP] 19:52:09.646350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.646360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.646362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.646377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.646378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f11 e1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.646379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.646380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.646381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.646382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.646383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.646384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.656338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.656341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.656351 LLDP, length 82 [|LLDP] 19:52:09.656353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.656365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.656366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f19 830e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.656368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.656369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.656370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.656377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.656379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.656380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.656381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.656382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.656383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.666339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.666341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.666351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.666352 LLDP, length 82 [|LLDP] 19:52:09.666354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.666365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.666366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.666381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.666382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f21 242e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.666383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.666384 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.666385 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.666386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.666387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.666388 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.676328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.676331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.676339 LLDP, length 82 [|LLDP] 19:52:09.676341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.676353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.676354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f28 c54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.676355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.676356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.676357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.676363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.676365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.676366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.676367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.686347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.686349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.686358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.686359 LLDP, length 82 [|LLDP] 19:52:09.686362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.686373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.686384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.686385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f30 666e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.686386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.696336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.696338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.696347 LLDP, length 82 [|LLDP] 19:52:09.696349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.696361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.696362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f38 078e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.696363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.696365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.696368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.706336 LLDP, length 82 [|LLDP] 19:52:09.706338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.706348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.706349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.706360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.706362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.706363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f3f a8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.706365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.706366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.716337 LLDP, length 82 [|LLDP] 19:52:09.716339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.716353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.716354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f47 49ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.716355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.716356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.716357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.716358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.716368 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.716370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.716371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.716377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.716378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.716379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.716380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.726341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.726342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.726352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.726353 LLDP, length 82 [|LLDP] 19:52:09.726355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.726366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.726368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.726382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.726383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f4e eaee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.726385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.726386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.726387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.726388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.726389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.726390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.736333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.736334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.736342 LLDP, length 82 [|LLDP] 19:52:09.736345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.736355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.736356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f56 8c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.736357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.736358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.736359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.736365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.736367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.736368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.736369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.736369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.736370 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.746334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.746335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.746351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.746352 LLDP, length 82 [|LLDP] 19:52:09.746354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.746364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.746366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.746381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.746382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f5e 2d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.746383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.746384 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.746385 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.746386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.746387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.746388 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.756343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.756346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.756356 LLDP, length 82 [|LLDP] 19:52:09.756358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.756370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.756371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f65 ce4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.756372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.756373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.756374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.756381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.756382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.756383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.756384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.756385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.756386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.766339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.766341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.766350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.766350 LLDP, length 82 [|LLDP] 19:52:09.766353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.766363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.766364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.766379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.766380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f6d 6f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.766381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.766382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.766383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.766384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.766385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.766386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.776341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.776344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.776355 LLDP, length 82 [|LLDP] 19:52:09.776357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.776371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.776371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f75 108e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.776373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.776374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.776375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.776382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.776383 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.776384 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.776385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.786353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.786355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.786364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.786365 LLDP, length 82 [|LLDP] 19:52:09.786368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.786380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.786393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.786394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f7c b1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.786396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.796322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.796324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.796333 LLDP, length 82 [|LLDP] 19:52:09.796335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.796346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.796347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f84 52ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.796348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.796350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.796352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.806327 LLDP, length 82 [|LLDP] 19:52:09.806329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.806341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.806342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.806354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.806357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.806358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f8b f3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.806359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.806360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.816340 LLDP, length 82 [|LLDP] 19:52:09.816341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.816355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.816356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f93 950e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.816358 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.816359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.816360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.816361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.816371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.816373 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.816374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.816380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.816382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.816383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.816384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.826326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.826328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.826334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.826335 LLDP, length 82 [|LLDP] 19:52:09.826337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.826345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.826347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.826358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.826359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0f9b 362e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.826361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.826362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.826363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.826364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.826365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.826365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.836326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.836328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.836334 LLDP, length 82 [|LLDP] 19:52:09.836336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.836346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.836347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fa2 d74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.836349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.836350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.836351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.836356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.836358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.836359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.836360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.836361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.836362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.846326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.846328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.846341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.846342 LLDP, length 82 [|LLDP] 19:52:09.846344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.846351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.846353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.846364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.846365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0faa 786e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.846366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.846367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.846368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.846369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.846370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.846371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.856322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.856324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.856330 LLDP, length 82 [|LLDP] 19:52:09.856332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.856341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.856342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fb2 198e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.856343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.856344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.856345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.856351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.856353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.856354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.856355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.856356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.856357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.866321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.866323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.866331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.866331 LLDP, length 82 [|LLDP] 19:52:09.866334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.866341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.866342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.866354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.866355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fb9 baae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.866356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.866357 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.866358 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.866359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.866360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.866362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.876317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.876319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.876326 LLDP, length 82 [|LLDP] 19:52:09.876327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.876336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.876337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fc1 5bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.876339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.876340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.876341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.876346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.876348 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.876349 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.876350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.886337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.886338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.886344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.886345 LLDP, length 82 [|LLDP] 19:52:09.886347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.886355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.886363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.886364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fc8 fcee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.886365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.896309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.896310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.896316 LLDP, length 82 [|LLDP] 19:52:09.896317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.896331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.896332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fd0 9e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.896334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.896335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.896337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.906326 LLDP, length 82 [|LLDP] 19:52:09.906328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.906334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.906335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.906342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.906344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.906345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fd8 3f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.906347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.906348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.916323 LLDP, length 82 [|LLDP] 19:52:09.916324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.916339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.916340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fdf e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.916341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.916342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.916343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.916344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.916352 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.916354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.916355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.916360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.916362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.916363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.916364 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.926321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.926323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.926329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.926330 LLDP, length 82 [|LLDP] 19:52:09.926332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.926338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.926340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.926351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.926352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fe7 816e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.926353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.926354 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.926355 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.926356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.926357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.926358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.936321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.936323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.936328 LLDP, length 82 [|LLDP] 19:52:09.936330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.936338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.936339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0fef 228e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.936340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.936341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.936343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.936348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.936350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.936351 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.936352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.936353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.936353 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.946324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.946325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.946331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.946332 LLDP, length 82 [|LLDP] 19:52:09.946335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.946341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.946343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.946355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.946356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ff6 c3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.946357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.946358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.946359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.946360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.946361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.946362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.956324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.956326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.956332 LLDP, length 82 [|LLDP] 19:52:09.956334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.956343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.956343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 0ffe 64ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.956345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.956346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.956347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.956352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.956353 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.956354 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.956355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.956356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.956357 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.966322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.966324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.966337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.966338 LLDP, length 82 [|LLDP] 19:52:09.966340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.966347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.966348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.966360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.966360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1006 05ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.966362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.966363 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.966364 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.966365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.966366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:09.966367 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:09.976320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.976322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.976330 LLDP, length 82 [|LLDP] 19:52:09.976332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.976340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.976340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 100d a70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.976342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.976343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:09.976344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.976350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.976351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.976352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:09.976353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:09.986371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.986373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.986379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.986380 LLDP, length 82 [|LLDP] 19:52:09.986382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.986389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:09.986398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.986399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1015 482e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.986400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.996340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:09.996341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.996347 LLDP, length 82 [|LLDP] 19:52:09.996349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:09.996356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:09.996357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 101c e94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:09.996359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:09.996360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:09.996362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.006308 LLDP, length 82 [|LLDP] 19:52:10.006309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.006315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.006316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.006323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.006325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.006326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1024 8a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.006327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.006328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.016327 LLDP, length 82 [|LLDP] 19:52:10.016328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.016337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.016338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 102c 2b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.016340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.016340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.016341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.016342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.016350 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.016352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.016353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.016358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.016360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.016361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.016362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.026324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.026326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.026338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.026339 LLDP, length 82 [|LLDP] 19:52:10.026341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.026348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.026350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.026360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.026361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1033 ccae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.026363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.026364 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.026365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.026366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.026367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.026368 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.036323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.036325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.036330 LLDP, length 82 [|LLDP] 19:52:10.036332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.036340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.036341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 103b 6dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.036342 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.036343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.036344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.036350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.036351 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.036352 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.036353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.036354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.036355 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.046326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.046327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.046340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.046341 LLDP, length 82 [|LLDP] 19:52:10.046343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.046351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.046352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.046364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.046365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1043 0eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.046366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.046367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.046368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.046369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.046370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.046371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.056326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.056327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.056333 LLDP, length 82 [|LLDP] 19:52:10.056334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.056343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.056344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 104a b00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.056345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.056346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.056347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.056352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.056354 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.056355 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.056356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.056357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.056358 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.066325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.066327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.066333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.066334 LLDP, length 82 [|LLDP] 19:52:10.066336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.066343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.066344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.066355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.066355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1052 512e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.066357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.066358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.066359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.066360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.066361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.066362 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.076320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.076321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.076334 LLDP, length 82 [|LLDP] 19:52:10.076336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.076344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.076345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1059 f24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.076346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.076348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.076348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.076354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.076356 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.076357 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.076358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.086331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.086332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.086338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.086339 LLDP, length 82 [|LLDP] 19:52:10.086341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.086348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.086357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.086357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1061 936e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.086359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.096332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.096333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.096338 LLDP, length 82 [|LLDP] 19:52:10.096340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.096348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.096348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1069 348e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.096350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.096351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.096354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.106310 LLDP, length 82 [|LLDP] 19:52:10.106312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.106318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.106319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.106326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.106328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.106329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1070 d5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.106330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.106332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.116328 LLDP, length 82 [|LLDP] 19:52:10.116329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.116343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.116343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1078 76ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.116345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.116346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.116347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.116348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.116356 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.116358 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.116359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.116364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.116366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.116367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.116368 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.126327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.126329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.126336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.126337 LLDP, length 82 [|LLDP] 19:52:10.126339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.126346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.126348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.126360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.126361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1080 17ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.126363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.126364 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.126365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.126366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.126367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.126369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.136329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.136331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.136337 LLDP, length 82 [|LLDP] 19:52:10.136338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.136347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.136347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1087 b90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.136349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.136350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.136351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.136356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.136358 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.136359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.136359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.136360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.136361 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.146326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.146328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.146340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.146341 LLDP, length 82 [|LLDP] 19:52:10.146343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.146350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.146351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.146362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.146363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 108f 5a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.146364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.146365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.146366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.146367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.146368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.146369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.156331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.156333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.156340 LLDP, length 82 [|LLDP] 19:52:10.156341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.156351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.156351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1096 fb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.156353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.156354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.156355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.156360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.156362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.156363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.156364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.156365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.156366 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.166326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.166328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.166334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.166335 LLDP, length 82 [|LLDP] 19:52:10.166337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.166345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.166346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.166358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.166359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 109e 9c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.166360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.166361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.166362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.166363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.166364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.166365 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.176327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.176329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.176336 LLDP, length 82 [|LLDP] 19:52:10.176338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.176347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.176348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10a6 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.176350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.176351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.176352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.176358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.176359 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.176360 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.176361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.186340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.186342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.186348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.186349 LLDP, length 82 [|LLDP] 19:52:10.186352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.186359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.186369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.186370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10ad deae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.186371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.196350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.196351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.196357 LLDP, length 82 [|LLDP] 19:52:10.196359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.196367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.196367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10b5 7fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.196369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.196370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.196373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.206331 LLDP, length 82 [|LLDP] 19:52:10.206332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.206339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.206340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.206346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.206349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.206349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10bd 20ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.206351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.206353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.216329 LLDP, length 82 [|LLDP] 19:52:10.216330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.216344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.216344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10c4 c20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.216346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.216347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.216348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.216349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.216357 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.216359 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.216360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.216366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.216367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.216368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.216369 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.226327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.226328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.226341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.226342 LLDP, length 82 [|LLDP] 19:52:10.226344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.226351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.226352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.226364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.226365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10cc 632e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.226366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.226367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.226368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.226369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.226370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.226371 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.236327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.236328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.236334 LLDP, length 82 [|LLDP] 19:52:10.236335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.236343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.236344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10d4 044e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.236345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.236347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.236348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.236353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.236355 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.236356 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.236357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.236358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.236359 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.246324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.246325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.246337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.246338 LLDP, length 82 [|LLDP] 19:52:10.246341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.246347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.246348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.246359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.246359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10db a56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.246361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.246362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.246363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.246364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.246365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.246366 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.256334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.256336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.256350 LLDP, length 82 [|LLDP] 19:52:10.256352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.256362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.256363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10e3 468e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.256365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.256366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.256367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.256373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.256375 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.256376 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.256377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.256378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.256379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.266351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.266353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.266370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.266372 LLDP, length 82 [|LLDP] 19:52:10.266374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.266385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.266386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.266400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.266401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10ea e7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.266403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.266403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.266404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.266405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.266406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.266407 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.276326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.276328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.276334 LLDP, length 82 [|LLDP] 19:52:10.276336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.276345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.276357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10f2 88ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.276359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.276361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.276362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.276368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.276370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.276371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.276372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.286372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.286374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.286385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.286386 LLDP, length 82 [|LLDP] 19:52:10.286389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.286402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.286417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.286418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 10fa 29ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.286419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.296351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.296353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.296360 LLDP, length 82 [|LLDP] 19:52:10.296362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.296373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.296374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1101 cb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.296375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.296376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.296379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.306357 LLDP, length 82 [|LLDP] 19:52:10.306358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.306368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.306369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.306379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.306381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.306383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1109 6c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.306384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.306385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.316341 LLDP, length 82 [|LLDP] 19:52:10.316343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.316357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.316358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1111 0d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.316359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.316360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.316361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.316362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.316372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.316374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.316375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.316381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.316383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.316383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.316384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.326342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.326344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.326352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.326353 LLDP, length 82 [|LLDP] 19:52:10.326355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.326365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.326367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.326380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.326381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1118 ae6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.326382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.326383 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.326384 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.326385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.326386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.326387 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.336339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.336341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.336348 LLDP, length 82 [|LLDP] 19:52:10.336350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.336360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.336361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1120 4f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.336362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.336363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.336364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.336370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.336371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.336372 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.336373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.336374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.336375 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.346339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.346341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.346348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.346349 LLDP, length 82 [|LLDP] 19:52:10.346351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.346360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.346362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.346374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.346375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1127 f0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.346376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.346377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.346378 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.346379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.346380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.346381 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.356333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.356335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.356350 LLDP, length 82 [|LLDP] 19:52:10.356351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.356361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.356362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 112f 91ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.356363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.356364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.356366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.356371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.356373 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.356374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.356375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.356375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.356376 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.366334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.366336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.366343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.366344 LLDP, length 82 [|LLDP] 19:52:10.366346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.366354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.366355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.366367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.366368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1137 32ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.366369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.366370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.366371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.366372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.366373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.366374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.376330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.376331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.376339 LLDP, length 82 [|LLDP] 19:52:10.376341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.376351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.376352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 113e d40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.376353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.376354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.376355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.376361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.376362 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.376363 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.376364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.386338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.386340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.386347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.386349 LLDP, length 82 [|LLDP] 19:52:10.386351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.386359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.386368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.386369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1146 752e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.386370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.396320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.396322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.396336 LLDP, length 82 [|LLDP] 19:52:10.396338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.396348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.396348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 114e 164e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.396350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.396351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.396354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.406347 LLDP, length 82 [|LLDP] 19:52:10.406349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.406356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.406358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.406366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.406368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.406369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1155 b76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.406370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.406371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.416338 LLDP, length 82 [|LLDP] 19:52:10.416340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.416352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.416352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 115d 588e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.416354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.416355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.416356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.416357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.416366 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.416368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.416369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.416374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.416376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.416377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.416378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.426337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.426339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.426346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.426347 LLDP, length 82 [|LLDP] 19:52:10.426349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.426356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.426358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.426370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.426371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1164 f9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.426372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.426373 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.426374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.426375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.426376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.426377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.436337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.436338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.436346 LLDP, length 82 [|LLDP] 19:52:10.436348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.436358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.436359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 116c 9ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.436360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.436361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.436362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.436367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.436369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.436370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.436371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.436372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.436373 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.446334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.446336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.446342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.446344 LLDP, length 82 [|LLDP] 19:52:10.446346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.446354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.446355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.446367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.446368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1174 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.446369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.446370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.446371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.446372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.446373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.446374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.456348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.456350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.456358 LLDP, length 82 [|LLDP] 19:52:10.456359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.456370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.456371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 117b dd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.456372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.456373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.456374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.456380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.456382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.456383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.456384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.456385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.456386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.466343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.466345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.466353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.466354 LLDP, length 82 [|LLDP] 19:52:10.466356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.466366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.466367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.466380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.466381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1183 7e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.466382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.466383 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.466384 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.466385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.466386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.466387 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.476329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.476331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.476338 LLDP, length 82 [|LLDP] 19:52:10.476340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.476350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.476351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 118b 1f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.476352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.476353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.476354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.476359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.476361 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.476362 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.476363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.486386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.486388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.486394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.486395 LLDP, length 82 [|LLDP] 19:52:10.486398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.486407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.486416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.486417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1192 c06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.486418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.496356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.496357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.496364 LLDP, length 82 [|LLDP] 19:52:10.496365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.496375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.496376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 119a 618e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.496377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.496378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.496381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.506342 LLDP, length 82 [|LLDP] 19:52:10.506344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.506352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.506353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.506360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.506362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.506363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11a2 02ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.506365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.506366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.516340 LLDP, length 82 [|LLDP] 19:52:10.516342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.516353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.516354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11a9 a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.516355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.516357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.516357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.516359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.516367 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.516369 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.516370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.516375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.516377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.516378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.516379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.526340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.526341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.526348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.526349 LLDP, length 82 [|LLDP] 19:52:10.526351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.526360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.526361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.526373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.526374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11b1 44ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.526375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.526376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.526377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.526378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.526379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.526380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.536340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.536342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.536349 LLDP, length 82 [|LLDP] 19:52:10.536351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.536361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.536362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11b8 e60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.536363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.536364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.536365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.536371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.536372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.536374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.536375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.536376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.536377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.546336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.546337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.546344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.546345 LLDP, length 82 [|LLDP] 19:52:10.546347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.546356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.546357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.546368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.546369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11c0 872e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.546371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.546372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.546373 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.546374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.546375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.546376 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.556339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.556341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.556347 LLDP, length 82 [|LLDP] 19:52:10.556349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.556359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.556360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11c8 284e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.556361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.556362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.556363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.556369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.556370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.556371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.556372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.556373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.556374 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.566341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.566343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.566350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.566351 LLDP, length 82 [|LLDP] 19:52:10.566353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.566362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.566364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.566375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.566376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11cf c96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.566378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.566379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.566380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.566381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.566382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.566383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.576333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.576335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.576341 LLDP, length 82 [|LLDP] 19:52:10.576343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.576353 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.576354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11d7 6a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.576355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.576357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.576358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.576362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.576364 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.576365 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.576366 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.586347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.586349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.586356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.586357 LLDP, length 82 [|LLDP] 19:52:10.586359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.586367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.586377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.586377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11df 0bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.586379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.596354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.596355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.596362 LLDP, length 82 [|LLDP] 19:52:10.596364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.596373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.596374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11e6 acce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.596375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.596376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.596379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.606322 LLDP, length 82 [|LLDP] 19:52:10.606324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.606332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.606332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.606340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.606343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.606343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11ee 4dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.606345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.606346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.616340 LLDP, length 82 [|LLDP] 19:52:10.616342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.616352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.616353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11f5 ef0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.616355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.616355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.616356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.616357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.616366 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.616368 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.616369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.616374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.616375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.616376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.616377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.626339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.626340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.626347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.626348 LLDP, length 82 [|LLDP] 19:52:10.626350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.626358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.626359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.626371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.626371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 11fd 902e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.626373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.626374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.626374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.626375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.626376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.626378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.636339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.636341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.636347 LLDP, length 82 [|LLDP] 19:52:10.636349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.636359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.636359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1205 314e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.636361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.636362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.636363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.636368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.636370 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.636371 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.636372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.636373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.636373 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.646339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.646341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.646348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.646349 LLDP, length 82 [|LLDP] 19:52:10.646351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.646359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.646361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.646372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.646373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 120c d26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.646375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.646376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.646377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.646378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.646378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.646379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.656339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.656340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.656347 LLDP, length 82 [|LLDP] 19:52:10.656349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.656358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.656359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1214 738e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.656360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.656361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.656362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.656368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.656369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.656370 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.656371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.656372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.656373 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.666342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.666343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.666350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.666351 LLDP, length 82 [|LLDP] 19:52:10.666353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.666361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.666362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.666373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.666374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 121c 14ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.666375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.666376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.666377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.666378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.666379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.666380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.676334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.676336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.676342 LLDP, length 82 [|LLDP] 19:52:10.676344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.676354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.676355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1223 b5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.676356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.676357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.676358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.676364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.676365 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.676366 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.676367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.686328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.686330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.686344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.686345 LLDP, length 82 [|LLDP] 19:52:10.686347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.686355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.686365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.686366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 122b 56ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.686368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.696343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.696345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.696352 LLDP, length 82 [|LLDP] 19:52:10.696354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.696363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.696364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1232 f80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.696365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.696366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.696369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.706323 LLDP, length 82 [|LLDP] 19:52:10.706325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.706337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.706338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.706346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.706348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.706349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 123a 992e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.706350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.706352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.716343 LLDP, length 82 [|LLDP] 19:52:10.716345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.716363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.716363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1242 3a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.716365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.716366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.716367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.716369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.716377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.716379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.716380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.716386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.716388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.716388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.716389 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.726347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.726349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.726358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.726359 LLDP, length 82 [|LLDP] 19:52:10.726361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.726370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.726372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.726385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.726386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1249 db6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.726387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.726388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.726390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.726391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.726392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.726392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.736346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.736348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.736355 LLDP, length 82 [|LLDP] 19:52:10.736357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.736367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.736368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1251 7c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.736369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.736370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.736372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.736377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.736378 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.736379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.736380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.736381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.736382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.746342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.746344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.746351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.746352 LLDP, length 82 [|LLDP] 19:52:10.746355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.746364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.746366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.746377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.746378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1259 1dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.746379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.746381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.746381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.746382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.746383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.746384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.756356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.756358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.756367 LLDP, length 82 [|LLDP] 19:52:10.756369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.756382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.756382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1260 bece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.756384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.756385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.756386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.756391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.756393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.756394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.756395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.756396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.756397 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.766347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.766349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.766357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.766358 LLDP, length 82 [|LLDP] 19:52:10.766360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.766369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.766371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.766383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.766384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1268 5fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.766385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.766386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.766387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.766388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.766389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.766390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.776354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.776356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.776365 LLDP, length 82 [|LLDP] 19:52:10.776367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.776379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.776380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1270 010e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.776381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.776382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.776383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.776389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.776391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.776392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.776393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.786402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.786404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.786412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.786413 LLDP, length 82 [|LLDP] 19:52:10.786415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.786426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.786436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.786437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1277 a22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.786438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.796353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.796355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.796363 LLDP, length 82 [|LLDP] 19:52:10.796365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.796375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.796376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 127f 434e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.796377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.796378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.796381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.806357 LLDP, length 82 [|LLDP] 19:52:10.806359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.806366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.806367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.806376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.806378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.806379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1286 e46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.806380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.806381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.816345 LLDP, length 82 [|LLDP] 19:52:10.816346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.816357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.816358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 128e 858e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.816359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.816360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.816361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.816362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.816372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.816374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.816375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.816380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.816382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.816383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.816384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.826345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.826347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.826354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.826355 LLDP, length 82 [|LLDP] 19:52:10.826357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.826366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.826367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.826379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.826380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1296 26ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.826381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.826382 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.826383 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.826384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.826385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.826386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.836341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.836343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.836350 LLDP, length 82 [|LLDP] 19:52:10.836352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.836362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.836363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 129d c7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.836365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.836366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.836367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.836372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.836374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.836375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.836376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.836377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.836378 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.846343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.846345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.846353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.846354 LLDP, length 82 [|LLDP] 19:52:10.846356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.846364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.846365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.846377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.846378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12a5 68ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.846379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.846380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.846381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.846382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.846383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.846384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.856342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.856344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.856351 LLDP, length 82 [|LLDP] 19:52:10.856353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.856363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.856364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12ad 0a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.856365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.856366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.856367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.856373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.856374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.856375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.856377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.856378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.856379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.866342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.866344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.866350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.866352 LLDP, length 82 [|LLDP] 19:52:10.866354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.866362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.866364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.866374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.866376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12b4 ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.866377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.866378 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.866379 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.866380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.866381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.866382 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.876337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.876339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.876346 LLDP, length 82 [|LLDP] 19:52:10.876348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.876357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.876358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12bc 4c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.876360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.876361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.876362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.876367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.876369 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.876369 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.876370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.886355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.886357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.886364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.886365 LLDP, length 82 [|LLDP] 19:52:10.886368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.886376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.886385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.886386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12c3 ed6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.886387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.896358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.896360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.896367 LLDP, length 82 [|LLDP] 19:52:10.896369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.896379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.896380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12cb 8e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.896381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.896382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.896385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.906327 LLDP, length 82 [|LLDP] 19:52:10.906329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.906336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.906337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.906345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.906348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.906349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12d3 2fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.906350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.906351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.916345 LLDP, length 82 [|LLDP] 19:52:10.916346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.916358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.916358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12da d0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.916360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.916360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.916361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.916362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.916372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.916374 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.916375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.916380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.916382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.916383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.916384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.926342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.926343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.926351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.926352 LLDP, length 82 [|LLDP] 19:52:10.926354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.926363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.926364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.926376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.926376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12e2 71ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.926378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.926379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.926380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.926380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.926382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.926383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.936342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.936344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.936351 LLDP, length 82 [|LLDP] 19:52:10.936353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.936363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.936363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12ea 130e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.936365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.936366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.936367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.936372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.936374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.936375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.936376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.936377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.936377 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.946345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.946347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.946354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.946355 LLDP, length 82 [|LLDP] 19:52:10.946357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.946365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.946366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.946378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.946379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12f1 b42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.946380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.946381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.946382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.946383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.946384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.946385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.956345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.956347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.956353 LLDP, length 82 [|LLDP] 19:52:10.956355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.956364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.956365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 12f9 554e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.956367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.956367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.956368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.956374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.956375 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.956376 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.956377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.956378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.956379 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.966345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.966347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.966354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.966355 LLDP, length 82 [|LLDP] 19:52:10.966357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.966365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.966366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.966378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.966379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1300 f66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.966380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.966381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.966382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.966383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.966384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:10.966385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:10.976338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.976340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.976348 LLDP, length 82 [|LLDP] 19:52:10.976350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.976359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.976360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1308 978e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.976362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.976363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:10.976364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.976369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.976371 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.976372 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:10.976373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:10.986355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.986357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.986364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.986365 LLDP, length 82 [|LLDP] 19:52:10.986367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.986376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:10.986386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.986387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1310 38ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.986388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.996348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:10.996350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.996357 LLDP, length 82 [|LLDP] 19:52:10.996359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:10.996369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:10.996370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1317 d9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:10.996372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:10.996373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:10.996375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.006351 LLDP, length 82 [|LLDP] 19:52:11.006353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.006361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.006362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.006371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.006373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.006374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 131f 7aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.006375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.006377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.016353 LLDP, length 82 [|LLDP] 19:52:11.016355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.016365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.016366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1327 1c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.016367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.016368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.016369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.016370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.016379 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.016381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.016382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.016388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.016390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.016391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.016392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.026343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.026345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.026351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.026353 LLDP, length 82 [|LLDP] 19:52:11.026355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.026363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.026364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.026376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.026377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 132e bd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.026379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.026380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.026380 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.026381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.026382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.026383 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.036344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.036346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.036352 LLDP, length 82 [|LLDP] 19:52:11.036354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.036364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.036365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1336 5e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.036366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.036367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.036368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.036374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.036376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.036377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.036378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.036379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.036380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.046348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.046349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.046357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.046358 LLDP, length 82 [|LLDP] 19:52:11.046360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.046369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.046370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.046381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.046382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 133d ff6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.046384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.046385 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.046386 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.046387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.046388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.046389 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.056346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.056347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.056355 LLDP, length 82 [|LLDP] 19:52:11.056356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.056365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.056366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1345 a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.056368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.056369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.056370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.056375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.056377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.056378 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.056379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.056380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.056381 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.066346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.066348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.066355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.066356 LLDP, length 82 [|LLDP] 19:52:11.066358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.066366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.066367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.066378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.066379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 134d 41ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.066380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.066381 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.066382 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.066383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.066384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.066385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.076341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.076343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.076350 LLDP, length 82 [|LLDP] 19:52:11.076352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.076361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.076362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1354 e2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.076363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.076364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.076365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.076371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.076372 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.076373 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.076374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.086357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.086359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.086366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.086367 LLDP, length 82 [|LLDP] 19:52:11.086369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.086377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.086387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.086387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 135c 83ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.086389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.096355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.096357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.096364 LLDP, length 82 [|LLDP] 19:52:11.096366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.096376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.096377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1364 250e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.096378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.096379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.096382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.106355 LLDP, length 82 [|LLDP] 19:52:11.106357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.106364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.106365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.106374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.106376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.106377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 136b c62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.106378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.106380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.116347 LLDP, length 82 [|LLDP] 19:52:11.116349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.116359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.116360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1373 674e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.116362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.116363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.116364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.116365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.116374 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.116375 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.116376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.116382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.116383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.116384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.116385 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.126342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.126344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.126350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.126351 LLDP, length 82 [|LLDP] 19:52:11.126354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.126360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.126362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.126373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.126374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 137b 086e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.126375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.126376 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.126377 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.126378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.126379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.126380 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.136347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.136349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.136356 LLDP, length 82 [|LLDP] 19:52:11.136358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.136368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.136369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1382 a98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.136370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.136371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.136372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.136378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.136380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.136381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.136382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.136383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.136384 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.146362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.146365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.146375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.146376 LLDP, length 82 [|LLDP] 19:52:11.146378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.146390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.146392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.146407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.146408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 138a 4aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.146409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.146410 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.146411 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.146412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.146413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.146414 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.156363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.156365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.156376 LLDP, length 82 [|LLDP] 19:52:11.156378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.156391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.156391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1391 ebce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.156393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.156394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.156395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.156402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.156404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.156405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.156406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.156407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.156408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.166365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.166368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.166378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.166380 LLDP, length 82 [|LLDP] 19:52:11.166382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.166395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.166396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.166414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.166415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1399 8cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.166417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.166418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.166419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.166420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.166421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.166422 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.176344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.176345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.176353 LLDP, length 82 [|LLDP] 19:52:11.176355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.176366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.176366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13a1 2e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.176368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.176369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.176370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.176375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.176377 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.176378 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.176380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.186357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.186359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.186365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.186366 LLDP, length 82 [|LLDP] 19:52:11.186368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.186375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.186385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.186385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13a8 cf2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.186387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.196330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.196331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.196338 LLDP, length 82 [|LLDP] 19:52:11.196340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.196349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.196350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13b0 704e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.196351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.196352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.196355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.206360 LLDP, length 82 [|LLDP] 19:52:11.206361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.206369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.206370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.206377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.206379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.206380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13b8 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.206381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.206383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.216396 LLDP, length 82 [|LLDP] 19:52:11.216398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.216424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.216425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13bf b28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.216426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.216427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.216428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.216430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.216448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.216450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.216451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.216457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.216459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.216460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.216461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.226395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.226397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.226414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.226415 LLDP, length 82 [|LLDP] 19:52:11.226418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.226432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.226433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.226459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.226460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13c7 53ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.226461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.226463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.226464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.226465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.226466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.226467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.236386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.236389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.236403 LLDP, length 82 [|LLDP] 19:52:11.236405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.236420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.236421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13ce f4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.236422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.236424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.236425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.236432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.236434 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.236435 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.236436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.236437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.236438 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.246390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.246393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.246408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.246409 LLDP, length 82 [|LLDP] 19:52:11.246411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.246426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.246427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.246450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.246451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13d6 95ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.246453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.246454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.246455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.246456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.246457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.246458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.256390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.256393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.256408 LLDP, length 82 [|LLDP] 19:52:11.256410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.256427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.256428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13de 370e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.256429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.256430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.256432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.256455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.256458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.256459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.256460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.256461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.256462 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.266404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.266407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.266421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.266422 LLDP, length 82 [|LLDP] 19:52:11.266425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.266442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.266444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.266473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.266474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13e5 d82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.266475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.266480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.266481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.266482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.266483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.266484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.276400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.276403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.276419 LLDP, length 82 [|LLDP] 19:52:11.276421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.276444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.276445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13ed 794e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.276447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.276448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.276449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.276458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.276459 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.276461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.276462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.286392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.286395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.286410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.286411 LLDP, length 82 [|LLDP] 19:52:11.286414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.286427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.286447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.286447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13f5 1a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.286449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.296367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.296369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.296379 LLDP, length 82 [|LLDP] 19:52:11.296380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.296392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.296393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 13fc bb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.296395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.296396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.296398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.306348 LLDP, length 82 [|LLDP] 19:52:11.306349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.306361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.306362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.306363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.306374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.306377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.306378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1404 5cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.306379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.306380 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.306381 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.306383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.306384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.306385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.306386 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.316354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.316356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.316364 LLDP, length 82 [|LLDP] 19:52:11.316366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.316377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.316378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 140b fdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.316380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.316381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.316382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.316388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.316390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.316391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.316392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.316393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.316394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.326363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.326365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.326374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.326375 LLDP, length 82 [|LLDP] 19:52:11.326377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.326386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.326387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.326409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.326410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1413 9eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.326412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.326413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.326414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.326415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.326416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.326417 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.336357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.336358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.336366 LLDP, length 82 [|LLDP] 19:52:11.336368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.336378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.336378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 141b 400e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.336380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.336381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.336382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.336387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.336389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.336390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.336391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.336392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.336393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.346355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.346358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.346366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.346367 LLDP, length 82 [|LLDP] 19:52:11.346369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.346379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.346380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.346395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.346396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1422 e12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.346397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.346398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.346399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.346400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.346401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.346402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.356358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.356360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.356368 LLDP, length 82 [|LLDP] 19:52:11.356369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.356380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.356381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 142a 824e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.356382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.356383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.356384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.356390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.356391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.356392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.356393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.356394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.356395 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.366350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.366352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.366360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.366361 LLDP, length 82 [|LLDP] 19:52:11.366364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.366372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.366374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.366390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.366390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1432 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.366392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.366393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.366394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.366395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.376368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.376370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.376377 LLDP, length 82 [|LLDP] 19:52:11.376379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.376388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.376389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1439 c48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.376391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.376392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.376395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.386338 LLDP, length 82 [|LLDP] 19:52:11.386340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.386347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.386348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.386356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.386358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.386359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1441 65ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.386361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.386363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.396349 LLDP, length 82 [|LLDP] 19:52:11.396351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.396367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.396367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1449 06ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.396369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.396370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.396371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.396381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.396382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.406361 LLDP, length 82 [|LLDP] 19:52:11.406362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.406372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.406373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.406374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.406388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.406390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.406391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1450 a7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.406392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.406394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.406395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.406396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.406397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.406398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.406398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.416378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.416380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.416391 LLDP, length 82 [|LLDP] 19:52:11.416393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.416406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.416406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1458 490e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.416408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.416409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.416410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.416416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.416418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.416419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.416420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.416421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.416421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.426361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.426363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.426372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.426373 LLDP, length 82 [|LLDP] 19:52:11.426376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.426385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.426387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.426403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.426403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 145f ea2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.426405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.426406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.426407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.426408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.426409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.426410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.436356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.436358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.436366 LLDP, length 82 [|LLDP] 19:52:11.436367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.436379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.436379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1467 8b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.436381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.436382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.436383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.436388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.436390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.436391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.436392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.436393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.436394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.446354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.446356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.446364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.446365 LLDP, length 82 [|LLDP] 19:52:11.446367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.446376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.446377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.446392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.446392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 146f 2c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.446394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.446395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.446395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.446396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.446397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.446398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.456356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.456358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.456366 LLDP, length 82 [|LLDP] 19:52:11.456368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.456378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.456379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1476 cd8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.456380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.456381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.456382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.456388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.456389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.456390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.456391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.456392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.456393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.466352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.466354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.466362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.466363 LLDP, length 82 [|LLDP] 19:52:11.466365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.466373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.466374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.466388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.466389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 147e 6eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.466390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.466391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.466392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.466393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.476358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.476360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.476368 LLDP, length 82 [|LLDP] 19:52:11.476370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.476379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.476380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1486 0fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.476382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.476383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.476386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.486357 LLDP, length 82 [|LLDP] 19:52:11.486359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.486367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.486368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.486377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.486380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.486381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 148d b0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.486382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.486383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.496343 LLDP, length 82 [|LLDP] 19:52:11.496344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.496357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.496357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1495 520e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.496359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.496360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.496361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.496367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.496369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.506358 LLDP, length 82 [|LLDP] 19:52:11.506360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.506368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.506369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.506370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.506381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.506384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.506384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 149c f32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.506386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.506387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.506388 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.506389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.506390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.506391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.506392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.516356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.516357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.516365 LLDP, length 82 [|LLDP] 19:52:11.516367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.516376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.516377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14a4 944e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.516379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.516380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.516381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.516387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.516388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.516389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.516390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.516391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.516392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.526358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.526359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.526367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.526368 LLDP, length 82 [|LLDP] 19:52:11.526370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.526379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.526381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.526394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.526395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14ac 356e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.526397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.526397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.526398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.526399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.526400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.526401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.536355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.536357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.536365 LLDP, length 82 [|LLDP] 19:52:11.536367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.536376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.536377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14b3 d68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.536378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.536379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.536380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.536385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.536387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.536388 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.536389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.536390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.536391 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.546354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.546356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.546370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.546371 LLDP, length 82 [|LLDP] 19:52:11.546373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.546382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.546383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.546396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.546397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14bb 77ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.546399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.546400 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.546401 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.546402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.546403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.546404 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.556357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.556358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.556366 LLDP, length 82 [|LLDP] 19:52:11.556368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.556377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.556378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14c3 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.556380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.556381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.556382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.556388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.556389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.556390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.556391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.556392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.556393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.566349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.566351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.566359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.566360 LLDP, length 82 [|LLDP] 19:52:11.566362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.566371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.566372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.566386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.566387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14ca b9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.566388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.566389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.566390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.566391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.576406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.576407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.576415 LLDP, length 82 [|LLDP] 19:52:11.576416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.576426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.576427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14d2 5b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.576428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.576429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.576432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.586365 LLDP, length 82 [|LLDP] 19:52:11.586366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.586373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.586374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.586383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.586385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.586386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14d9 fc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.586387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.586389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.596362 LLDP, length 82 [|LLDP] 19:52:11.596363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.596375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.596376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14e1 9d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.596377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.596379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.596380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.596386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.596387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.606359 LLDP, length 82 [|LLDP] 19:52:11.606361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.606370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.606370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.606371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.606382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.606385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.606386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14e9 3e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.606387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.606389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.606389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.606391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.606392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.606393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.606394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.616354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.616356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.616364 LLDP, length 82 [|LLDP] 19:52:11.616365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.616374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.616375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14f0 df8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.616376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.616378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.616379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.616385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.616386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.616387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.616388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.616389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.616390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.626354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.626356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.626364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.626365 LLDP, length 82 [|LLDP] 19:52:11.626367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.626376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.626377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.626391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.626392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 14f8 80ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.626394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.626395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.626395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.626396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.626397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.626398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.636356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.636358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.636366 LLDP, length 82 [|LLDP] 19:52:11.636368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.636377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.636377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1500 21ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.636379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.636380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.636381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.636386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.636388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.636389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.636390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.636391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.636392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.646355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.646357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.646364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.646365 LLDP, length 82 [|LLDP] 19:52:11.646367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.646375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.646377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.646390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.646391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1507 c2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.646393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.646394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.646395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.646395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.646396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.646397 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.656356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.656358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.656365 LLDP, length 82 [|LLDP] 19:52:11.656367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.656376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.656377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 150f 640e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.656379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.656380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.656380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.656386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.656387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.656388 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.656389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.656390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.656391 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.666357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.666359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.666366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.666367 LLDP, length 82 [|LLDP] 19:52:11.666369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.666377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.666378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.666391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.666392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1517 052e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.666393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.666394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.666395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.666396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.676368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.676370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.676377 LLDP, length 82 [|LLDP] 19:52:11.676379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.676388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.676389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 151e a64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.676391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.676392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.676394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.686372 LLDP, length 82 [|LLDP] 19:52:11.686373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.686381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.686382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.686390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.686393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.686394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1526 476e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.686395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.686396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.696341 LLDP, length 82 [|LLDP] 19:52:11.696343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.696355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.696356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 152d e88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.696357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.696358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.696359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.696365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.696367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.706360 LLDP, length 82 [|LLDP] 19:52:11.706361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.706369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.706370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.706371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.706382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.706385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.706386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1535 89ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.706387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.706388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.706389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.706390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.706391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.706392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.706393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.716358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.716360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.716368 LLDP, length 82 [|LLDP] 19:52:11.716370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.716379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.716379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 153d 2ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.716381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.716382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.716383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.716389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.716390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.716391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.716392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.716393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.716394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.726357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.726358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.726366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.726367 LLDP, length 82 [|LLDP] 19:52:11.726369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.726378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.726380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.726394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.726395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1544 cbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.726396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.726397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.726398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.726399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.726400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.726401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.731553 LLDP, length 226: localhost 19:52:11.736357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.736359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.736367 LLDP, length 82 [|LLDP] 19:52:11.736369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.736380 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.736380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 154c 6d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.736382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.736383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.736384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.736389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.736391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.736392 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.736393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.736393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.736394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.746359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.746361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.746369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.746370 LLDP, length 82 [|LLDP] 19:52:11.746372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.746380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.746382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.746394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.746395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1554 0e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.746397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.746397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.746398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.746399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.746400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.746401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.756373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.756375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.756384 LLDP, length 82 [|LLDP] 19:52:11.756386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.756397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.756398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 155b af4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.756400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.756401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.756402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.756407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.756409 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.756410 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.756411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.756412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.756413 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.766359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.766361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.766369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.766370 LLDP, length 82 [|LLDP] 19:52:11.766373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.766383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.766384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.766400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.766400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1563 506e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.766402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.766403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.766404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.766405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.776371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.776373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.776380 LLDP, length 82 [|LLDP] 19:52:11.776382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.776400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.776400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 156a f18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.776402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.776403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.776405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.786365 LLDP, length 82 [|LLDP] 19:52:11.786367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.786376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.786376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.786386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.786388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.786389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1572 92ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.786390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.786392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.796364 LLDP, length 82 [|LLDP] 19:52:11.796366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.796378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.796378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 157a 33ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.796380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.796381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.796382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.796388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.796389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.806362 LLDP, length 82 [|LLDP] 19:52:11.806364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.806371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.806372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.806373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.806384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.806387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.806387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1581 d4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.806389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.806390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.806391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.806392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.806393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.806394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.806395 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.816357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.816359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.816367 LLDP, length 82 [|LLDP] 19:52:11.816368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.816379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.816379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1589 760e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.816381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.816382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.816383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.816388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.816390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.816391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.816391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.816393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.816394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.826357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.826359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.826365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.826366 LLDP, length 82 [|LLDP] 19:52:11.826368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.826377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.826378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.826392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.826393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1591 172e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.826394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.826395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.826396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.826397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.826398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.826399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.836356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.836358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.836365 LLDP, length 82 [|LLDP] 19:52:11.836366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.836375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.836376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1598 b84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.836378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.836379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.836380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.836385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.836386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.836387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.836388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.836389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.836390 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.846356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.846358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.846365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.846366 LLDP, length 82 [|LLDP] 19:52:11.846368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.846375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.846376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.846389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.846390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15a0 596e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.846391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.846392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.846393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.846394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.846395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.846396 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.856358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.856360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.856367 LLDP, length 82 [|LLDP] 19:52:11.856368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.856378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.856379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15a7 fa8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.856380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.856381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.856382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.856387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.856389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.856390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.856391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.856392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.856393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.866351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.866352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.866360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.866361 LLDP, length 82 [|LLDP] 19:52:11.866363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.866370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.866371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.866383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.866384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15af 9bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.866386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.866387 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.866387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.866388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.876370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.876372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.876378 LLDP, length 82 [|LLDP] 19:52:11.876380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.876389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.876390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15b7 3cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.876391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.876392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.876395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.886369 LLDP, length 82 [|LLDP] 19:52:11.886371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.886378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.886379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.886387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.886390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.886390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15be ddee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.886392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.886393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.896401 LLDP, length 82 [|LLDP] 19:52:11.896403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.896414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.896415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15c6 7f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.896416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.896417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.896418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.896424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.896425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.906359 LLDP, length 82 [|LLDP] 19:52:11.906361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.906368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.906369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.906370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.906380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.906383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.906383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15ce 202e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.906385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.906386 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.906387 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.906389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.906390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.906390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.906391 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.916357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.916359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.916366 LLDP, length 82 [|LLDP] 19:52:11.916368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.916377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.916378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15d5 c14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.916379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.916380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.916381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.916386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.916388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.916389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.916390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.916391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.916392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.926359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.926361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.926367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.926368 LLDP, length 82 [|LLDP] 19:52:11.926370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.926378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.926379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.926392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.926393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15dd 626e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.926395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.926396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.926397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.926397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.926398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.926399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.936358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.936359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.936366 LLDP, length 82 [|LLDP] 19:52:11.936368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.936378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.936379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15e5 038e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.936380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.936381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.936382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.936388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.936389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.936390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.936391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.936392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.936393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.946358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.946360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.946366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.946367 LLDP, length 82 [|LLDP] 19:52:11.946369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.946377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.946378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.946391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.946392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15ec a4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.946393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.946394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.946395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.946396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.946397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.946398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.956358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.956360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.956367 LLDP, length 82 [|LLDP] 19:52:11.956368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.956377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.956378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15f4 45ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.956379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.956380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.956381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.956387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.956389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.956390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.956391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.956392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:11.956392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:11.966351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.966359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.966365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.966366 LLDP, length 82 [|LLDP] 19:52:11.966368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.966375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:11.966377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.966390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.966391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 15fb e6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.966392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.966393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.966394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:11.966395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:11.976373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.976375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.976381 LLDP, length 82 [|LLDP] 19:52:11.976383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.976392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.976393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1603 880e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.976394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.976395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.976398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.986369 LLDP, length 82 [|LLDP] 19:52:11.986371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.986379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.986380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.986387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.986389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.986390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 160b 292e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.986391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.986393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:11.996375 LLDP, length 82 [|LLDP] 19:52:11.996376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:11.996388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:11.996388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1612 ca4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:11.996390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:11.996391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:11.996392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.996398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:11.996399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.006360 LLDP, length 82 [|LLDP] 19:52:12.006362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.006370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.006371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.006372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.006383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.006385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.006386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 161a 6b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.006388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.006389 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.006390 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.006391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.006392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.006393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.006394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.016358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.016360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.016367 LLDP, length 82 [|LLDP] 19:52:12.016368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.016378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.016378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1622 0c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.016380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.016381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.016382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.016387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.016388 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.016389 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.016390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.016391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.016392 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.026361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.026362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.026370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.026371 LLDP, length 82 [|LLDP] 19:52:12.026373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.026380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.026382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.026395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.026396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1629 adae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.026398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.026399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.026400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.026401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.026402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.026403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.036364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.036366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.036373 LLDP, length 82 [|LLDP] 19:52:12.036375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.036385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.036385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1631 4ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.036387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.036388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.036389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.036394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.036396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.036396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.036397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.036398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.036399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.046360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.046362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.046368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.046369 LLDP, length 82 [|LLDP] 19:52:12.046371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.046379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.046381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.046393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.046394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1638 efee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.046395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.046396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.046397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.046399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.046400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.046401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.056360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.056362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.056369 LLDP, length 82 [|LLDP] 19:52:12.056370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.056379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.056380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1640 910e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.056381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.056382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.056383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.056389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.056391 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.056391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.056392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.056393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.056394 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.066361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.066363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.066369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.066370 LLDP, length 82 [|LLDP] 19:52:12.066372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.066380 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.066381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.066394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.066395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1648 322e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.066396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.066397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.066399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.066400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.076372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.076374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.076381 LLDP, length 82 [|LLDP] 19:52:12.076382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.076391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.076392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 164f d34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.076393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.076394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.076397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.086363 LLDP, length 82 [|LLDP] 19:52:12.086365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.086373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.086374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.086382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.086384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.086384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1657 746e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.086386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.086387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.096348 LLDP, length 82 [|LLDP] 19:52:12.096356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.096367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.096368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 165f 158e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.096370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.096371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.096372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.096378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.096379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.106361 LLDP, length 82 [|LLDP] 19:52:12.106363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.106378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.106379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.106380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.106390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.106393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.106394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1666 b6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.106395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.106396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.106397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.106399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.106400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.106401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.106401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.116358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.116360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.116373 LLDP, length 82 [|LLDP] 19:52:12.116375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.116384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.116385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 166e 57ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.116386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.116387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.116388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.116394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.116396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.116397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.116398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.116399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.116400 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.126360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.126362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.126376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.126377 LLDP, length 82 [|LLDP] 19:52:12.126379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.126386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.126388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.126401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.126402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1675 f8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.126404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.126405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.126406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.126407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.126408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.126409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.136361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.136363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.136370 LLDP, length 82 [|LLDP] 19:52:12.136372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.136381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.136382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 167d 9a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.136384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.136385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.136386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.136391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.136393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.136394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.136395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.136396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.136397 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.146362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.146364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.146371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.146372 LLDP, length 82 [|LLDP] 19:52:12.146374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.146381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.146382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.146394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.146395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1685 3b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.146396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.146397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.146398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.146399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.146400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.146401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.156363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.156365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.156371 LLDP, length 82 [|LLDP] 19:52:12.156373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.156383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.156384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 168c dc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.156385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.156387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.156388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.156393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.156395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.156396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.156397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.156397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.156398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.166355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.166357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.166364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.166365 LLDP, length 82 [|LLDP] 19:52:12.166367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.166375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.166377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.166389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.166390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1694 7d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.166392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.166392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.166393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.166395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.176411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.176413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.176419 LLDP, length 82 [|LLDP] 19:52:12.176421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.176429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.176430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 169c 1e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.176432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.176433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.176436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.186377 LLDP, length 82 [|LLDP] 19:52:12.186379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.186386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.186387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.186395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.186397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.186398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16a3 bfae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.186399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.186401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.196348 LLDP, length 82 [|LLDP] 19:52:12.196350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.196361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.196362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16ab 60ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.196363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.196364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.196365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.196371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.196372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.206364 LLDP, length 82 [|LLDP] 19:52:12.206366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.206374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.206375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.206377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.206387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.206389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.206390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16b3 01ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.206391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.206393 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.206394 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.206395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.206396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.206397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.206398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.216362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.216363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.216370 LLDP, length 82 [|LLDP] 19:52:12.216371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.216381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.216381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16ba a30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.216383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.216384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.216385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.216390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.216392 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.216393 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.216394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.216395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.216395 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.226363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.226365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.226371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.226372 LLDP, length 82 [|LLDP] 19:52:12.226374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.226383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.226384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.226398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.226399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16c2 442e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.226401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.226402 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.226403 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.226404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.226405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.226406 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.236362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.236363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.236371 LLDP, length 82 [|LLDP] 19:52:12.236372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.236381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.236382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16c9 e54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.236397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.236399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.236400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.236406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.236408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.236409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.236410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.236411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.236412 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.246394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.246396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.246408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.246409 LLDP, length 82 [|LLDP] 19:52:12.246411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.246425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.246426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.246447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.246447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16d1 866e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.246449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.246450 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.246451 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.246452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.246453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.246454 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.256371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.256373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.256387 LLDP, length 82 [|LLDP] 19:52:12.256389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.256400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.256401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16d9 278e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.256403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.256404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.256405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.256410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.256412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.256413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.256414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.256415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.256415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.266366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.266368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.266376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.266377 LLDP, length 82 [|LLDP] 19:52:12.266380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.266389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.266390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.266404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.266405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16e0 c8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.266406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.266407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.266408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.266409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.276365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.276367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.276373 LLDP, length 82 [|LLDP] 19:52:12.276375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.276384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.276385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16e8 69ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.276386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.276387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.276390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.286425 LLDP, length 82 [|LLDP] 19:52:12.286427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.286444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.286445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.286466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.286470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.286471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16f0 0aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.286472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.286473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.296412 LLDP, length 82 [|LLDP] 19:52:12.296415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.296436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.296437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16f7 ac0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.296438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.296439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.296441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.296455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.296457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.306369 LLDP, length 82 [|LLDP] 19:52:12.306371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.306383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.306384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.306385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.306396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.306399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.306399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 16ff 4d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.306401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.306402 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.306403 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.306405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.306406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.306407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.306407 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.316364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.316366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.316372 LLDP, length 82 [|LLDP] 19:52:12.316374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.316384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.316385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1706 ee4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.316386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.316387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.316388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.316394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.316396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.316397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.316398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.316398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.316399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.326365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.326367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.326373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.326374 LLDP, length 82 [|LLDP] 19:52:12.326376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.326383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.326384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.326396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.326397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 170e 8f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.326398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.326399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.326400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.326401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.326402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.326403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.336363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.336366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.336372 LLDP, length 82 [|LLDP] 19:52:12.336373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.336383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.336384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1716 308e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.336385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.336386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.336387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.336393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.336394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.336395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.336396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.336397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.336398 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.346362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.346364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.346369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.346370 LLDP, length 82 [|LLDP] 19:52:12.346372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.346379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.346381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.346393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.346394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 171d d1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.346396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.346396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.346397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.346398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.346399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.346400 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.356364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.356366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.356372 LLDP, length 82 [|LLDP] 19:52:12.356374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.356383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.356384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1725 72ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.356386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.356387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.356388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.356394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.356396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.356397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.356397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.356398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.356399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.366364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.366366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.366371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.366372 LLDP, length 82 [|LLDP] 19:52:12.366375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.366382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.366383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.366394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.366395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 172d 13ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.366397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.366398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.366399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.366400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.376378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.376380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.376386 LLDP, length 82 [|LLDP] 19:52:12.376388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.376396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.376397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1734 b50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.376398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.376399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.376403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.386350 LLDP, length 82 [|LLDP] 19:52:12.386351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.386363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.386364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.386371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.386373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.386374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 173c 562e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.386376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.386377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.396372 LLDP, length 82 [|LLDP] 19:52:12.396374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.396383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.396384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1743 f74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.396386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.396387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.396388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.396395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.396396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.406371 LLDP, length 82 [|LLDP] 19:52:12.406373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.406384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.406385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.406386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.406396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.406399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.406400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 174b 986e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.406402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.406403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.406404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.406405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.406406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.406407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.406408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.416362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.416363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.416369 LLDP, length 82 [|LLDP] 19:52:12.416371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.416379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.416379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1753 398e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.416381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.416382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.416383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.416388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.416390 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.416391 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.416392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.416392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.416393 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.426369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.426370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.426377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.426378 LLDP, length 82 [|LLDP] 19:52:12.426380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.426387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.426388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.426401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.426402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 175a daae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.426403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.426404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.426405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.426406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.426407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.426408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.436395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.436397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.436409 LLDP, length 82 [|LLDP] 19:52:12.436412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.436425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.436426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1762 7bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.436428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.436428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.436429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.436436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.436438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.436439 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.436440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.436440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.436441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.446386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.446388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.446397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.446398 LLDP, length 82 [|LLDP] 19:52:12.446400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.446411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.446412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.446430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.446430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 176a 1cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.446432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.446433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.446434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.446435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.446436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.446437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.456380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.456382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.456391 LLDP, length 82 [|LLDP] 19:52:12.456393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.456405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.456406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1771 be0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.456408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.456409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.456410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.456416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.456418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.456418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.456419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.456420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.456421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.466381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.466384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.466395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.466396 LLDP, length 82 [|LLDP] 19:52:12.466398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.466409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.466410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.466429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.466430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1779 5f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.466431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.466432 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.466433 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.466434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.476391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.476394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.476404 LLDP, length 82 [|LLDP] 19:52:12.476406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.476418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.476419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1781 004e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.476421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.476422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.476425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.486388 LLDP, length 82 [|LLDP] 19:52:12.486390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.486399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.486400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.486410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.486413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.486414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1788 a16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.486416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.486417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.496399 LLDP, length 82 [|LLDP] 19:52:12.496401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.496422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.496423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1790 428e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.496425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.496426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.496427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.496436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.496437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.506386 LLDP, length 82 [|LLDP] 19:52:12.506388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.506397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.506398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.506399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.506412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.506415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.506415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1797 e3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.506417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.506418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.506419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.506421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.506422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.506423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.506424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.516379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.516381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.516391 LLDP, length 82 [|LLDP] 19:52:12.516392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.516405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.516405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 179f 84ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.516407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.516408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.516409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.516415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.516416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.516417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.516418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.516419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.516420 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.526377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.526379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.526389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.526390 LLDP, length 82 [|LLDP] 19:52:12.526392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.526403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.526404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.526419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.526420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17a7 25ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.526421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.526422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.526423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.526424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.526425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.526426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.536397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.536400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.536414 LLDP, length 82 [|LLDP] 19:52:12.536416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.536430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.536431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17ae c70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.536433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.536434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.536435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.536442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.536443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.536444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.536445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.536446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.536447 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.546385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.546387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.546396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.546397 LLDP, length 82 [|LLDP] 19:52:12.546399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.546411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.546412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.546428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.546428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17b6 682e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.546430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.546431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.546432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.546433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.546434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.546435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.556380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.556382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.556391 LLDP, length 82 [|LLDP] 19:52:12.556393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.556405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.556406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17be 094e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.556407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.556408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.556410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.556416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.556418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.556419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.556420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.556421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.556421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.566376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.566378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.566387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.566388 LLDP, length 82 [|LLDP] 19:52:12.566391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.566401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.566403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.566418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.566418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17c5 aa6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.566420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.566421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.566422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.566423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.576379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.576381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.576390 LLDP, length 82 [|LLDP] 19:52:12.576392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.576402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.576403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17cd 4b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.576404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.576405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.576408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.586389 LLDP, length 82 [|LLDP] 19:52:12.586391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.586400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.586401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.586411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.586413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.586414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17d4 ecae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.586416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.586417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.596385 LLDP, length 82 [|LLDP] 19:52:12.596387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.596401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.596402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17dc 8dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.596403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.596404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.596405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.596412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.596414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.606391 LLDP, length 82 [|LLDP] 19:52:12.606393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.606403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.606404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.606405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.606418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.606421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.606422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17e4 2eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.606423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.606424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.606425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.606427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.606428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.606429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.606429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.616386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.616388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.616398 LLDP, length 82 [|LLDP] 19:52:12.616400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.616414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.616414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17eb d00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.616416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.616417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.616418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.616424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.616425 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.616426 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.616427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.616428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.616429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.626377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.626379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.626386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.626387 LLDP, length 82 [|LLDP] 19:52:12.626389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.626400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.626401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.626414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.626415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17f3 712e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.626416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.626417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.626418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.626419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.626420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.626421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.636375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.636377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.636385 LLDP, length 82 [|LLDP] 19:52:12.636387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.636397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.636398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 17fb 124e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.636400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.636401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.636402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.636408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.636409 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.636410 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.636411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.636412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.636413 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.646389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.646391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.646402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.646403 LLDP, length 82 [|LLDP] 19:52:12.646405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.646418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.646419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.646436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.646437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1802 b36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.646439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.646440 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.646441 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.646442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.646443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.646444 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.656382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.656384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.656393 LLDP, length 82 [|LLDP] 19:52:12.656395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.656407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.656408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 180a 548e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.656410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.656411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.656412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.656418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.656419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.656420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.656421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.656422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.656423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.666363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.666365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.666371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.666372 LLDP, length 82 [|LLDP] 19:52:12.666374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.666382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.666384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.666395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.666396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1811 f5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.666398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.666399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.666400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.666401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.676419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.676421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.676427 LLDP, length 82 [|LLDP] 19:52:12.676429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.676438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.676438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1819 96ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.676440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.676441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.676444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.686412 LLDP, length 82 [|LLDP] 19:52:12.686414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.686420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.686421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.686428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.686430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.686431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1821 37ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.686433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.686434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.696382 LLDP, length 82 [|LLDP] 19:52:12.696384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.696393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.696394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1828 d90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.696396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.696397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.696398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.696403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.696405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.706369 LLDP, length 82 [|LLDP] 19:52:12.706371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.706378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.706379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.706380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.706390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.706392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.706393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1830 7a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.706394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.706396 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.706397 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.706398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.706399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.706400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.706400 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.716366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.716368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.716380 LLDP, length 82 [|LLDP] 19:52:12.716381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.716389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.716390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1838 1b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.716391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.716392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.716393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.716399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.716401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.716402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.716403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.716404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.716405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.726367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.726369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.726374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.726375 LLDP, length 82 [|LLDP] 19:52:12.726377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.726385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.726386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.726397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.726398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 183f bc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.726400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.726401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.726402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.726403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.726404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.726405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.736365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.736367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.736379 LLDP, length 82 [|LLDP] 19:52:12.736381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.736390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.736391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1847 5d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.736392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.736393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.736395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.736400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.736401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.736402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.736403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.736404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.736405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.746366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.746367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.746379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.746380 LLDP, length 82 [|LLDP] 19:52:12.746382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.746389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.746390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.746401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.746402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 184e feae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.746403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.746404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.746405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.746406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.746407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.746408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.756379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.756381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.756390 LLDP, length 82 [|LLDP] 19:52:12.756392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.756404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.756405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1856 9fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.756406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.756407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.756408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.756414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.756415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.756416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.756418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.756418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.756419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.766363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.766371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.766378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.766379 LLDP, length 82 [|LLDP] 19:52:12.766381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.766389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.766390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.766402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.766403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 185e 40ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.766404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.766405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.766406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.766407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.776370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.776372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.776378 LLDP, length 82 [|LLDP] 19:52:12.776380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.776388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.776389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1865 e20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.776390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.776391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.776394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.786383 LLDP, length 82 [|LLDP] 19:52:12.786385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.786396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.786397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.786406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.786409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.786410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 186d 832e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.786411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.786413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.796373 LLDP, length 82 [|LLDP] 19:52:12.796374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.796385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.796385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1875 244e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.796387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.796388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.796389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.796395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.796396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.806370 LLDP, length 82 [|LLDP] 19:52:12.806372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.806379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.806380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.806381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.806391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.806393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.806394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 187c c56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.806396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.806397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.806398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.806399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.806400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.806401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.806402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.816369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.816370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.816376 LLDP, length 82 [|LLDP] 19:52:12.816378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.816387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.816387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1884 668e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.816389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.816390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.816391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.816397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.816398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.816400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.816400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.816401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.816402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.826367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.826369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.826383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.826384 LLDP, length 82 [|LLDP] 19:52:12.826386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.826393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.826394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.826405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.826405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 188c 07ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.826407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.826408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.826409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.826410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.826411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.826412 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.836367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.836369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.836381 LLDP, length 82 [|LLDP] 19:52:12.836383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.836391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.836391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1893 a8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.836393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.836394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.836395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.836400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.836401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.836402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.836403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.836404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.836405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.846365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.846367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.846379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.846380 LLDP, length 82 [|LLDP] 19:52:12.846382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.846389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.846391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.846402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.846403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 189b 49ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.846404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.846405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.846406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.846407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.846408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.846409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.856370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.856372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.856384 LLDP, length 82 [|LLDP] 19:52:12.856386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.856394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.856395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18a2 eb0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.856397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.856398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.856399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.856404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.856406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.856407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.856408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.856409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.856410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.866363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.866364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.866370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.866371 LLDP, length 82 [|LLDP] 19:52:12.866373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.866379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.866381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.866391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.866392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18aa 8c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.866393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.866394 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.866395 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.866396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.876389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.876391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.876396 LLDP, length 82 [|LLDP] 19:52:12.876398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.876407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.876407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18b2 2d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.876409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.876410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.876413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.886372 LLDP, length 82 [|LLDP] 19:52:12.886374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.886380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.886381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.886388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.886390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.886391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18b9 ce6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.886392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.886394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.896373 LLDP, length 82 [|LLDP] 19:52:12.896375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.896384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.896385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18c1 6f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.896386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.896387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.896388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.896394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.896395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.906372 LLDP, length 82 [|LLDP] 19:52:12.906374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.906381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.906382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.906382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.906392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.906394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.906395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18c9 10ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.906397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.906398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.906399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.906400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.906401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.906402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.906402 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.916370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.916372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.916377 LLDP, length 82 [|LLDP] 19:52:12.916379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.916387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.916387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18d0 b1ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.916389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.916390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.916391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.916396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.916398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.916399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.916399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.916400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.916401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.926366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.926368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.926380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.926381 LLDP, length 82 [|LLDP] 19:52:12.926383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.926389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.926391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.926402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.926403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18d8 52ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.926404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.926405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.926406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.926407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.926408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.926409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.936371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.936372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.936378 LLDP, length 82 [|LLDP] 19:52:12.936379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.936388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.936389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18df f40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.936390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.936391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.936392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.936397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.936399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.936400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.936401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.936402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.936403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.946366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.946368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.946380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.946381 LLDP, length 82 [|LLDP] 19:52:12.946383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.946389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.946391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.946402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.946403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18e7 952e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.946404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.946405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.946406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.946407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.946408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.946409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.956366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.956368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.956373 LLDP, length 82 [|LLDP] 19:52:12.956375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.956384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.956384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18ef 364e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.956386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.956387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.956388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.956394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.956395 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.956396 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.956397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.956398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:12.956399 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:12.966364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.966366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.966372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.966374 LLDP, length 82 [|LLDP] 19:52:12.966376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.966383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:12.966385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.966396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.966397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18f6 d76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.966398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.966399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.966400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:12.966401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:12.976384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.976386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.976391 LLDP, length 82 [|LLDP] 19:52:12.976392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.976400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.976401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 18fe 788e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.976402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.976403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.976406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.986421 LLDP, length 82 [|LLDP] 19:52:12.986422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.986429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.986430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.986437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.986439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.986440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1906 19ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.986441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.986442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:12.996359 LLDP, length 82 [|LLDP] 19:52:12.996360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:12.996370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:12.996371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 190d bace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:12.996372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:12.996380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:12.996381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.996386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:12.996388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.006376 LLDP, length 82 [|LLDP] 19:52:13.006378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.006384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.006385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.006386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.006397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.006399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.006400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1915 5bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.006402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.006403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.006404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.006405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.006406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.006407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.006408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.016369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.016371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.016383 LLDP, length 82 [|LLDP] 19:52:13.016385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.016394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.016394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 191c fd0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.016396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.016397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.016398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.016403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.016405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.016406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.016407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.016408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.016409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.026370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.026372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.026377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.026378 LLDP, length 82 [|LLDP] 19:52:13.026380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.026388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.026389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.026400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.026401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1924 9e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.026402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.026403 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.026404 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.026405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.026406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.026407 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.036369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.036370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.036376 LLDP, length 82 [|LLDP] 19:52:13.036378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.036386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.036386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 192c 3f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.036388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.036389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.036390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.036395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.036397 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.036398 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.036399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.036400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.036401 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.046368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.046369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.046381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.046382 LLDP, length 82 [|LLDP] 19:52:13.046384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.046391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.046392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.046403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.046403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1933 e06e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.046405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.046406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.046407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.046408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.046409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.046410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.056373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.056375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.056381 LLDP, length 82 [|LLDP] 19:52:13.056383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.056390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.056391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 193b 818e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.056393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.056394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.056395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.056400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.056401 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.056402 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.056403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.056404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.056405 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.066366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.066368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.066380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.066381 LLDP, length 82 [|LLDP] 19:52:13.066383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.066390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.066391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.066403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.066404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1943 22ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.066405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.066406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.066407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.066408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.076385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.076386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.076391 LLDP, length 82 [|LLDP] 19:52:13.076393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.076401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.076402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 194a c3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.076403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.076405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.076408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.086388 LLDP, length 82 [|LLDP] 19:52:13.086389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.086395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.086397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.086403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.086406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.086406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1952 64ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.086408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.086409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.096387 LLDP, length 82 [|LLDP] 19:52:13.096389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.096398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.096399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 195a 060e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.096400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.096401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.096402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.096408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.096410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.106370 LLDP, length 82 [|LLDP] 19:52:13.106372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.106382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.106383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.106384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.106394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.106396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.106397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1961 a72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.106398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.106399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.106400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.106402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.106402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.106404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.106404 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.116379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.116381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.116389 LLDP, length 82 [|LLDP] 19:52:13.116390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.116400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.116401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1969 484e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.116402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.116404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.116405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.116411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.116412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.116413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.116414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.116415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.116416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.126373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.126374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.126387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.126388 LLDP, length 82 [|LLDP] 19:52:13.126391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.126398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.126399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.126410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.126411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1970 e96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.126412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.126413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.126414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.126415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.126416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.126417 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.136370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.136372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.136377 LLDP, length 82 [|LLDP] 19:52:13.136379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.136387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.136388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1978 8a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.136390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.136391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.136392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.136397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.136399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.136400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.136401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.136402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.136403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.146373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.146375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.146381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.146382 LLDP, length 82 [|LLDP] 19:52:13.146384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.146391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.146393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.146404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.146405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1980 2bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.146406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.146407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.146408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.146409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.146410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.146411 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.156371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.156373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.156384 LLDP, length 82 [|LLDP] 19:52:13.156386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.156394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.156395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1987 ccce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.156397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.156398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.156398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.156404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.156405 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.156406 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.156407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.156408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.156409 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.166367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.166369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.166374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.166375 LLDP, length 82 [|LLDP] 19:52:13.166377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.166384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.166385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.166395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.166396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 198f 6dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.166398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.166399 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.166400 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.166401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.176393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.176394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.176400 LLDP, length 82 [|LLDP] 19:52:13.176402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.176410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.176411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1997 0f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.176413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.176414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.176417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.186376 LLDP, length 82 [|LLDP] 19:52:13.186377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.186383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.186384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.186390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.186393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.186393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 199e b02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.186395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.186396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.196382 LLDP, length 82 [|LLDP] 19:52:13.196383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.196393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.196393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19a6 514e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.196395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.196396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.196397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.196403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.196404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.206374 LLDP, length 82 [|LLDP] 19:52:13.206375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.206382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.206383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.206383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.206392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.206395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.206396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19ad f26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.206397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.206398 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.206399 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.206400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.206402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.206402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.206403 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.216375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.216377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.216382 LLDP, length 82 [|LLDP] 19:52:13.216384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.216392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.216393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19b5 938e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.216394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.216395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.216396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.216413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.216415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.216416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.216417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.216418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.216419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.226409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.226412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.226421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.226422 LLDP, length 82 [|LLDP] 19:52:13.226424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.226438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.226439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.226458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.226459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19bd 34ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.226460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.226461 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.226462 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.226463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.226464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.226465 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.236385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.236386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.236400 LLDP, length 82 [|LLDP] 19:52:13.236402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.236414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.236415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19c4 d5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.236417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.236418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.236419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.236424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.236426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.236427 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.236428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.236428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.236429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.246379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.246381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.246394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.246395 LLDP, length 82 [|LLDP] 19:52:13.246398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.246406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.246408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.246419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.246420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19cc 76ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.246422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.246423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.246424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.246425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.246426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.246427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.256375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.256377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.256390 LLDP, length 82 [|LLDP] 19:52:13.256392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.256401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.256401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19d4 180e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.256403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.256404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.256405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.256410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.256412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.256413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.256414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.256415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.256416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.266368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.266376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.266382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.266383 LLDP, length 82 [|LLDP] 19:52:13.266385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.266392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.266393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.266404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.266405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19db b92e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.266406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.266407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.266408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.266409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.276397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.276399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.276408 LLDP, length 82 [|LLDP] 19:52:13.276410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.276423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.276424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19e3 5a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.276425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.276426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.276429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.286384 LLDP, length 82 [|LLDP] 19:52:13.286386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.286393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.286394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.286402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.286404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.286405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19ea fb6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.286407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.286408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.296380 LLDP, length 82 [|LLDP] 19:52:13.296382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.296393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.296394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19f2 9c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.296395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.296396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.296397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.296403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.296405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.306379 LLDP, length 82 [|LLDP] 19:52:13.306381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.306392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.306393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.306394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.306404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.306407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.306408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 19fa 3dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.306409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.306410 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.306412 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.306413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.306414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.306415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.306416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.316378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.316380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.316386 LLDP, length 82 [|LLDP] 19:52:13.316388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.316397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.316397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a01 dece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.316399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.316400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.316401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.316406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.316408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.316409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.316410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.316411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.316412 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.326376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.326378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.326390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.326391 LLDP, length 82 [|LLDP] 19:52:13.326394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.326400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.326402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.326414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.326414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a09 7fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.326416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.326417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.326418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.326419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.326420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.326421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.336380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.336382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.336388 LLDP, length 82 [|LLDP] 19:52:13.336390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.336400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.336400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a11 210e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.336402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.336403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.336404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.336410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.336412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.336413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.336413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.336414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.336415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.346378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.346380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.346386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.346387 LLDP, length 82 [|LLDP] 19:52:13.346389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.346396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.346397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.346409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.346410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a18 c22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.346412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.346413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.346414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.346415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.346415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.346417 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.356375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.356377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.356389 LLDP, length 82 [|LLDP] 19:52:13.356391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.356399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.356400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a20 634e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.356401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.356402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.356403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.356409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.356411 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.356412 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.356413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.356414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.356414 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.366370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.366371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.366382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.366383 LLDP, length 82 [|LLDP] 19:52:13.366385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.366393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.366395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.366406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.366407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a28 046e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.366409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.366410 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.366411 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.366411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.376379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.376381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.376388 LLDP, length 82 [|LLDP] 19:52:13.376390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.376398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.376399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a2f a58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.376401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.376402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.376405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.386379 LLDP, length 82 [|LLDP] 19:52:13.386381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.386388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.386389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.386396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.386398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.386399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a37 46ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.386401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.386402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.396381 LLDP, length 82 [|LLDP] 19:52:13.396382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.396392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.396393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a3e e7ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.396394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.396395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.396396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.396402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.396403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.406380 LLDP, length 82 [|LLDP] 19:52:13.406381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.406392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.406393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.406394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.406404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.406406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.406407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a46 88ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.406408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.406409 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.406410 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.406412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.406412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.406413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.406415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.416376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.416377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.416383 LLDP, length 82 [|LLDP] 19:52:13.416385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.416393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.416394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a4e 2a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.416396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.416397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.416397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.416403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.416404 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.416405 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.416406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.416407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.416408 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.426377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.426378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.426385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.426386 LLDP, length 82 [|LLDP] 19:52:13.426388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.426395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.426396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.426408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.426409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a55 cb2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.426410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.426411 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.426412 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.426413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.426414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.426415 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.436378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.436379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.436385 LLDP, length 82 [|LLDP] 19:52:13.436386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.436395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.436396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a5d 6c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.436397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.436398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.436399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.436405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.436406 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.436407 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.436408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.436409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.436410 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.446378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.446380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.446386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.446387 LLDP, length 82 [|LLDP] 19:52:13.446390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.446396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.446398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.446408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.446409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a65 0d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.446411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.446412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.446413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.446414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.446415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.446416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.456378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.456380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.456385 LLDP, length 82 [|LLDP] 19:52:13.456387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.456395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.456396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a6c ae8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.456398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.456399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.456400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.456405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.456407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.456408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.456409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.456410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.456411 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.466369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.466370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.466383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.466384 LLDP, length 82 [|LLDP] 19:52:13.466386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.466392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.466394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.466404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.466405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a74 4fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.466406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.466407 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.466408 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.466409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.476380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.476382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.476387 LLDP, length 82 [|LLDP] 19:52:13.476388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.476396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.476397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a7b f0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.476398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.476399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.476402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.486384 LLDP, length 82 [|LLDP] 19:52:13.486386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.486392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.486393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.486400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.486402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.486404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a83 91ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.486405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.486406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.496382 LLDP, length 82 [|LLDP] 19:52:13.496384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.496393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.496394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a8b 330e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.496396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.496397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.496398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.496403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.496405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.506381 LLDP, length 82 [|LLDP] 19:52:13.506382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.506396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.506396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.506397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.506407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.506409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.506411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a92 d42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.506412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.506413 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.506414 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.506415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.506416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.506417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.506418 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.516378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.516380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.516386 LLDP, length 82 [|LLDP] 19:52:13.516388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.516397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.516398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1a9a 754e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.516399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.516400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.516401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.516406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.516408 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.516409 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.516410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.516410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.516411 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.526379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.526380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.526392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.526393 LLDP, length 82 [|LLDP] 19:52:13.526396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.526402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.526404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.526415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.526416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1aa2 166e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.526417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.526418 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.526419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.526420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.526421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.526422 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.536384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.536387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.536400 LLDP, length 82 [|LLDP] 19:52:13.536402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.536411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.536411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1aa9 b78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.536413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.536414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.536415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.536421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.536422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.536423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.536424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.536425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.536426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.546380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.546381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.546387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.546388 LLDP, length 82 [|LLDP] 19:52:13.546390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.546397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.546398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.546409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.546410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ab1 58ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.546411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.546412 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.546413 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.546414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.546415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.546416 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.556381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.556383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.556394 LLDP, length 82 [|LLDP] 19:52:13.556396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.556404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.556405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ab8 f9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.556406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.556407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.556408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.556414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.556415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.556416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.556417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.556418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.556419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.566380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.566382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.566388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.566389 LLDP, length 82 [|LLDP] 19:52:13.566391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.566399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.566401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.566412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.566413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ac0 9aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.566414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.566415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.566416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.566417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.576385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.576386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.576392 LLDP, length 82 [|LLDP] 19:52:13.576394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.576402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.576403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ac8 3c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.576404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.576405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.576409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.586381 LLDP, length 82 [|LLDP] 19:52:13.586383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.586390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.586391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.586398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.586400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.586401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1acf dd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.586402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.586403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.596384 LLDP, length 82 [|LLDP] 19:52:13.596385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.596395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.596396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ad7 7e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.596397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.596398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.596399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.596405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.596406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.606387 LLDP, length 82 [|LLDP] 19:52:13.606389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.606396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.606397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.606398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.606411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.606413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.606415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1adf 1f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.606416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.606417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.606418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.606419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.606421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.606422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.606423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.616381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.616383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.616395 LLDP, length 82 [|LLDP] 19:52:13.616397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.616406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.616407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ae6 c08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.616408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.616409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.616410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.616416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.616417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.616418 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.616419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.616420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.616421 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.626382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.626384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.626390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.626391 LLDP, length 82 [|LLDP] 19:52:13.626393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.626400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.626401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.626412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.626413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1aee 61ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.626415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.626415 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.626416 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.626417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.626418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.626419 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.636385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.636387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.636394 LLDP, length 82 [|LLDP] 19:52:13.636396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.636404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.636405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1af6 02ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.636407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.636408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.636409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.636415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.636416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.636417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.636418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.636419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.636420 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.646383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.646385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.646390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.646391 LLDP, length 82 [|LLDP] 19:52:13.646393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.646400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.646401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.646413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.646414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1afd a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.646415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.646416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.646417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.646418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.646419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.646420 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.656380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.656382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.656393 LLDP, length 82 [|LLDP] 19:52:13.656395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.656403 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.656404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b05 450e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.656405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.656406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.656407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.656413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.656414 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.656415 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.656416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.656417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.656418 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.666374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.666376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.666388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.666389 LLDP, length 82 [|LLDP] 19:52:13.666391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.666398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.666404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.666415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.666416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b0c e62e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.666418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.666419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.666420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.666421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.676389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.676391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.676398 LLDP, length 82 [|LLDP] 19:52:13.676400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.676409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.676410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b14 874e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.676412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.676412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.676415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.686402 LLDP, length 82 [|LLDP] 19:52:13.686404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.686414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.686415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.686426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.686428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.686429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b1c 286e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.686431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.686432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.696393 LLDP, length 82 [|LLDP] 19:52:13.696394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.696408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.696409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b23 c98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.696410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.696411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.696412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.696419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.696420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.706388 LLDP, length 82 [|LLDP] 19:52:13.706389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.706397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.706398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.706399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.706410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.706413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.706414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b2b 6aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.706415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.706416 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.706417 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.706419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.706420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.706421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.706422 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.716387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.716388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.716396 LLDP, length 82 [|LLDP] 19:52:13.716398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.716408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.716409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b33 0bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.716411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.716412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.716413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.716418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.716420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.716421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.716422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.716423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.716423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.726395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.726397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.726404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.726405 LLDP, length 82 [|LLDP] 19:52:13.726407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.726415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.726416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.726428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.726429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b3a acee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.726430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.726431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.726432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.726433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.726434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.726435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.736394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.736396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.736403 LLDP, length 82 [|LLDP] 19:52:13.736405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.736414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.736414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b42 4e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.736416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.736417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.736418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.736423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.736425 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.736426 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.736427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.736428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.736429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.746387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.746389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.746396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.746397 LLDP, length 82 [|LLDP] 19:52:13.746400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.746408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.746410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.746421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.746422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b49 ef2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.746423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.746424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.746425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.746426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.746427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.746428 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.756399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.756401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.756410 LLDP, length 82 [|LLDP] 19:52:13.756412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.756424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.756425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b51 904e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.756426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.756428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.756429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.756435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.756436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.756437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.756438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.756439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.756440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.766388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.766389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.766398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.766399 LLDP, length 82 [|LLDP] 19:52:13.766401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.766412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.766413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.766427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.766428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b59 316e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.766430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.766431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.766432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.766433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.776443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.776445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.776453 LLDP, length 82 [|LLDP] 19:52:13.776455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.776466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.776467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b60 d28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.776469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.776470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.776473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.786380 LLDP, length 82 [|LLDP] 19:52:13.786381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.786397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.786398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.786408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.786410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.786411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b68 73ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.786412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.786414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.796400 LLDP, length 82 [|LLDP] 19:52:13.796402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.796417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.796417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b70 14ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.796419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.796420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.796421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.796428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.796429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.806403 LLDP, length 82 [|LLDP] 19:52:13.806405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.806415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.806416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.806417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.806429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.806432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.806432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b77 b5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.806434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.806435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.806436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.806438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.806439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.806440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.806441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.816389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.816391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.816399 LLDP, length 82 [|LLDP] 19:52:13.816400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.816411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.816412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b7f 570e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.816413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.816414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.816415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.816422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.816423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.816424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.816425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.816426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.816427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.826390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.826392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.826400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.826401 LLDP, length 82 [|LLDP] 19:52:13.826403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.826412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.826414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.826426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.826427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b86 f82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.826428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.826429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.826431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.826432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.826432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.826433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.836388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.836390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.836396 LLDP, length 82 [|LLDP] 19:52:13.836398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.836408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.836409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b8e 994e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.836410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.836411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.836412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.836418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.836420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.836421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.836421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.836422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.836423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.846393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.846395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.846402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.846404 LLDP, length 82 [|LLDP] 19:52:13.846406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.846414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.846416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.846428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.846429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b96 3a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.846430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.846431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.846432 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.846433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.846434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.846435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.856391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.856393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.856399 LLDP, length 82 [|LLDP] 19:52:13.856401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.856412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.856413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1b9d db8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.856414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.856415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.856416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.856422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.856423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.856424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.856425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.856426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.856427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.866382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.866383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.866390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.866391 LLDP, length 82 [|LLDP] 19:52:13.866394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.866402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.866404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.866415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.866416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ba5 7cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.866418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.866419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.866420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.866420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.876402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.876404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.876410 LLDP, length 82 [|LLDP] 19:52:13.876412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.876421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.876422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bad 1dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.876423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.876424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.876427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.886401 LLDP, length 82 [|LLDP] 19:52:13.886402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.886411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.886412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.886420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.886422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.886423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bb4 beee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.886424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.886426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.896401 LLDP, length 82 [|LLDP] 19:52:13.896403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.896415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.896416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bbc 600e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.896418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.896419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.896420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.896427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.896429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.906394 LLDP, length 82 [|LLDP] 19:52:13.906396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.906404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.906405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.906406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.906416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.906418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.906419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bc4 012e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.906421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.906422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.906423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.906424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.906425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.906426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.906427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.916395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.916397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.916404 LLDP, length 82 [|LLDP] 19:52:13.916406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.916416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.916417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bcb a24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.916419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.916420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.916421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.916426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.916428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.916429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.916430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.916431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.916431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.926390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.926392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.926399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.926400 LLDP, length 82 [|LLDP] 19:52:13.926402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.926412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.926413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.926426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.926427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bd3 436e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.926428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.926429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.926430 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.926431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.926432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.926433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.936389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.936391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.936399 LLDP, length 82 [|LLDP] 19:52:13.936400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.936410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.936410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bda e48e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.936412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.936413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.936414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.936419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.936421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.936422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.936423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.936424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.936425 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.946388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.946389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.946397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.946398 LLDP, length 82 [|LLDP] 19:52:13.946400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.946409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.946410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.946422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.946423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1be2 85ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.946425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.946426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.946427 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.946428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.946429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.946430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.956391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.956393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.956400 LLDP, length 82 [|LLDP] 19:52:13.956402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.956413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.956413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bea 26ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.956415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.956416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.956417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.956422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.956424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.956425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.956426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.956427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:13.956428 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:13.966396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.966398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.966405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.966406 LLDP, length 82 [|LLDP] 19:52:13.966409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.966418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:13.966420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.966432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.966433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bf1 c7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.966435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.966435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.966436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:13.966437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:13.976395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.976397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.976404 LLDP, length 82 [|LLDP] 19:52:13.976406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.976416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.976417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1bf9 690e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.976419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.976420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.976423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.986397 LLDP, length 82 [|LLDP] 19:52:13.986398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.986406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.986407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.986415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.986417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.986418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c01 0a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.986419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.986421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:13.996377 LLDP, length 82 [|LLDP] 19:52:13.996379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:13.996390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:13.996391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c08 ab4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:13.996392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:13.996393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:13.996394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.996400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:13.996401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.006398 LLDP, length 82 [|LLDP] 19:52:14.006400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.006409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.006410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.006411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.006422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.006425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.006425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c10 4c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.006427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.006428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.006429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.006431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.006432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.006432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.006433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.016391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.016392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.016400 LLDP, length 82 [|LLDP] 19:52:14.016402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.016412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.016413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c17 ed8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.016415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.016416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.016417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.016422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.016424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.016425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.016426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.016427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.016428 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.026392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.026393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.026400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.026401 LLDP, length 82 [|LLDP] 19:52:14.026403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.026411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.026413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.026426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.026426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c1f 8eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.026428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.026429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.026430 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.026431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.026432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.026433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.036391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.036393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.036400 LLDP, length 82 [|LLDP] 19:52:14.036401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.036410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.036411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c27 2fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.036413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.036414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.036415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.036421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.036422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.036423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.036424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.036425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.036426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.046393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.046395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.046401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.046402 LLDP, length 82 [|LLDP] 19:52:14.046404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.046413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.046414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.046427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.046427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c2e d0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.046429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.046430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.046431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.046432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.046433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.046434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.056391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.056393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.056401 LLDP, length 82 [|LLDP] 19:52:14.056402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.056412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.056413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c36 720e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.056414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.056416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.056417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.056422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.056424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.056425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.056425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.056426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.056427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.066401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.066403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.066412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.066413 LLDP, length 82 [|LLDP] 19:52:14.066415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.066426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.066427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.066443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.066444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c3e 132e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.066445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.066446 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.066447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.066448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.076402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.076405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.076414 LLDP, length 82 [|LLDP] 19:52:14.076415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.076428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.076429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c45 b44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.076431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.076432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.076435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.086395 LLDP, length 82 [|LLDP] 19:52:14.086397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.086405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.086406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.086414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.086416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.086417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c4d 556e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.086419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.086420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.096396 LLDP, length 82 [|LLDP] 19:52:14.096397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.096409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.096410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c54 f68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.096411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.096412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.096413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.096419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.096421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.106394 LLDP, length 82 [|LLDP] 19:52:14.106395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.106409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.106410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.106411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.106422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.106425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.106426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c5c 97ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.106427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.106428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.106429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.106430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.106432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.106432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.106434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.116395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.116397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.116404 LLDP, length 82 [|LLDP] 19:52:14.116406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.116416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.116417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c64 38ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.116419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.116420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.116421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.116426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.116427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.116428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.116429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.116430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.116431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.126392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.126393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.126401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.126402 LLDP, length 82 [|LLDP] 19:52:14.126405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.126413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.126415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.126427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.126428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c6b d9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.126429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.126430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.126431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.126432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.126434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.126435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.136394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.136396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.136404 LLDP, length 82 [|LLDP] 19:52:14.136405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.136417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.136417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c73 7b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.136419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.136420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.136421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.136426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.136428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.136429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.136429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.136430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.136431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.146394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.146396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.146404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.146405 LLDP, length 82 [|LLDP] 19:52:14.146407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.146417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.146418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.146431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.146432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c7b 1c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.146433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.146435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.146436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.146437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.146438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.146439 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.156394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.156396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.156403 LLDP, length 82 [|LLDP] 19:52:14.156405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.156415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.156416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c82 bd4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.156417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.156418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.156419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.156425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.156427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.156428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.156429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.156429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.156430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.166387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.166389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.166395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.166396 LLDP, length 82 [|LLDP] 19:52:14.166398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.166408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.166409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.166422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.166422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c8a 5e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.166424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.166425 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.166426 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.166427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.176397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.176399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.176406 LLDP, length 82 [|LLDP] 19:52:14.176408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.176417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.176418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c91 ff8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.176420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.176421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.176424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.186396 LLDP, length 82 [|LLDP] 19:52:14.186398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.186406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.186407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.186415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.186417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.186418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1c99 a0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.186419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.186421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.196397 LLDP, length 82 [|LLDP] 19:52:14.196399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.196410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.196411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ca1 41ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.196413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.196414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.196415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.196421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.196435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.206426 LLDP, length 82 [|LLDP] 19:52:14.206428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.206442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.206443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.206444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.206457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.206461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.206462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ca8 e2ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.206464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.206465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.206466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.206467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.206469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.206469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.206470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.216410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.216412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.216421 LLDP, length 82 [|LLDP] 19:52:14.216423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.216435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.216435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cb0 840e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.216437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.216438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.216439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.216446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.216447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.216448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.216449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.216450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.216451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.226393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.226394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.226400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.226401 LLDP, length 82 [|LLDP] 19:52:14.226403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.226412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.226413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.226425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.226425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cb8 252e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.226427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.226428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.226429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.226430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.226431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.226432 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.236392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.236394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.236400 LLDP, length 82 [|LLDP] 19:52:14.236402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.236412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.236413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cbf c64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.236414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.236415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.236416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.236421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.236423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.236424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.236425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.236426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.236427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.246392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.246394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.246400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.246401 LLDP, length 82 [|LLDP] 19:52:14.246403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.246411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.246412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.246424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.246424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cc7 676e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.246426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.246427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.246428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.246429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.246430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.246431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.256391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.256393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.256398 LLDP, length 82 [|LLDP] 19:52:14.256400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.256408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.256409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ccf 088e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.256411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.256412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.256413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.256418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.256420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.256421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.256422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.256423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.256424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.266384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.266386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.266392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.266393 LLDP, length 82 [|LLDP] 19:52:14.266395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.266402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.266403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.266414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.266415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cd6 a9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.266416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.266417 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.266419 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.266420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.276394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.276395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.276401 LLDP, length 82 [|LLDP] 19:52:14.276402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.276410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.276410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cde 4ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.276412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.276413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.276416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.286393 LLDP, length 82 [|LLDP] 19:52:14.286394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.286400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.286401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.286408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.286410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.286411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ce5 ebee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.286413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.286414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.296394 LLDP, length 82 [|LLDP] 19:52:14.296395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.296404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.296405 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ced 8d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.296406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.296407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.296408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.296413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.296414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.306391 LLDP, length 82 [|LLDP] 19:52:14.306392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.306403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.306404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.306405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.306413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.306416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.306416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cf5 2e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.306418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.306419 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.306420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.306421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.306422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.306423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.306424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.316390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.316392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.316398 LLDP, length 82 [|LLDP] 19:52:14.316400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.316408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.316409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1cfc cf4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.316410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.316411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.316412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.316418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.316420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.316420 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.316421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.316422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.316423 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.326390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.326392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.326404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.326405 LLDP, length 82 [|LLDP] 19:52:14.326407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.326414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.326415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.326426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.326426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d04 706e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.326428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.326429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.326429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.326430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.326431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.326433 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.336395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.336396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.336403 LLDP, length 82 [|LLDP] 19:52:14.336405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.336415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.336415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d0c 118e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.336417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.336418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.336419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.336425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.336426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.336427 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.336428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.336429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.336430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.346392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.346394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.346406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.346407 LLDP, length 82 [|LLDP] 19:52:14.346410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.346417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.346418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.346429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.346430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d13 b2ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.346432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.346433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.346434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.346435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.346436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.346437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.356392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.356394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.356399 LLDP, length 82 [|LLDP] 19:52:14.356401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.356409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.356410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d1b 53ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.356411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.356412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.356413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.356419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.356420 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.356421 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.356422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.356423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.356424 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.366386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.366394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.366401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.366402 LLDP, length 82 [|LLDP] 19:52:14.366404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.366411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.366412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.366424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.366425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d22 f4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.366427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.366428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.366428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.366430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.376394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.376396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.376401 LLDP, length 82 [|LLDP] 19:52:14.376403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.376411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.376412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d2a 960e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.376413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.376415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.376418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.386395 LLDP, length 82 [|LLDP] 19:52:14.386397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.386403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.386404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.386411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.386413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.386413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d32 372e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.386415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.386416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.396398 LLDP, length 82 [|LLDP] 19:52:14.396400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.396409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.396410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d39 d84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.396411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.396412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.396413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.396418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.396420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.406395 LLDP, length 82 [|LLDP] 19:52:14.406397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.406408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.406408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.406409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.406418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.406421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.406422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d41 796e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.406423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.406424 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.406425 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.406426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.406428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.406429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.406429 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.416391 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.416393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.416405 LLDP, length 82 [|LLDP] 19:52:14.416407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.416415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.416416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d49 1a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.416418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.416419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.416420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.416426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.416427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.416428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.416429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.416430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.416431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.426393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.426395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.426401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.426402 LLDP, length 82 [|LLDP] 19:52:14.426404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.426411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.426412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.426423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.426424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d50 bbae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.426426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.426427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.426428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.426429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.426430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.426431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.436394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.436396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.436402 LLDP, length 82 [|LLDP] 19:52:14.436404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.436412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.436413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d58 5cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.436414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.436415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.436416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.436422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.436423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.436424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.436425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.436426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.436427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.446394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.446395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.446400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.446401 LLDP, length 82 [|LLDP] 19:52:14.446403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.446410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.446412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.446423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.446424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d5f fdee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.446426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.446426 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.446428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.446428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.446429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.446430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.456393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.456395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.456401 LLDP, length 82 [|LLDP] 19:52:14.456402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.456411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.456412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d67 9f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.456413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.456414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.456415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.456420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.456422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.456423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.456424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.456425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.456426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.466387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.466389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.466401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.466402 LLDP, length 82 [|LLDP] 19:52:14.466404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.466411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.466412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.466423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.466424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d6f 402e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.466426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.466427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.466428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.466429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.476396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.476398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.476404 LLDP, length 82 [|LLDP] 19:52:14.476405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.476413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.476414 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d76 e14e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.476415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.476416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.476419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.486394 LLDP, length 82 [|LLDP] 19:52:14.486396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.486402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.486403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.486409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.486411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.486412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d7e 826e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.486413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.486415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.496396 LLDP, length 82 [|LLDP] 19:52:14.496397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.496406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.496406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d86 238e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.496408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.496409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.496410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.496415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.496417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.506396 LLDP, length 82 [|LLDP] 19:52:14.506397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.506404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.506405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.506406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.506415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.506418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.506419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d8d c4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.506420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.506421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.506422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.506424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.506425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.506426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.506426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.516395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.516397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.516402 LLDP, length 82 [|LLDP] 19:52:14.516404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.516412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.516412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d95 65ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.516414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.516415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.516416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.516421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.516423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.516424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.516425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.516426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.516427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.526396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.526398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.526411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.526412 LLDP, length 82 [|LLDP] 19:52:14.526414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.526422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.526423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.526434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.526435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1d9d 06ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.526437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.526438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.526438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.526439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.526441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.526442 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.536396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.536397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.536402 LLDP, length 82 [|LLDP] 19:52:14.536404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.536412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.536413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1da4 a80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.536414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.536415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.536417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.536421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.536423 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.536424 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.536425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.536426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.536427 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.546394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.546396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.546402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.546403 LLDP, length 82 [|LLDP] 19:52:14.546406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.546413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.546415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.546427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.546427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dac 492e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.546429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.546430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.546431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.546432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.546433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.546434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.556398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.556400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.556406 LLDP, length 82 [|LLDP] 19:52:14.556408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.556416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.556417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1db3 ea4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.556418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.556419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.556420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.556425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.556427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.556428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.556429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.556430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.556431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.566390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.566392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.566397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.566398 LLDP, length 82 [|LLDP] 19:52:14.566400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.566407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.566408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.566419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.566420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dbb 8b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.566421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.566422 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.566423 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.566424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.576382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.576384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.576397 LLDP, length 82 [|LLDP] 19:52:14.576398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.576407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.576408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dc3 2c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.576409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.576410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.576413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.586412 LLDP, length 82 [|LLDP] 19:52:14.586414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.586420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.586421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.586428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.586430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.586431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dca cdae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.586432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.586434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.596413 LLDP, length 82 [|LLDP] 19:52:14.596414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.596423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.596424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dd2 6ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.596425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.596426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.596427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.596432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.596433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.606397 LLDP, length 82 [|LLDP] 19:52:14.606398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.606404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.606405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.606406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.606415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.606418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.606418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1dda 0fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.606420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.606421 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.606422 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.606424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.606425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.606426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.606426 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.616398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.616399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.616405 LLDP, length 82 [|LLDP] 19:52:14.616407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.616415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.616416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1de1 b10e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.616417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.616418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.616419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.616425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.616427 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.616428 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.616429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.616429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.616430 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.626398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.626400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.626406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.626407 LLDP, length 82 [|LLDP] 19:52:14.626409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.626416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.626418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.626429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.626430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1de9 522e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.626431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.626433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.626434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.626435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.626436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.626437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.636398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.636400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.636406 LLDP, length 82 [|LLDP] 19:52:14.636408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.636416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.636417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1df0 f34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.636419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.636420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.636421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.636426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.636428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.636429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.636430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.636430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.636431 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.646394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.646396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.646402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.646402 LLDP, length 82 [|LLDP] 19:52:14.646405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.646412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.646413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.646424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.646425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1df8 946e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.646426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.646428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.646429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.646430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.646431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.646432 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.656395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.656397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.656409 LLDP, length 82 [|LLDP] 19:52:14.656411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.656419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.656420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e00 358e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.656421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.656422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.656423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.656429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.656430 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.656431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.656432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.656433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.656434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.666397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.666399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.666404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.666405 LLDP, length 82 [|LLDP] 19:52:14.666407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.666414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.666415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.666425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.666427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e07 d6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.666428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.666429 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.666430 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.666431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.676415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.676417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.676423 LLDP, length 82 [|LLDP] 19:52:14.676425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.676435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.676436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e0f 77ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.676437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.676438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.676441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.686410 LLDP, length 82 [|LLDP] 19:52:14.686411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.686417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.686418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.686425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.686428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.686429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e17 18ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.686430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.686432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.696402 LLDP, length 82 [|LLDP] 19:52:14.696403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.696412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.696413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e1e ba0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.696414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.696415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.696416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.696422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.696423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.706402 LLDP, length 82 [|LLDP] 19:52:14.706404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.706410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.706411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.706412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.706422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.706425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.706426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e26 5b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.706427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.706428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.706429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.706430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.706431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.706433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.706434 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.716402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.716403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.716409 LLDP, length 82 [|LLDP] 19:52:14.716411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.716419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.716420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e2d fc4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.716421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.716422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.716423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.716429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.716431 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.716431 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.716433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.716434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.716435 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.726396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.726398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.726403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.726404 LLDP, length 82 [|LLDP] 19:52:14.726406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.726412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.726414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.726424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.726425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e35 9d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.726427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.726428 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.726429 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.726430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.726431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.726432 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.736412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.736414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.736420 LLDP, length 82 [|LLDP] 19:52:14.736422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.736434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.736435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e3d 3e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.736437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.736438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.736439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.736445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.736447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.736448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.736449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.736449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.736450 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.746430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.746433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.746444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.746446 LLDP, length 82 [|LLDP] 19:52:14.746448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.746460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.746461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.746481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.746482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e44 dfae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.746483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.746484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.746485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.746487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.746488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.746489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.756421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.756424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.756433 LLDP, length 82 [|LLDP] 19:52:14.756435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.756447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.756447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e4c 80ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.756449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.756450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.756451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.756457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.756459 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.756460 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.756461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.756463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.756464 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.766410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.766412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.766421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.766423 LLDP, length 82 [|LLDP] 19:52:14.766425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.766433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.766435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.766452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.766453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e54 21ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.766454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.766455 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.766456 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.766457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.776434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.776436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.776446 LLDP, length 82 [|LLDP] 19:52:14.776448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.776458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.776459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e5b c30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.776460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.776462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.776464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.786433 LLDP, length 82 [|LLDP] 19:52:14.786434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.786444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.786446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.786457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.786459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.786460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e63 642e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.786462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.786463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.796402 LLDP, length 82 [|LLDP] 19:52:14.796404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.796418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.796419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e6b 054e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.796420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.796422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.796423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.796430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.796432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.806446 LLDP, length 82 [|LLDP] 19:52:14.806448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.806460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.806461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.806462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.806481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.806484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.806485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e72 a66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.806486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.806487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.806488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.806490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.806491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.806492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.806493 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.816410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.816412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.816419 LLDP, length 82 [|LLDP] 19:52:14.816421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.816432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.816433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e7a 478e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.816435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.816436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.816437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.816443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.816444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.816445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.816446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.816447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.816448 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.826405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.826407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.826420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.826421 LLDP, length 82 [|LLDP] 19:52:14.826423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.826431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.826432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.826446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.826447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e81 e8ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.826448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.826449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.826450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.826451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.826452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.826453 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.836405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.836407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.836414 LLDP, length 82 [|LLDP] 19:52:14.836416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.836425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.836426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e89 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.836428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.836429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.836430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.836436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.836437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.836438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.836439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.836440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.836441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.846405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.846406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.846414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.846415 LLDP, length 82 [|LLDP] 19:52:14.846417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.846425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.846426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.846439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.846440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e91 2aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.846441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.846443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.846444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.846444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.846445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.846446 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.856404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.856406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.856413 LLDP, length 82 [|LLDP] 19:52:14.856415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.856424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.856425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1e98 cc0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.856427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.856428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.856429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.856435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.856436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.856437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.856438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.856439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.856440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.866398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.866400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.866407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.866409 LLDP, length 82 [|LLDP] 19:52:14.866411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.866418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.866419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.866432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.866433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ea0 6d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.866435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.866436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.866437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.866437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.876398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.876400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.876407 LLDP, length 82 [|LLDP] 19:52:14.876408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.876418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.876419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ea8 0e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.876421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.876422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.876425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.886407 LLDP, length 82 [|LLDP] 19:52:14.886409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.886416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.886417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.886427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.886429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.886430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1eaf af6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.886431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.886433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.896413 LLDP, length 82 [|LLDP] 19:52:14.896414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.896425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.896426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1eb7 508e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.896427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.896428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.896430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.896436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.896437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.906406 LLDP, length 82 [|LLDP] 19:52:14.906408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.906414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.906415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.906416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.906427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.906429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.906430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ebe f1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.906431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.906432 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.906433 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.906435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.906436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.906437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.906437 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.916407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.916409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.916416 LLDP, length 82 [|LLDP] 19:52:14.916417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.916427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.916427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ec6 92ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.916429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.916430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.916431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.916437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.916438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.916439 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.916440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.916441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.916442 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.926405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.926407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.926415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.926416 LLDP, length 82 [|LLDP] 19:52:14.926418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.926426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.926428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.926440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.926441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ece 33ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.926443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.926444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.926444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.926445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.926446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.926448 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.936405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.936407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.936414 LLDP, length 82 [|LLDP] 19:52:14.936416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.936425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.936426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ed5 d50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.936427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.936428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.936429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.936435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.936437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.936438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.936439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.936440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.936440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.946404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.946406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.946419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.946420 LLDP, length 82 [|LLDP] 19:52:14.946422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.946429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.946431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.946445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.946445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1edd 762e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.946447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.946448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.946449 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.946450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.946451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.946452 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.956405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.956406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.956413 LLDP, length 82 [|LLDP] 19:52:14.956415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.956424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.956425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ee5 174e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.956426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.956427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.956428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.956433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.956435 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.956436 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.956437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.956438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:14.956439 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:14.966400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.966402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.966408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.966410 LLDP, length 82 [|LLDP] 19:52:14.966412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.966419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:14.966420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.966433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.966433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1eec b86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.966435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.966436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.966437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:14.966438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:14.976417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.976419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.976426 LLDP, length 82 [|LLDP] 19:52:14.976428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.976436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.976438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ef4 598e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.976439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.976440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.976443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.986419 LLDP, length 82 [|LLDP] 19:52:14.986421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.986428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.986429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.986437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.986439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.986440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1efb faae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.986442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.986443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:14.996451 LLDP, length 82 [|LLDP] 19:52:14.996453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:14.996464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:14.996465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f03 9bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:14.996466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:14.996468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:14.996469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.996475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:14.996476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.006406 LLDP, length 82 [|LLDP] 19:52:15.006408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.006415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.006416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.006417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.006428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.006430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.006431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f0b 3cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.006432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.006433 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.006434 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.006436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.006437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.006438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.006439 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.016406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.016408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.016415 LLDP, length 82 [|LLDP] 19:52:15.016416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.016425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.016426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f12 de0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.016427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.016428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.016430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.016435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.016437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.016438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.016439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.016440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.016441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.026408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.026410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.026416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.026417 LLDP, length 82 [|LLDP] 19:52:15.026419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.026426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.026428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.026441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.026442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f1a 7f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.026443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.026444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.026445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.026446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.026447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.026448 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.036406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.036408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.036414 LLDP, length 82 [|LLDP] 19:52:15.036416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.036425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.036426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f22 204e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.036427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.036428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.036429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.036435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.036436 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.036437 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.036438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.036439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.036440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.046406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.046408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.046415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.046416 LLDP, length 82 [|LLDP] 19:52:15.046418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.046425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.046427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.046441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.046442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f29 c16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.046444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.046445 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.046446 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.046447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.046448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.046449 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.056407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.056408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.056415 LLDP, length 82 [|LLDP] 19:52:15.056416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.056426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.056427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f31 628e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.056428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.056429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.056430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.056435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.056437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.056438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.056439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.056439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.056440 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.066408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.066410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.066416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.066417 LLDP, length 82 [|LLDP] 19:52:15.066420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.066427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.066428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.066441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.066442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f39 03ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.066443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.066444 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.066445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.066446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.076425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.076427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.076434 LLDP, length 82 [|LLDP] 19:52:15.076435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.076444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.076445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f40 a4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.076446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.076447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.076450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.086393 LLDP, length 82 [|LLDP] 19:52:15.086395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.086403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.086404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.086412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.086414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.086415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f48 45ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.086416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.086418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.096394 LLDP, length 82 [|LLDP] 19:52:15.096395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.096406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.096406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f4f e70e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.096408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.096409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.096410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.096417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.096419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.106409 LLDP, length 82 [|LLDP] 19:52:15.106411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.106419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.106420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.106421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.106432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.106435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.106435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f57 882e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.106437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.106438 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.106439 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.106441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.106441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.106442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.106443 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.116406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.116408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.116421 LLDP, length 82 [|LLDP] 19:52:15.116422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.116432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.116433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f5f 294e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.116434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.116435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.116436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.116442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.116443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.116444 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.116445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.116446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.116447 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.126407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.126409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.126423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.126424 LLDP, length 82 [|LLDP] 19:52:15.126426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.126433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.126435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.126448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.126449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f66 ca6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.126450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.126451 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.126452 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.126453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.126454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.126455 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.136413 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.136415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.136424 LLDP, length 82 [|LLDP] 19:52:15.136426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.136436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.136437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f6e 6b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.136438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.136439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.136440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.136446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.136448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.136449 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.136449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.136450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.136451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.146408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.146409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.146417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.146418 LLDP, length 82 [|LLDP] 19:52:15.146420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.146427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.146429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.146442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.146442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f76 0cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.146444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.146445 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.146446 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.146447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.146448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.146449 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.156406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.156407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.156414 LLDP, length 82 [|LLDP] 19:52:15.156416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.156426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.156427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f7d adce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.156428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.156429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.156430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.156435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.156437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.156438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.156439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.156440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.156441 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.166403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.166405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.166412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.166413 LLDP, length 82 [|LLDP] 19:52:15.166416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.166423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.166424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.166438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.166439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f85 4eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.166441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.166441 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.166442 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.166444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.176459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.176473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.176481 LLDP, length 82 [|LLDP] 19:52:15.176483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.176491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.176491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f8c f00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.176493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.176494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.176497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.186442 LLDP, length 82 [|LLDP] 19:52:15.186444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.186456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.186457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.186470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.186473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.186474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f94 912e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.186476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.186478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.196420 LLDP, length 82 [|LLDP] 19:52:15.196422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.196432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.196433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1f9c 324e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.196435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.196435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.196436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.196437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.196448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.196450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.196451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.196457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.196459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.196460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.196461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.206425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.206427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.206437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.206438 LLDP, length 82 [|LLDP] 19:52:15.206440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.206449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.206450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.206468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.206469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fa3 d36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.206470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.206471 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.206472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.206473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.206474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.206476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.216417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.216419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.216434 LLDP, length 82 [|LLDP] 19:52:15.216436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.216446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.216447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fab 748e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.216448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.216449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.216450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.216456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.216458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.216459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.216460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.216461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.216462 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.226416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.226418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.226432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.226434 LLDP, length 82 [|LLDP] 19:52:15.226436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.226445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.226446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.226461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.226462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fb3 15ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.226464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.226464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.226465 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.226467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.226468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.226469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.236409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.236412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.236425 LLDP, length 82 [|LLDP] 19:52:15.236427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.236437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.236438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fba b6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.236439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.236440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.236441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.236447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.236449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.236450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.236451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.236452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.236453 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.246422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.246424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.246433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.246434 LLDP, length 82 [|LLDP] 19:52:15.246436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.246446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.246447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.246464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.246465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fc2 57ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.246466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.246467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.246468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.246469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.246470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.246471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.256405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.256407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.256414 LLDP, length 82 [|LLDP] 19:52:15.256416 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.256426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.256427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fc9 f90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.256428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.256429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.256430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.256436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.256437 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.256438 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.256439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.266457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.266459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.266466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.266467 LLDP, length 82 [|LLDP] 19:52:15.266470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.266478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.266489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.266490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fd1 9a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.266491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.276426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.276427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.276434 LLDP, length 82 [|LLDP] 19:52:15.276436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.276445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.276446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fd9 3b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.276448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.276449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.276452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.286394 LLDP, length 82 [|LLDP] 19:52:15.286396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.286403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.286404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.286412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.286415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.286416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fe0 dc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.286417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.286419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.296422 LLDP, length 82 [|LLDP] 19:52:15.296424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.296434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.296435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fe8 7d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.296436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.296437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.296438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.296439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.296449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.296450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.296451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.296457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.296459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.296460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.296461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.306424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.306426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.306436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.306437 LLDP, length 82 [|LLDP] 19:52:15.306439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.306449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.306450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.306466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.306467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ff0 1eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.306468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.306469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.306470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.306472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.306473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.306474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.316417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.316418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.316425 LLDP, length 82 [|LLDP] 19:52:15.316427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.316437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.316437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1ff7 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.316439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.316440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.316441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.316447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.316449 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.316450 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.316451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.316452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.316452 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.326414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.326416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.326424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.326425 LLDP, length 82 [|LLDP] 19:52:15.326427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.326434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.326435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.326450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.326451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 1fff 60ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.326453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.326454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.326455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.326456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.326457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.326458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.336416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.336417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.336424 LLDP, length 82 [|LLDP] 19:52:15.336426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.336436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.336436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2007 020e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.336438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.336439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.336440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.336446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.336447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.336448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.336449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.336450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.336451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.346415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.346417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.346425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.346426 LLDP, length 82 [|LLDP] 19:52:15.346428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.346436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.346438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.346452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.346453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 200e a32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.346455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.346456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.346457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.346458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.346458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.346459 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.356409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.356411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.356419 LLDP, length 82 [|LLDP] 19:52:15.356421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.356431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.356432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2016 444e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.356434 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.356435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.356436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.356441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.356442 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.356443 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.356444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.366420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.366422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.366430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.366431 LLDP, length 82 [|LLDP] 19:52:15.366433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.366441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.366452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.366453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 201d e56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.366454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.376400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.376402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.376408 LLDP, length 82 [|LLDP] 19:52:15.376410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.376418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.376419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2025 868e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.376421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.376422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.376425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.386402 LLDP, length 82 [|LLDP] 19:52:15.386403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.386410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.386411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.386421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.386423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.386424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 202d 27ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.386426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.386427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.396417 LLDP, length 82 [|LLDP] 19:52:15.396418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.396429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.396429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2034 c8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.396431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.396431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.396432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.396433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.396443 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.396445 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.396446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.396452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.396454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.396455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.396456 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.406417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.406418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.406426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.406428 LLDP, length 82 [|LLDP] 19:52:15.406430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.406437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.406438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.406453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.406454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 203c 69ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.406455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.406456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.406457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.406458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.406460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.406461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.416415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.416417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.416424 LLDP, length 82 [|LLDP] 19:52:15.416425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.416436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.416437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2044 0b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.416438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.416439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.416440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.416446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.416447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.416448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.416449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.416450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.416451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.426425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.426427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.426436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.426437 LLDP, length 82 [|LLDP] 19:52:15.426440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.426448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.426450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.426467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.426468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 204b ac2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.426469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.426470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.426471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.426472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.426474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.426475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.436507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.436509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.436517 LLDP, length 82 [|LLDP] 19:52:15.436519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.436529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.436529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2053 4d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.436531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.436532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.436533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.436540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.436541 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.436542 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.436543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.436544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.436545 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.446432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.446434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.446444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.446445 LLDP, length 82 [|LLDP] 19:52:15.446447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.446459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.446460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.446479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.446480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 205a ee6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.446482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.446483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.446484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.446485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.446486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.446487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.456421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.456423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.456432 LLDP, length 82 [|LLDP] 19:52:15.456434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.456446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.456447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2062 8f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.456448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.456450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.456451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.456456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.456458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.456459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.456460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.466439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.466442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.466451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.466452 LLDP, length 82 [|LLDP] 19:52:15.466454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.466464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.466478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.466479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 206a 30ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.466480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.476427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.476429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.476439 LLDP, length 82 [|LLDP] 19:52:15.476441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.476452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.476453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2071 d1ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.476455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.476456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.476458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.486433 LLDP, length 82 [|LLDP] 19:52:15.486436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.486445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.486446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.486457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.486460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.486460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2079 72ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.486462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.486463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.496437 LLDP, length 82 [|LLDP] 19:52:15.496439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.496451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.496452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2081 140e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.496453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.496454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.496455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.496456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.496468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.496470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.496471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.496476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.496478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.496479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.496479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.506439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.506441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.506451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.506452 LLDP, length 82 [|LLDP] 19:52:15.506455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.506464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.506465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.506483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.506484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2088 b52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.506485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.506487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.506487 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.506488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.506489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.506490 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.516424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.516426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.516441 LLDP, length 82 [|LLDP] 19:52:15.516444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.516455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.516456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2090 564e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.516457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.516458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.516459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.516466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.516467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.516468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.516469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.516470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.516471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.526430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.526432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.526441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.526442 LLDP, length 82 [|LLDP] 19:52:15.526444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.526454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.526455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.526471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.526472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2097 f76e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.526473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.526474 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.526475 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.526476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.526477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.526479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.536428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.536430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.536438 LLDP, length 82 [|LLDP] 19:52:15.536440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.536451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.536451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 209f 988e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.536453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.536454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.536455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.536461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.536463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.536464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.536465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.536466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.536467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.546422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.546424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.546433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.546434 LLDP, length 82 [|LLDP] 19:52:15.546436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.546445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.546447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.546462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.546463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20a7 39ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.546465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.546465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.546466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.546467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.546468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.546470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.556420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.556422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.556430 LLDP, length 82 [|LLDP] 19:52:15.556432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.556442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.556443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20ae dace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.556444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.556446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.556447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.556452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.556454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.556455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.556456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.566437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.566439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.566450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.566451 LLDP, length 82 [|LLDP] 19:52:15.566453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.566464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.566478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.566479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20b6 7bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.566481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.576429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.576431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.576441 LLDP, length 82 [|LLDP] 19:52:15.576443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.576454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.576454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20be 1d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.576456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.576457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.576460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.586446 LLDP, length 82 [|LLDP] 19:52:15.586448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.586457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.586458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.586469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.586472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.586472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20c5 be2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.586474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.586476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.596430 LLDP, length 82 [|LLDP] 19:52:15.596432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.596449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.596450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20cd 5f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.596451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.596452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.596453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.596454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.596465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.596467 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.596468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.596473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.596475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.596476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.596477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.606437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.606439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.606449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.606450 LLDP, length 82 [|LLDP] 19:52:15.606452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.606463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.606465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.606484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.606485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20d5 006e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.606487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.606487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.606488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.606489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.606491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.606492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.616425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.616428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.616436 LLDP, length 82 [|LLDP] 19:52:15.616438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.616451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.616452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20dc a18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.616453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.616454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.616455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.616462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.616463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.616464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.616465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.616467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.616467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.626428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.626430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.626439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.626440 LLDP, length 82 [|LLDP] 19:52:15.626442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.626453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.626454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.626469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.626470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20e4 42ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.626471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.626472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.626473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.626474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.626475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.626476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.636428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.636430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.636439 LLDP, length 82 [|LLDP] 19:52:15.636441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.636453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.636454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20eb e3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.636455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.636456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.636458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.636464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.636466 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.636467 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.636467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.636468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.636469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.646431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.646433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.646441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.646443 LLDP, length 82 [|LLDP] 19:52:15.646445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.646456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.646458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.646472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.646473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20f3 84ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.646475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.646476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.646476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.646477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.646478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.646479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.656423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.656425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.656434 LLDP, length 82 [|LLDP] 19:52:15.656435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.656447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.656448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 20fb 260e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.656450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.656451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.656452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.656458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.656459 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.656460 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.656461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.666430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.666432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.666443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.666444 LLDP, length 82 [|LLDP] 19:52:15.666446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.666457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.666469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.666470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2102 c72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.666472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.676431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.676433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.676442 LLDP, length 82 [|LLDP] 19:52:15.676444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.676456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.676457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 210a 684e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.676459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.676460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.676463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.686435 LLDP, length 82 [|LLDP] 19:52:15.686436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.686447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.686448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.686460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.686462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.686463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2112 096e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.686465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.686466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.696430 LLDP, length 82 [|LLDP] 19:52:15.696432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.696445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.696446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2119 aa8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.696448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.696449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.696450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.696451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.696461 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.696463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.696464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.696470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.696472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.696473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.696473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.706418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.706420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.706434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.706435 LLDP, length 82 [|LLDP] 19:52:15.706437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.706445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.706446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.706459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.706460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2121 4bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.706462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.706463 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.706464 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.706465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.706466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.706467 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.716414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.716416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.716429 LLDP, length 82 [|LLDP] 19:52:15.716431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.716440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.716440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2128 ecce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.716442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.716443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.716444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.716450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.716451 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.716452 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.716453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.716454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.716455 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.726430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.726432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.726441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.726442 LLDP, length 82 [|LLDP] 19:52:15.726444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.726455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.726456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.726470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.726471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2130 8dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.726472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.726473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.726474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.726475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.726476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.726477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.736417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.736419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.736425 LLDP, length 82 [|LLDP] 19:52:15.736426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.736435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.736435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2138 2f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.736437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.736438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.736439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.736445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.736447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.736448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.736449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.736450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.736451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.746414 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.746416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.746421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.746423 LLDP, length 82 [|LLDP] 19:52:15.746425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.746432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.746433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.746444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.746446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 213f d02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.746447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.746448 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.746449 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.746450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.746451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.746452 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.756422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.756424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.756432 LLDP, length 82 [|LLDP] 19:52:15.756434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.756446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.756447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2147 714e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.756448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.756449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.756450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.756455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.756457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.756458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.756459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.766426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.766427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.766435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.766436 LLDP, length 82 [|LLDP] 19:52:15.766438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.766448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.766458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.766459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 214f 126e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.766461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.776422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.776424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.776432 LLDP, length 82 [|LLDP] 19:52:15.776433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.776443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.776444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2156 b38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.776446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.776447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.776449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.786421 LLDP, length 82 [|LLDP] 19:52:15.786422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.786429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.786430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.786438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.786440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.786441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 215e 54ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.786442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.786444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.796425 LLDP, length 82 [|LLDP] 19:52:15.796427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.796440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.796441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2165 f5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.796443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.796444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.796445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.796446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.796456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.796458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.796458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.796465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.796466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.796468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.796468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.806436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.806438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.806447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.806448 LLDP, length 82 [|LLDP] 19:52:15.806450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.806466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.806468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.806484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.806485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 216d 96ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.806486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.806487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.806488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.806489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.806490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.806491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.816421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.816422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.816435 LLDP, length 82 [|LLDP] 19:52:15.816436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.816445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.816446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2175 380e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.816447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.816448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.816449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.816455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.816457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.816458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.816459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.816460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.816461 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.826419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.826421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.826427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.826428 LLDP, length 82 [|LLDP] 19:52:15.826430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.826437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.826438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.826450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.826451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 217c d92e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.826452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.826453 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.826454 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.826455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.826456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.826457 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.836415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.836417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.836423 LLDP, length 82 [|LLDP] 19:52:15.836425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.836434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.836435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2184 7a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.836437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.836438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.836438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.836445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.836446 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.836447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.836448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.836449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.836450 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.846418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.846420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.846427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.846428 LLDP, length 82 [|LLDP] 19:52:15.846430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.846437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.846439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.846451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.846452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 218c 1b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.846453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.846454 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.846455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.846456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.846457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.846458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.856411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.856419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.856424 LLDP, length 82 [|LLDP] 19:52:15.856426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.856434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.856435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2193 bc8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.856437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.856438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.856439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.856444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.856446 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.856447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.856448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.866416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.866418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.866423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.866424 LLDP, length 82 [|LLDP] 19:52:15.866426 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.866434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.866442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.866442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 219b 5dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.866444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.876436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.876438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.876447 LLDP, length 82 [|LLDP] 19:52:15.876449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.876462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.876463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21a2 fece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.876465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.876466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.876469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.886422 LLDP, length 82 [|LLDP] 19:52:15.886423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.886430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.886431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.886438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.886441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.886442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21aa 9fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.886443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.886445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.896420 LLDP, length 82 [|LLDP] 19:52:15.896421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.896431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.896432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21b2 410e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.896433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.896434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.896435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.896436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.896445 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.896447 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.896448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.896454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.896456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.896457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.896458 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.906426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.906428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.906436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.906437 LLDP, length 82 [|LLDP] 19:52:15.906439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.906455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.906456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.906470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.906471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21b9 e22e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.906472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.906473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.906474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.906475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.906476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.906477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.916440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.916443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.916453 LLDP, length 82 [|LLDP] 19:52:15.916455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.916466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.916467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21c1 834e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.916469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.916470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.916471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.916477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.916479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.916480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.916481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.916482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.916482 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.926420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.926421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.926434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.926435 LLDP, length 82 [|LLDP] 19:52:15.926438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.926446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.926447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.926459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.926460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21c9 246e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.926461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.926462 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.926463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.926464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.926465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.926466 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.936418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.936419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.936425 LLDP, length 82 [|LLDP] 19:52:15.936427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.936435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.936436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21d0 c58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.936437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.936439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.936440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.936445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.936447 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.936448 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.936449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.936450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.936451 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.946450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.946452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.946466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.946467 LLDP, length 82 [|LLDP] 19:52:15.946470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.946482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.946483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.946503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.946504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21d8 66ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.946506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.946506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.946507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.946509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.946510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.946511 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:15.956426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.956428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.956437 LLDP, length 82 [|LLDP] 19:52:15.956439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.956453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.956454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21e0 07ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.956455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.956456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.956457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.956463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.956465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.956466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.956467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.966427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.966429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.966436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.966437 LLDP, length 82 [|LLDP] 19:52:15.966439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.966448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.966458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.966459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21e7 a8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.966460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.976426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.976428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.976434 LLDP, length 82 [|LLDP] 19:52:15.976436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.976445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.976446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21ef 4a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.976448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.976449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.976452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.986427 LLDP, length 82 [|LLDP] 19:52:15.986429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.986437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.986438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.986447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.986450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.986450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21f6 eb2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.986452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.986454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.996426 LLDP, length 82 [|LLDP] 19:52:15.996428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:15.996440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:15.996441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 21fe 8c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:15.996442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:15.996444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:15.996445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:15.996445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.996455 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.996457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:15.996458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:15.996463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:15.996464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:15.996465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:15.996466 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.006423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.006425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.006432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.006433 LLDP, length 82 [|LLDP] 19:52:16.006436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.006444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.006445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.006457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.006458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2206 2d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.006459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.006460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.006461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.006462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.006463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.006464 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.016425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.016427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.016434 LLDP, length 82 [|LLDP] 19:52:16.016435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.016445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.016446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 220d ce8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.016447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.016448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.016449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.016455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.016457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.016458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.016459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.016460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.016460 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.026422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.026424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.026431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.026432 LLDP, length 82 [|LLDP] 19:52:16.026434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.026442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.026444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.026455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.026456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2215 6fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.026457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.026458 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.026459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.026460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.026461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.026462 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.036425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.036427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.036442 LLDP, length 82 [|LLDP] 19:52:16.036444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.036454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.036454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 221d 10ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.036456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.036457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.036458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.036463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.036465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.036466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.036467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.036468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.036469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.046424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.046426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.046439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.046440 LLDP, length 82 [|LLDP] 19:52:16.046442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.046452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.046453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.046465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.046466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2224 b1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.046467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.046468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.046469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.046470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.046471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.046472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.056418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.056420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.056427 LLDP, length 82 [|LLDP] 19:52:16.056429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.056439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.056440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 222c 530e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.056442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.056443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.056444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.056449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.056451 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.056452 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.056453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.066424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.066426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.066433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.066434 LLDP, length 82 [|LLDP] 19:52:16.066436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.066445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.066455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.066455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2233 f42e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.066457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.076425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.076426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.076433 LLDP, length 82 [|LLDP] 19:52:16.076435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.076444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.076445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 223b 954e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.076447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.076448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.076451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.086428 LLDP, length 82 [|LLDP] 19:52:16.086430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.086437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.086438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.086446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.086449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.086450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2243 366e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.086451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.086452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.096428 LLDP, length 82 [|LLDP] 19:52:16.096430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.096442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.096443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 224a d78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.096445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.096446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.096447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.096448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.096457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.096459 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.096460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.096465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.096467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.096467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.096468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.106424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.106426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.106441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.106442 LLDP, length 82 [|LLDP] 19:52:16.106444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.106453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.106455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.106468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.106468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2252 78ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.106470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.106471 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.106472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.106473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.106474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.106475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.116427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.116429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.116437 LLDP, length 82 [|LLDP] 19:52:16.116439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.116449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.116450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 225a 19ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.116451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.116452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.116453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.116459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.116460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.116461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.116462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.116463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.116464 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.126427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.126428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.126436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.126437 LLDP, length 82 [|LLDP] 19:52:16.126439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.126448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.126450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.126462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.126463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2261 baee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.126464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.126465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.126466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.126467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.126468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.126470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.136424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.136426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.136433 LLDP, length 82 [|LLDP] 19:52:16.136435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.136445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.136446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2269 5c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.136447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.136448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.136449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.136455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.136456 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.136457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.136458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.136459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.136460 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.146428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.146430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.146446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.146447 LLDP, length 82 [|LLDP] 19:52:16.146450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.146459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.146460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.146481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.146482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2270 fd2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.146483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.146485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.146486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.146487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.146504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.146506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.156448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.156450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.156460 LLDP, length 82 [|LLDP] 19:52:16.156462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.156477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.156478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2278 9e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.156479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.156480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.156481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.156488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.156489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.156490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.156491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.166450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.166452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.166462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.166463 LLDP, length 82 [|LLDP] 19:52:16.166466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.166477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.166493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.166494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2280 3f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.166495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.176442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.176443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.176449 LLDP, length 82 [|LLDP] 19:52:16.176451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.176460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.176461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2287 e08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.176462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.176463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.176466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.186414 LLDP, length 82 [|LLDP] 19:52:16.186415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.186423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.186424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.186431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.186433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.186434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 228f 81ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.186436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.186437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.196425 LLDP, length 82 [|LLDP] 19:52:16.196427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.196439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.196440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2297 22ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.196441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.196442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.196443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.196444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.196453 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.196455 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.196456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.196461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.196463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.196464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.196465 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.206429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.206431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.206440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.206441 LLDP, length 82 [|LLDP] 19:52:16.206443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.206453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.206454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.206469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.206470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 229e c3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.206471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.206472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.206473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.206475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.206476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.206477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.216479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.216482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.216499 LLDP, length 82 [|LLDP] 19:52:16.216502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.216522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.216523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22a6 650e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.216524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.216525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.216527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.216533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.216535 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.216536 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.216538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.216539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.216540 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.226484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.226486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.226504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.226505 LLDP, length 82 [|LLDP] 19:52:16.226508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.226524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.226525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.226551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.226552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22ae 062e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.226553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.226554 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.226555 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.226556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.226557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.226558 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.236479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.236483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.236498 LLDP, length 82 [|LLDP] 19:52:16.236501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.236519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.236520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22b5 a74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.236521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.236522 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.236523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.236531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.236532 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.236533 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.236534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.236535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.236536 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.246487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.246490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.246506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.246507 LLDP, length 82 [|LLDP] 19:52:16.246510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.246525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.246526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.246551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.246551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22bd 486e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.246553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.246554 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.246555 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.246556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.246557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.246558 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.256474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.256477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.256494 LLDP, length 82 [|LLDP] 19:52:16.256497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.256515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.256515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22c4 e98e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.256517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.256518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.256520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.256527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.256528 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.256529 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.256530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.266490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.266493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.266509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.266510 LLDP, length 82 [|LLDP] 19:52:16.266513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.266528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.266548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.266549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22cc 8aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.266550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.276479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.276482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.276497 LLDP, length 82 [|LLDP] 19:52:16.276500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.276516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.276517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22d4 2bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.276519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.276520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.276522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.286473 LLDP, length 82 [|LLDP] 19:52:16.286475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.286490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.286491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.286509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.286512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.286513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22db ccee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.286515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.286516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.296434 LLDP, length 82 [|LLDP] 19:52:16.296436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.296450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.296450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22e3 6e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.296452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.296453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.296454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.296455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.296465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.296467 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.296468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.296474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.296476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.296477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.296477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.306433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.306435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.306442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.306443 LLDP, length 82 [|LLDP] 19:52:16.306445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.306455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.306457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.306471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.306472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22eb 0f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.306473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.306474 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.306475 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.306476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.306477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.306478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.316430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.316432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.316440 LLDP, length 82 [|LLDP] 19:52:16.316441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.316452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.316453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22f2 b04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.316455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.316456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.316457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.316462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.316464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.316465 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.316466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.316467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.316468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.326429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.326432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.326439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.326440 LLDP, length 82 [|LLDP] 19:52:16.326442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.326451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.326453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.326466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.326467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 22fa 516e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.326469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.326470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.326471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.326472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.326473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.326474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.336438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.336440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.336447 LLDP, length 82 [|LLDP] 19:52:16.336448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.336458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.336459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2301 f28e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.336461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.336462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.336463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.336468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.336470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.336471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.336472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.336473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.336474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.346430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.346432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.346439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.346440 LLDP, length 82 [|LLDP] 19:52:16.346443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.346450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.346452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.346466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.346466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2309 93ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.346468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.346469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.346470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.346471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.346472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.346473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.356425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.356427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.356434 LLDP, length 82 [|LLDP] 19:52:16.356435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.356446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.356447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2311 34ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.356448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.356449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.356450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.356456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.356457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.356458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.356459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.366474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.366476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.366483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.366484 LLDP, length 82 [|LLDP] 19:52:16.366486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.366494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.366505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.366506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2318 d5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.366508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.376416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.376418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.376425 LLDP, length 82 [|LLDP] 19:52:16.376427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.376437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.376438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2320 770e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.376440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.376440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.376443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.386432 LLDP, length 82 [|LLDP] 19:52:16.386433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.386441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.386442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.386450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.386453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.386454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2328 182e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.386455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.386456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.396436 LLDP, length 82 [|LLDP] 19:52:16.396438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.396450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.396451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 232f b94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.396452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.396453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.396454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.396455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.396464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.396466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.396467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.396472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.396474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.396475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.396476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.406426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.406428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.406442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.406443 LLDP, length 82 [|LLDP] 19:52:16.406445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.406454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.406455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.406469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.406470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2337 5a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.406471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.406472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.406473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.406474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.406475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.406476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.416428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.416430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.416438 LLDP, length 82 [|LLDP] 19:52:16.416440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.416450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.416451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 233e fb8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.416452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.416453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.416454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.416460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.416461 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.416462 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.416463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.416464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.416465 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.426431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.426433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.426440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.426441 LLDP, length 82 [|LLDP] 19:52:16.426443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.426452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.426454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.426467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.426468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2346 9cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.426470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.426470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.426472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.426473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.426474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.426475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.436428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.436430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.436445 LLDP, length 82 [|LLDP] 19:52:16.436446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.436455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.436456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 234e 3dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.436457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.436458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.436459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.436465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.436467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.436468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.436469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.436470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.436470 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.446428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.446430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.446443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.446445 LLDP, length 82 [|LLDP] 19:52:16.446447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.446457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.446458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.446471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.446472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2355 deee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.446474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.446475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.446476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.446477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.446478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.446478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.456426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.456428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.456435 LLDP, length 82 [|LLDP] 19:52:16.456436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.456446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.456447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 235d 800e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.456448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.456449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.456450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.456456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.456457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.456458 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.456459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.466432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.466434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.466440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.466441 LLDP, length 82 [|LLDP] 19:52:16.466444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.466452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.466462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.466463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2365 212e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.466465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.476434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.476436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.476443 LLDP, length 82 [|LLDP] 19:52:16.476445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.476455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.476456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 236c c24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.476457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.476459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.476461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.486431 LLDP, length 82 [|LLDP] 19:52:16.486433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.486440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.486441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.486449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.486452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.486452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2374 636e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.486454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.486456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.496432 LLDP, length 82 [|LLDP] 19:52:16.496434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.496450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.496451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 237c 048e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.496452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.496453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.496454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.496455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.496464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.496466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.496467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.496473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.496475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.496475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.496476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.506430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.506432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.506439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.506440 LLDP, length 82 [|LLDP] 19:52:16.506442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.506451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.506452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.506465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.506465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2383 a5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.506467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.506468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.506469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.506470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.506471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.506472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.520489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.520491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.520498 LLDP, length 82 [|LLDP] 19:52:16.520500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.520509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.520511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 238b 46ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.520512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.520513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.520514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.520519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.520521 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.520522 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.520523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.520523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.520524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.526430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.526432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.526438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.526439 LLDP, length 82 [|LLDP] 19:52:16.526441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.526449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.526450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.526463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.526464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2392 e7ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.526466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.526467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.526468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.526468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.526470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.526471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.536433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.536435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.536441 LLDP, length 82 [|LLDP] 19:52:16.536443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.536453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.536454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 239a 890e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.536455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.536456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.536457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.536463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.536464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.536465 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.536466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.536467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.536468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.546436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.546438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.546445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.546446 LLDP, length 82 [|LLDP] 19:52:16.546448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.546456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.546457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.546470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.546471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23a2 2a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.546472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.546473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.546474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.546475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.546477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.546478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.556429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.556431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.556438 LLDP, length 82 [|LLDP] 19:52:16.556440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.556449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.556449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23a9 cb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.556451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.556452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.556453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.556458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.556460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.556461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.556462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.566434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.566436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.566442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.566443 LLDP, length 82 [|LLDP] 19:52:16.566445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.566454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.566464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.566465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23b1 6c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.566467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.576434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.576436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.576443 LLDP, length 82 [|LLDP] 19:52:16.576445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.576455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.576456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23b9 0d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.576457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.576458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.576461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.586435 LLDP, length 82 [|LLDP] 19:52:16.586437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.586444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.586445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.586452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.586455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.586456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23c0 aeae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.586457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.586459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.596434 LLDP, length 82 [|LLDP] 19:52:16.596436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.596448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.596449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23c8 4fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.596450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.596451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.596452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.596453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.596462 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.596463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.596464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.596470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.596471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.596472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.596473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.606433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.606435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.606441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.606442 LLDP, length 82 [|LLDP] 19:52:16.606445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.606453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.606454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.606467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.606468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23cf f0ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.606469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.606470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.606471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.606472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.606473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.606474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.616433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.616435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.616442 LLDP, length 82 [|LLDP] 19:52:16.616444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.616454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.616455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23d7 920e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.616457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.616458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.616459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.616464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.616466 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.616466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.616467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.616468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.616469 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.626429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.626431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.626438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.626439 LLDP, length 82 [|LLDP] 19:52:16.626442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.626450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.626451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.626465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.626465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23df 332e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.626467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.626468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.626469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.626470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.626471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.626472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.636436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.636438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.636444 LLDP, length 82 [|LLDP] 19:52:16.636446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.636456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.636456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23e6 d44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.636458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.636459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.636460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.636465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.636467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.636468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.636469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.636470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.636471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.646432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.646434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.646441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.646442 LLDP, length 82 [|LLDP] 19:52:16.646444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.646452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.646453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.646466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.646467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23ee 756e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.646468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.646469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.646470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.646471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.646472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.646473 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.656426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.656428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.656435 LLDP, length 82 [|LLDP] 19:52:16.656437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.656446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.656446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23f6 168e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.656448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.656449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.656450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.656455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.656457 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.656457 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.656458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.666435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.666437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.666444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.666445 LLDP, length 82 [|LLDP] 19:52:16.666447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.666456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.666467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.666468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 23fd b7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.666469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.676436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.676438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.676445 LLDP, length 82 [|LLDP] 19:52:16.676447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.676457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.676458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2405 58ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.676460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.676461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.676464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.686436 LLDP, length 82 [|LLDP] 19:52:16.686438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.686445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.686446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.686454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.686456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.686457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 240c f9ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.686459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.686460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.696436 LLDP, length 82 [|LLDP] 19:52:16.696438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.696450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.696451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2414 9b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.696453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.696454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.696455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.696456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.696464 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.696466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.696467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.696472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.696474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.696475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.696476 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.706432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.706434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.706447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.706448 LLDP, length 82 [|LLDP] 19:52:16.706450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.706458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.706459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.706473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.706473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 241c 3c2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.706475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.706476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.706477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.706478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.706479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.706480 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.716432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.716434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.716441 LLDP, length 82 [|LLDP] 19:52:16.716443 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.716454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.716455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2423 dd4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.716456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.716457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.716458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.716463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.716465 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.716466 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.716467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.716468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.716468 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.726431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.726433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.726446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.726447 LLDP, length 82 [|LLDP] 19:52:16.726450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.726457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.726459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.726472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.726473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 242b 7e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.726474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.726475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.726476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.726477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.726478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.726479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.736435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.736437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.736443 LLDP, length 82 [|LLDP] 19:52:16.736445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.736455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.736456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2433 1f8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.736458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.736459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.736460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.736465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.736467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.736468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.736469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.736470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.736471 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.746435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.746437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.746444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.746445 LLDP, length 82 [|LLDP] 19:52:16.746447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.746455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.746457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.746470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.746471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 243a c0ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.746472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.746473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.746474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.746475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.746476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.746477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.756443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.756445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.756455 LLDP, length 82 [|LLDP] 19:52:16.756456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.756470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.756471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2442 61ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.756472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.756473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.756474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.756480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.756481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.756482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.756483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.766437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.766439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.766446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.766447 LLDP, length 82 [|LLDP] 19:52:16.766449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.766457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.766469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.766469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 244a 02ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.766471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.776440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.776442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.776449 LLDP, length 82 [|LLDP] 19:52:16.776451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.776461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.776462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2451 a40e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.776463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.776464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.776467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.786437 LLDP, length 82 [|LLDP] 19:52:16.786439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.786447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.786448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.786456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.786458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.786459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2459 452e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.786460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.786461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.796438 LLDP, length 82 [|LLDP] 19:52:16.796440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.796453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.796454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2460 e64e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.796455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.796456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.796457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.796458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.796467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.796469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.796470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.796475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.796476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.796477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.796478 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.806450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.806452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.806461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.806462 LLDP, length 82 [|LLDP] 19:52:16.806465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.806477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.806478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.806495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.806495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2468 876e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.806497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.806498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.806499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.806500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.806501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.806502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.816436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.816438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.816445 LLDP, length 82 [|LLDP] 19:52:16.816447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.816458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.816458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2470 288e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.816460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.816461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.816462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.816467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.816469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.816470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.816471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.816471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.816472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.826434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.826436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.826449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.826450 LLDP, length 82 [|LLDP] 19:52:16.826452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.826461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.826462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.826476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.826477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2477 c9ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.826478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.826479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.826481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.826482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.826482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.826483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.836434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.836436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.836451 LLDP, length 82 [|LLDP] 19:52:16.836452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.836461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.836462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 247f 6ace 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.836464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.836465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.836466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.836471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.836473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.836474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.836475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.836476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.836477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.846438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.846440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.846447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.846448 LLDP, length 82 [|LLDP] 19:52:16.846450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.846459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.846460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.846474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.846475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2487 0bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.846476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.846477 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.846478 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.846479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.846480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.846481 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.856429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.856431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.856437 LLDP, length 82 [|LLDP] 19:52:16.856439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.856449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.856449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 248e ad0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.856451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.856452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.856453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.856458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.856460 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.856461 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.856462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.866436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.866438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.866445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.866446 LLDP, length 82 [|LLDP] 19:52:16.866448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.866457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.866468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.866469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2496 4e2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.866470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.876439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.876441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.876447 LLDP, length 82 [|LLDP] 19:52:16.876449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.876458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.876459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 249d ef4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.876460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.876461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.876464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.886440 LLDP, length 82 [|LLDP] 19:52:16.886442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.886449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.886450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.886458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.886460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.886461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24a5 906e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.886463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.886465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.896440 LLDP, length 82 [|LLDP] 19:52:16.896442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.896453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.896454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24ad 318e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.896456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.896457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.896458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.896459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.896467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.896469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.896470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.896475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.896477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.896478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.896479 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.906441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.906443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.906450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.906451 LLDP, length 82 [|LLDP] 19:52:16.906453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.906461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.906462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.906476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.906477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24b4 d2ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.906478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.906479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.906480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.906481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.906482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.906483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.916437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.916438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.916445 LLDP, length 82 [|LLDP] 19:52:16.916447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.916457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.916458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24bc 73ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.916459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.916460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.916461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.916466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.916468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.916469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.916470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.916471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.916472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.926440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.926442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.926449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.926450 LLDP, length 82 [|LLDP] 19:52:16.926452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.926460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.926462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.926475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.926476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24c4 14ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.926477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.926478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.926479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.926480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.926481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.926482 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.936436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.936438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.936445 LLDP, length 82 [|LLDP] 19:52:16.936447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.936456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.936457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24cb b60e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.936459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.936460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.936461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.936466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.936468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.936469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.936470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.936471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.936472 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.946465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.946467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.946480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.946481 LLDP, length 82 [|LLDP] 19:52:16.946484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.946495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.946497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.946516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.946517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24d3 572e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.946518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.946519 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.946520 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.946522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.946523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.946524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:16.956436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.956438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.956445 LLDP, length 82 [|LLDP] 19:52:16.956447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.956457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.956458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24da f84e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.956459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.956460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.956461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.956467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.956469 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.956470 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.956470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.966441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.966443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.966450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.966451 LLDP, length 82 [|LLDP] 19:52:16.966454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.966462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.966473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.966474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24e2 996e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.966475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.976448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.976451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.976461 LLDP, length 82 [|LLDP] 19:52:16.976462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.976473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.976474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24ea 3a8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.976476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.976477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.976479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.986450 LLDP, length 82 [|LLDP] 19:52:16.986452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.986460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.986461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.986472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.986475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.986476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24f1 dbae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.986477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.986478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.996449 LLDP, length 82 [|LLDP] 19:52:16.996451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:16.996463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:16.996464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 24f9 7cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:16.996465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:16.996467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:16.996467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:16.996468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.996478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.996479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:16.996480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:16.996486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:16.996487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:16.996488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:16.996490 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.006439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.006441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.006447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.006448 LLDP, length 82 [|LLDP] 19:52:17.006451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.006459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.006460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.006474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.006475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2501 1dee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.006476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.006477 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.006478 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.006479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.006480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.006481 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.016450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.016452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.016462 LLDP, length 82 [|LLDP] 19:52:17.016464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.016476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.016477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2508 bf0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.016478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.016480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.016481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.016487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.016489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.016490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.016490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.016491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.016492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.026440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.026442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.026450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.026451 LLDP, length 82 [|LLDP] 19:52:17.026453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.026461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.026463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.026477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.026478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2510 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.026479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.026480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.026481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.026482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.026483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.026484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.036439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.036440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.036447 LLDP, length 82 [|LLDP] 19:52:17.036449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.036459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.036459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2518 014e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.036461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.036462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.036463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.036469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.036470 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.036471 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.036472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.036473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.036474 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.046450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.046452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.046462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.046463 LLDP, length 82 [|LLDP] 19:52:17.046465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.046476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.046477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.046493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.046494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 251f a26e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.046496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.046497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.046497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.046498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.046500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.046501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.056435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.056437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.056444 LLDP, length 82 [|LLDP] 19:52:17.056446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.056456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.056457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2527 438e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.056458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.056459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.056460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.056466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.056467 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.056468 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.056469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.066444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.066446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.066452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.066453 LLDP, length 82 [|LLDP] 19:52:17.066456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.066464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.066475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.066476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 252e e4ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.066477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.076453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.076455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.076464 LLDP, length 82 [|LLDP] 19:52:17.076465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.076476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.076477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2536 85ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.076479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.076480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.076482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.086469 LLDP, length 82 [|LLDP] 19:52:17.086471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.086483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.086484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.086500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.086503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.086503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 253e 26ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.086505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.086506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.096445 LLDP, length 82 [|LLDP] 19:52:17.096447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.096459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.096460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2545 c80e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.096461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.096462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.096463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.096464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.096473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.096475 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.096476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.096483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.096484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.096485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.096486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.106437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.106439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.106453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.106454 LLDP, length 82 [|LLDP] 19:52:17.106456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.106464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.106465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.106479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.106479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 254d 692e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.106481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.106482 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.106483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.106484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.106484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.106486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.116440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.116441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.116456 LLDP, length 82 [|LLDP] 19:52:17.116457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.116468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.116469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2555 0a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.116470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.116471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.116472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.116478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.116479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.116480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.116481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.116482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.116483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.126441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.126444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.126450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.126451 LLDP, length 82 [|LLDP] 19:52:17.126453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.126461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.126463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.126476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.126477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 255c ab6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.126478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.126479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.126480 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.126481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.126482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.126483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.136438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.136440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.136453 LLDP, length 82 [|LLDP] 19:52:17.136467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.136476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.136477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2564 4c8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.136479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.136480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.136481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.136486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.136488 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.136488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.136489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.136490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.136491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.146464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.146466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.146476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.146477 LLDP, length 82 [|LLDP] 19:52:17.146479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.146493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.146495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.146515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.146516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 256b edae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.146518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.146519 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.146520 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.146521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.146522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.146523 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.156440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.156441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.156448 LLDP, length 82 [|LLDP] 19:52:17.156450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.156461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.156462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2573 8ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.156464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.156465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.156466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.156471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.156473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.156474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.156475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.166444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.166446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.166453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.166454 LLDP, length 82 [|LLDP] 19:52:17.166456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.166465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.166477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.166477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 257b 2fee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.166479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.176442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.176444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.176450 LLDP, length 82 [|LLDP] 19:52:17.176452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.176461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.176461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2582 d10e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.176463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.176464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.176467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.186448 LLDP, length 82 [|LLDP] 19:52:17.186449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.186457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.186459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.186466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.186468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.186469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 258a 722e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.186470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.186472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.196443 LLDP, length 82 [|LLDP] 19:52:17.196445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.196460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.196461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2592 134e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.196463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.196464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.196465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.196466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.196475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.196476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.196477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.196482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.196484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.196485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.196486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.206442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.206444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.206451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.206452 LLDP, length 82 [|LLDP] 19:52:17.206454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.206462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.206464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.206476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.206477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2599 b46e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.206479 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.206480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.206481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.206482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.206483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.206484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.216441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.216443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.216450 LLDP, length 82 [|LLDP] 19:52:17.216452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.216461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.216461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25a1 558e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.216463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.216464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.216465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.216470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.216472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.216473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.216474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.216475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.216475 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.226442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.226444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.226451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.226452 LLDP, length 82 [|LLDP] 19:52:17.226454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.226463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.226464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.226478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.226479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25a8 f6ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.226481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.226482 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.226483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.226484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.226485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.226486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.236440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.236442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.236450 LLDP, length 82 [|LLDP] 19:52:17.236451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.236461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.236462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25b0 97ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.236463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.236464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.236465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.236471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.236473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.236474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.236475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.236476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.236477 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.246442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.246444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.246451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.246452 LLDP, length 82 [|LLDP] 19:52:17.246454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.246463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.246465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.246478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.246478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25b8 38ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.246480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.246481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.246482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.246482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.246483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.246484 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.256436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.256438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.256445 LLDP, length 82 [|LLDP] 19:52:17.256447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.256457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.256458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25bf da0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.256459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.256460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.256461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.256466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.256468 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.256469 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.256469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.266444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.266446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.266453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.266454 LLDP, length 82 [|LLDP] 19:52:17.266456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.266463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.266474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.266475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25c7 7b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.266476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.276443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.276445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.276452 LLDP, length 82 [|LLDP] 19:52:17.276453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.276461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.276463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25cf 1c4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.276464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.276465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.276468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.286497 LLDP, length 82 [|LLDP] 19:52:17.286499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.286515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.286516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.286538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.286542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.286543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25d6 bd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.286545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.286546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.296490 LLDP, length 82 [|LLDP] 19:52:17.296492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.296513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.296514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25de 5e8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.296515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.296516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.296517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.296518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.296537 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.296539 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.296540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.296546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.296548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.296549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.296550 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.306449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.306451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.306457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.306459 LLDP, length 82 [|LLDP] 19:52:17.306461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.306471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.306473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.306488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.306489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25e5 ffae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.306490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.306491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.306493 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.306494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.306495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.306496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.316446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.316448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.316455 LLDP, length 82 [|LLDP] 19:52:17.316457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.316467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.316469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25ed a0ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.316470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.316471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.316472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.316478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.316480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.316481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.316482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.316483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.316483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.326444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.326446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.326453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.326454 LLDP, length 82 [|LLDP] 19:52:17.326457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.326466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.326468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.326482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.326483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25f5 41ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.326485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.326485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.326486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.326487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.326488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.326489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.336445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.336447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.336453 LLDP, length 82 [|LLDP] 19:52:17.336455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.336466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.336467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 25fc e30e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.336468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.336469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.336470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.336476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.336478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.336479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.336480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.336481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.336481 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.346447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.346449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.346456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.346457 LLDP, length 82 [|LLDP] 19:52:17.346459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.346467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.346469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.346483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.346484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2604 842e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.346486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.346487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.346488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.346489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.346490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.346491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.356436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.356444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.356451 LLDP, length 82 [|LLDP] 19:52:17.356452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.356462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.356463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 260c 254e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.356464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.356465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.356466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.356472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.356473 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.356474 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.356476 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.369541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.369542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.369549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.369550 LLDP, length 82 [|LLDP] 19:52:17.369552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.369561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.369572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.369573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2613 c66e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.369574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.376447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.376449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.376456 LLDP, length 82 [|LLDP] 19:52:17.376457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.376468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.376469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 261b 678e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.376470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.376471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.376474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.386444 LLDP, length 82 [|LLDP] 19:52:17.386446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.386453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.386454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.386462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.386465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.386465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2623 08ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.386467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.386468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.396449 LLDP, length 82 [|LLDP] 19:52:17.396450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.396461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.396462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 262a a9ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.396464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.396465 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.396466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.396466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.396476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.396478 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.396479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.396484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.396485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.396486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.396487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.406442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.406444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.406457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.406459 LLDP, length 82 [|LLDP] 19:52:17.406461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.406469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.406470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.406483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.406484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2632 4aee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.406485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.406486 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.406487 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.406488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.406489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.406490 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.416442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.416444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.416457 LLDP, length 82 [|LLDP] 19:52:17.416459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.416468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.416469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2639 ec0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.416470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.416471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.416473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.416478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.416479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.416481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.416482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.416483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.416483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.430134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.430136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.430142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.430144 LLDP, length 82 [|LLDP] 19:52:17.430146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.430154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.430155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.430167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.430168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2641 8d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.430170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.430171 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.430172 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.430172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.430173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.430174 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.436444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.436446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.436453 LLDP, length 82 [|LLDP] 19:52:17.436455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.436465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.436466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2649 2e4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.436467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.436468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.436469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.436475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.436476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.436477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.436478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.436479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.436480 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.446446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.446448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.446455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.446456 LLDP, length 82 [|LLDP] 19:52:17.446458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.446466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.446467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.446480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.446481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2650 cf6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.446483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.446483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.446484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.446485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.446486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.446487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.456440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.456442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.456449 LLDP, length 82 [|LLDP] 19:52:17.456451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.456460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.456461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2658 708e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.456462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.456463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.456464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.456470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.456471 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.456472 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.456473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.466446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.466448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.466455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.466456 LLDP, length 82 [|LLDP] 19:52:17.466458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.466466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.466478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.466478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2660 11ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.466480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.476447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.476449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.476456 LLDP, length 82 [|LLDP] 19:52:17.476457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.476466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.476467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2667 b2ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.476469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.476470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.476473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.490752 LLDP, length 82 [|LLDP] 19:52:17.490754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.490761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.490762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.490770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.490772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.490773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 266f 53ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.490774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.490776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.496447 LLDP, length 82 [|LLDP] 19:52:17.496448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.496460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.496461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2676 f50e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.496462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.496463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.496464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.496465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.496474 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.496476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.496477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.496483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.496484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.496485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.496486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.506446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.506448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.506455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.506455 LLDP, length 82 [|LLDP] 19:52:17.506458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.506466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.506467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.506481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.506482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 267e 962e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.506483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.506484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.506485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.506486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.506487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.506488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.516443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.516446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.516459 LLDP, length 82 [|LLDP] 19:52:17.516461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.516470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.516471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2686 374e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.516472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.516473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.516474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.516480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.516481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.516482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.516483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.516484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.516485 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.526443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.526445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.526452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.526453 LLDP, length 82 [|LLDP] 19:52:17.526455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.526464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.526465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.526478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.526478 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 268d d86e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.526480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.526481 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.526482 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.526482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.526484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.526485 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.536445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.536447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.536453 LLDP, length 82 [|LLDP] 19:52:17.536455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.536464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.536465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2695 798e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.536467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.536468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.536469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.536474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.536476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.536477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.536478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.536479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.536480 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.546442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.546444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.546458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.546459 LLDP, length 82 [|LLDP] 19:52:17.546461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.546469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.546470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.546484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.546484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 269d 1aae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.546486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.546487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.546488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.546489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.546489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.546491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.556439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.556441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.556453 LLDP, length 82 [|LLDP] 19:52:17.556455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.556464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.556465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26a4 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.556467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.556468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.556469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.556475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.556476 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.556477 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.556478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.566467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.566468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.566475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.566476 LLDP, length 82 [|LLDP] 19:52:17.566478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.566487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.566498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.566499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26ac 5cee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.566500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.576449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.576450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.576457 LLDP, length 82 [|LLDP] 19:52:17.576459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.576468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.576469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26b3 fe0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.576470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.576472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.576474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.586452 LLDP, length 82 [|LLDP] 19:52:17.586454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.586461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.586462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.586470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.586472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.586473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26bb 9f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.586475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.586476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.596450 LLDP, length 82 [|LLDP] 19:52:17.596452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.596463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.596463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26c3 404e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.596465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.596466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.596467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.596468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.596477 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.596479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.596480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.596485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.596487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.596487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.596489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.606447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.606449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.606463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.606464 LLDP, length 82 [|LLDP] 19:52:17.606466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.606474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.606475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.606488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.606489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26ca e16e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.606491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.606491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.606492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.606493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.606494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.606495 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.616447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.616449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.616456 LLDP, length 82 [|LLDP] 19:52:17.616458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.616468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.616469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26d2 828e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.616470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.616471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.616472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.616478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.616479 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.616481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.616481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.616482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.616483 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.626447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.626449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.626456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.626457 LLDP, length 82 [|LLDP] 19:52:17.626459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.626467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.626469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.626481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.626481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26da 23ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.626483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.626484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.626485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.626486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.626487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.626488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.636445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.636447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.636460 LLDP, length 82 [|LLDP] 19:52:17.636461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.636471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.636472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26e1 c4ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.636473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.636474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.636475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.636480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.636482 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.636483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.636484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.636485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.636486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.646447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.646449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.646456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.646457 LLDP, length 82 [|LLDP] 19:52:17.646459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.646467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.646468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.646480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.646481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26e9 65ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.646483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.646484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.646484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.646485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.646486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.646487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.656441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.656443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.656450 LLDP, length 82 [|LLDP] 19:52:17.656452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.656461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.656462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26f1 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.656463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.656464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.656465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.656471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.656472 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.656473 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.656474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.666450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.666451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.666459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.666460 LLDP, length 82 [|LLDP] 19:52:17.666462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.666471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.666481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.666482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 26f8 a82e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.666484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.676451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.676453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.676459 LLDP, length 82 [|LLDP] 19:52:17.676461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.676470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.676471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2700 494e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.676472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.676473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.676476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.686449 LLDP, length 82 [|LLDP] 19:52:17.686451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.686459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.686460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.686468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.686470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.686471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2707 ea6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.686472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.686474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.696448 LLDP, length 82 [|LLDP] 19:52:17.696450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.696461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.696462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 270f 8b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.696463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.696464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.696465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.696466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.696475 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.696476 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.696478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.696483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.696485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.696486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.696487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.706448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.706450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.706463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.706464 LLDP, length 82 [|LLDP] 19:52:17.706466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.706474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.706475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.706487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.706488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2717 2cae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.706490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.706491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.706491 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.706492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.706493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.706494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.716447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.716449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.716462 LLDP, length 82 [|LLDP] 19:52:17.716464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.716473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.716474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 271e cdce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.716475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.716477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.716478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.716483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.716484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.716485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.716486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.716487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.716488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.726447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.726449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.726462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.726463 LLDP, length 82 [|LLDP] 19:52:17.726465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.726472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.726474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.726486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.726487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2726 6eee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.726488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.726489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.726490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.726491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.726492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.726493 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.736446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.736448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.736461 LLDP, length 82 [|LLDP] 19:52:17.736463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.736473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.736474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 272e 100e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.736475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.736476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.736477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.736482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.736484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.736485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.736486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.736487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.736488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.746448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.746450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.746456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.746457 LLDP, length 82 [|LLDP] 19:52:17.746459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.746468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.746469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.746482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.746483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2735 b12e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.746484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.746485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.746486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.746487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.746488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.746489 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.756457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.756459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.756469 LLDP, length 82 [|LLDP] 19:52:17.756471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.756483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.756484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 273d 524e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.756485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.756486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.756487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.756493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.756495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.756496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.756496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.766467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.766470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.766478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.766479 LLDP, length 82 [|LLDP] 19:52:17.766482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.766493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.766507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.766507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2744 f36e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.766509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.776458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.776460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.776469 LLDP, length 82 [|LLDP] 19:52:17.776471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.776482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.776483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 274c 948e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.776484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.776485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.776488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.786452 LLDP, length 82 [|LLDP] 19:52:17.786454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.786462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.786463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.786471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.786473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.786474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2754 35ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.786476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.786477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.796453 LLDP, length 82 [|LLDP] 19:52:17.796455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.796471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.796472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 275b d6ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.796473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.796474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.796475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.796476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.796485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.796487 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.796489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.796494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.796496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.796497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.796498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.806453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.806455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.806461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.806463 LLDP, length 82 [|LLDP] 19:52:17.806465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.806473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.806475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.806488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.806488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2763 77ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.806490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.806491 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.806492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.806492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.806494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.806495 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.816451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.816453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.816460 LLDP, length 82 [|LLDP] 19:52:17.816462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.816471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.816472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 276b 190e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.816474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.816475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.816475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.816481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.816483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.816483 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.816484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.816485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.816486 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.826450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.826452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.826459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.826460 LLDP, length 82 [|LLDP] 19:52:17.826462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.826470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.826472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.826485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.826486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2772 ba2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.826488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.826489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.826490 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.826490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.826491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.826492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.836450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.836451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.836465 LLDP, length 82 [|LLDP] 19:52:17.836467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.836476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.836477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 277a 5b4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.836478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.836479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.836480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.836486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.836487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.836488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.836489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.836490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.836491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.846450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.846452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.846458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.846459 LLDP, length 82 [|LLDP] 19:52:17.846461 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.846470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.846472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.846485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.846486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2781 fc6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.846487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.846488 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.846489 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.846490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.846491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.846492 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.856448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.856450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.856457 LLDP, length 82 [|LLDP] 19:52:17.856459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.856469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.856469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2789 9d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.856471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.856472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.856473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.856479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.856480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.856481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.856482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.866455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.866457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.866464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.866465 LLDP, length 82 [|LLDP] 19:52:17.866467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.866475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.866486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.866487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2791 3eae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.866488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.876453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.876455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.876462 LLDP, length 82 [|LLDP] 19:52:17.876464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.876473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.876474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2798 dfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.876475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.876476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.876480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.886454 LLDP, length 82 [|LLDP] 19:52:17.886456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.886464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.886465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.886472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.886474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.886475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27a0 80ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.886477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.886478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.896457 LLDP, length 82 [|LLDP] 19:52:17.896459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.896470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.896471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27a8 220e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.896473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.896473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.896474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.896475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.896484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.896486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.896487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.896493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.896494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.896495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.896496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.906453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.906455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.906469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.906469 LLDP, length 82 [|LLDP] 19:52:17.906472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.906480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.906481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.906494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.906494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27af c32e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.906496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.906497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.906498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.906499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.906500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.906501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.916453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.916455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.916462 LLDP, length 82 [|LLDP] 19:52:17.916463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.916473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.916474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27b7 644e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.916475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.916476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.916477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.916482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.916484 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.916485 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.916486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.916487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.916488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.926453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.926455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.926462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.926463 LLDP, length 82 [|LLDP] 19:52:17.926465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.926473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.926474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.926487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.926488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27bf 056e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.926489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.926490 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.926492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.926492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.926493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.926494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.936452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.936453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.936460 LLDP, length 82 [|LLDP] 19:52:17.936462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.936472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.936473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27c6 a68e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.936474 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.936475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.936476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.936481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.936483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.936484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.936485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.936486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.936487 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.946450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.946452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.946459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.946460 LLDP, length 82 [|LLDP] 19:52:17.946462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.946470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.946471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.946484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.946485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27ce 47ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.946486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.946487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.946488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.946489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.946490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.946491 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:17.956446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.956448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.956456 LLDP, length 82 [|LLDP] 19:52:17.956457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.956467 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.956467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27d5 e8ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.956469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.956470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.956471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.956476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.956478 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.956479 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.956480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.966454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.966456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.966463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.966464 LLDP, length 82 [|LLDP] 19:52:17.966466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.966474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.966485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.966485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27dd 89ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.966487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.976455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.976457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.976463 LLDP, length 82 [|LLDP] 19:52:17.976465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.976475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.976476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27e5 2b0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.976477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.976478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.976481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.986455 LLDP, length 82 [|LLDP] 19:52:17.986457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.986464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.986466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.986473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.986475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.986476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27ec cc2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.986478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.986479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.996456 LLDP, length 82 [|LLDP] 19:52:17.996458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:17.996469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:17.996470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27f4 6d4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:17.996471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:17.996472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:17.996473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:17.996474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.996483 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.996484 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:17.996485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:17.996491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:17.996492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:17.996493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:17.996494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.006452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.006454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.006467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.006468 LLDP, length 82 [|LLDP] 19:52:18.006470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.006479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.006481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.006494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.006495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 27fc 0e6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.006496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.006497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.006498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.006499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.006500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.006501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.016456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.016457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.016471 LLDP, length 82 [|LLDP] 19:52:18.016474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.016483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.016484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2803 af8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.016485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.016486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.016487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.016493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.016495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.016496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.016497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.016497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.016498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.026453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.026455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.026468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.026469 LLDP, length 82 [|LLDP] 19:52:18.026472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.026480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.026481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.026495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.026496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 280b 50ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.026497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.026498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.026499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.026500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.026501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.026502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.036453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.036455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.036461 LLDP, length 82 [|LLDP] 19:52:18.036463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.036473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.036474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2812 f1ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.036475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.036476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.036477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.036483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.036485 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.036486 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.036487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.036488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.036488 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.046455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.046457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.046464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.046465 LLDP, length 82 [|LLDP] 19:52:18.046467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.046475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.046477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.046489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.046490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 281a 92ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.046491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.046492 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.046493 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.046494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.046495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.046496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.056448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.056449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.056456 LLDP, length 82 [|LLDP] 19:52:18.056458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.056468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.056469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2822 340e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.056470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.056471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.056472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.056478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.056480 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.056481 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.056481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.066456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.066458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.066464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.066465 LLDP, length 82 [|LLDP] 19:52:18.066467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.066475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.066486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.066486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2829 d52e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.066488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.076456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.076457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.076464 LLDP, length 82 [|LLDP] 19:52:18.076466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.076475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.076476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2831 764e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.076478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.076479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.076482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.086480 LLDP, length 82 [|LLDP] 19:52:18.086482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.086494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.086495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.086508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.086511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.086512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2839 176e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.086513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.086514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.096460 LLDP, length 82 [|LLDP] 19:52:18.096462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.096473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.096474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2840 b88e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.096475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.096476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.096477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.096478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.096487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.096489 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.096490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.096496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.096497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.096498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.096499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.106457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.106459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.106473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.106474 LLDP, length 82 [|LLDP] 19:52:18.106477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.106485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.106486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.106501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.106502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2848 59ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.106503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.106504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.106505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.106506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.106507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.106508 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.116470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.116479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.116490 LLDP, length 82 [|LLDP] 19:52:18.116492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.116503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.116504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 284f face 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.116506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.116507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.116518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.116525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.116527 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.116528 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.116529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.116530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.116531 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.126479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.126488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.126499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.126500 LLDP, length 82 [|LLDP] 19:52:18.126502 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.126516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.126517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.126538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.126539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2857 9bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.126540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.126541 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.126542 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.126543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.126544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.126545 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.136467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.136469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.136485 LLDP, length 82 [|LLDP] 19:52:18.136487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.136500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.136501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 285f 3d0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.136502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.136504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.136505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.136510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.136512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.136513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.136514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.136515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.136516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.146475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.146478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.146487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.146489 LLDP, length 82 [|LLDP] 19:52:18.146491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.146501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.146503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.146520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.146521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2866 de2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.146522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.146523 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.146524 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.146525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.146526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.146527 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.156467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.156469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.156479 LLDP, length 82 [|LLDP] 19:52:18.156481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.156493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.156494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 286e 7f4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.156496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.156497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.156498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.156504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.156506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.156507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.156508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.166461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.166463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.166470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.166471 LLDP, length 82 [|LLDP] 19:52:18.166473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.166483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.166494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.166495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2876 206e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.166496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.176460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.176461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.176467 LLDP, length 82 [|LLDP] 19:52:18.176469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.176478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.176479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 287d c18e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.176480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.176481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.176485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.186470 LLDP, length 82 [|LLDP] 19:52:18.186472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.186482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.186483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.186494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.186497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.186498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2885 62ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.186499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.186501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.196471 LLDP, length 82 [|LLDP] 19:52:18.196473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.196487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.196488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 288d 03ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.196489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.196490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.196491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.196492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.196503 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.196505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.196506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.196512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.196514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.196515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.196516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.206458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.206460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.206467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.206468 LLDP, length 82 [|LLDP] 19:52:18.206470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.206478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.206480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.206494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.206495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2894 a4ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.206496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.206497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.206498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.206499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.206500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.206501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.216491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.216494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.216508 LLDP, length 82 [|LLDP] 19:52:18.216511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.216524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.216525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 289c 460e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.216527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.216528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.216529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.216536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.216537 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.216538 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.216539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.216540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.216541 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.226461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.226463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.226471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.226473 LLDP, length 82 [|LLDP] 19:52:18.226475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.226484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.226485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.226498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.226499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28a3 e72e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.226501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.226502 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.226503 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.226504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.226505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.226506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.236456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.236458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.236471 LLDP, length 82 [|LLDP] 19:52:18.236473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.236482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.236483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ab 884e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.236485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.236486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.236487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.236492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.236494 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.236495 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.236496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.236497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.236498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.246456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.246458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.246471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.246472 LLDP, length 82 [|LLDP] 19:52:18.246475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.246482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.246484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.246496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.246497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28b3 296e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.246498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.246499 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.246500 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.246501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.246502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.246503 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.256461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.256463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.256471 LLDP, length 82 [|LLDP] 19:52:18.256473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.256484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.256485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ba ca8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.256487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.256488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.256489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.256494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.256496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.256497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.256498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.266460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.266462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.266469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.266471 LLDP, length 82 [|LLDP] 19:52:18.266473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.266482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.266493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.266494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28c2 6bae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.266495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.276467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.276469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.276477 LLDP, length 82 [|LLDP] 19:52:18.276479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.276488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.276489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ca 0cce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.276491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.276492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.276495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.286464 LLDP, length 82 [|LLDP] 19:52:18.286466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.286475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.286476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.286484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.286487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.286487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28d1 adee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.286489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.286490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.296470 LLDP, length 82 [|LLDP] 19:52:18.296471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.296483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.296484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28d9 4f0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.296485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.296486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.296487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.296488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.296498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.296499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.296500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.296506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.296507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.296508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.296509 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.306457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.306459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.306466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.306467 LLDP, length 82 [|LLDP] 19:52:18.306469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.306478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.306479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.306493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.306494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28e0 f02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.306495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.306496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.306497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.306498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.306499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.306500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.316458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.316461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.316474 LLDP, length 82 [|LLDP] 19:52:18.316477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.316485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.316486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28e8 914e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.316487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.316488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.316489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.316495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.316497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.316498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.316499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.316500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.316501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.326459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.326461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.326467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.326468 LLDP, length 82 [|LLDP] 19:52:18.326470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.326478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.326480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.326493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.326493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28f0 326e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.326495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.326496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.326497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.326498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.326499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.326499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.339209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.339211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.339217 LLDP, length 82 [|LLDP] 19:52:18.339219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.339229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.339230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28f7 d38e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.339231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.339232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.339233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.339239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.339240 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.339241 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.339242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.339243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.339244 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.346465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.346467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.346474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.346475 LLDP, length 82 [|LLDP] 19:52:18.346477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.346486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.346487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.346501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.346501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 28ff 74ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.346503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.346504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.346505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.346506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.346507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.346508 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.356457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.356459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.356466 LLDP, length 82 [|LLDP] 19:52:18.356468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.356476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.356477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2907 15ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.356478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.356479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.356480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.356486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.356488 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.356489 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.356490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.366464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.366466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.366473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.366474 LLDP, length 82 [|LLDP] 19:52:18.366476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.366485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.366497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.366498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 290e b6ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.366499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.376463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.376464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.376471 LLDP, length 82 [|LLDP] 19:52:18.376473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.376482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.376483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2916 580e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.376485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.376486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.376489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.386462 LLDP, length 82 [|LLDP] 19:52:18.386463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.386472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.386473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.386481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.386484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.386485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 291d f92e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.386486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.386488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.399812 LLDP, length 82 [|LLDP] 19:52:18.399814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.399825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.399826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2925 9a4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.399828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.399829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.399830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.399831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.399840 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.399841 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.399843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.399848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.399850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.399851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.399851 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.406460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.406462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.406469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.406470 LLDP, length 82 [|LLDP] 19:52:18.406472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.406480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.406481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.406494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.406494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 292d 3b6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.406496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.406497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.406498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.406499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.406500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.406501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.416459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.416461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.416468 LLDP, length 82 [|LLDP] 19:52:18.416469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.416479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.416480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2934 dc8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.416481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.416482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.416483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.416489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.416490 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.416491 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.416492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.416493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.416494 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.426465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.426466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.426481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.426482 LLDP, length 82 [|LLDP] 19:52:18.426485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.426495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.426497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.426516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.426517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 293c 7dae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.426519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.426520 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.426521 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.426522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.426523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.426524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.436478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.436480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.436491 LLDP, length 82 [|LLDP] 19:52:18.436493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.436505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.436506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2944 1ece 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.436508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.436509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.436510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.436516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.436518 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.436519 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.436520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.436521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.436522 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.446479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.446482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.446491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.446492 LLDP, length 82 [|LLDP] 19:52:18.446495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.446506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.446508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.446524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.446525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 294b bfee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.446526 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.446527 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.446528 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.446529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.446530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.446531 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.460422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.460425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.460435 LLDP, length 82 [|LLDP] 19:52:18.460437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.460449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.460450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2953 610e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.460452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.460453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.460454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.460460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.460462 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.460463 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.460464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.466474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.466477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.466486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.466487 LLDP, length 82 [|LLDP] 19:52:18.466489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.466500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.466512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.466512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 295b 022e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.466514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.476471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.476473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.476481 LLDP, length 82 [|LLDP] 19:52:18.476483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.476494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.476494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2962 a34e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.476496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.476497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.476500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.486470 LLDP, length 82 [|LLDP] 19:52:18.486472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.486482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.486483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.486493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.486495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.486496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 296a 446e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.486497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.486499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.496494 LLDP, length 82 [|LLDP] 19:52:18.496496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.496512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.496513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2971 e58e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.496515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.496516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.496517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.496518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.496531 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.496533 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.496534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.496540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.496542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.496543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.496544 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.506470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.506472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.506481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.506482 LLDP, length 82 [|LLDP] 19:52:18.506485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.506493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.506494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.506509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.506509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2979 86ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.506511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.506512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.506513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.506514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.506515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.506516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.516483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.516485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.516495 LLDP, length 82 [|LLDP] 19:52:18.516497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.516511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.516512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2981 27ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.516514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.516515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.516516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.516523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.516524 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.516525 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.516526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.516527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.516528 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.526479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.526481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.526489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.526490 LLDP, length 82 [|LLDP] 19:52:18.526493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.526503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.526505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.526520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.526521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2988 c8ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.526522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.526524 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.526525 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.526526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.526527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.526528 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.536475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.536477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.536485 LLDP, length 82 [|LLDP] 19:52:18.536487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.536500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.536500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2990 6a0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.536502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.536503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.536504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.536510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.536512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.536513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.536514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.536515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.536516 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.546475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.546477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.546486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.546487 LLDP, length 82 [|LLDP] 19:52:18.546489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.546500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.546501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.546517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.546518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2998 0b2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.546519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.546520 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.546521 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.546522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.546523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.546524 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.556472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.556474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.556483 LLDP, length 82 [|LLDP] 19:52:18.556485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.556496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.556497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 299f ac4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.556499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.556500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.556501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.556507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.556509 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.556510 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.556511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.566478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.566480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.566490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.566491 LLDP, length 82 [|LLDP] 19:52:18.566493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.566501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.566514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.566515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29a7 4d6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.566516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.576478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.576480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.576489 LLDP, length 82 [|LLDP] 19:52:18.576490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.576501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.576502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29ae ee8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.576504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.576505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.576508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.586476 LLDP, length 82 [|LLDP] 19:52:18.586478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.586487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.586488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.586498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.586500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.586501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29b6 8fae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.586503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.586504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.596476 LLDP, length 82 [|LLDP] 19:52:18.596478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.596493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.596493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29be 30ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.596495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.596496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.596497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.596498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.596508 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.596511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.596512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.596518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.596519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.596520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.596521 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.606477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.606479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.606489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.606490 LLDP, length 82 [|LLDP] 19:52:18.606493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.606503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.606504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.606520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.606521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29c5 d1ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.606522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.606523 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.606524 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.606525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.606526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.606527 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.616470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.616473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.616488 LLDP, length 82 [|LLDP] 19:52:18.616490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.616501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.616502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29cd 730e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.616504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.616505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.616506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.616512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.616513 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.616514 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.616515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.616516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.616517 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.626473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.626475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.626483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.626484 LLDP, length 82 [|LLDP] 19:52:18.626486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.626495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.626496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.626510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.626511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29d5 142e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.626512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.626513 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.626514 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.626515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.626516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.626517 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.636475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.636477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.636485 LLDP, length 82 [|LLDP] 19:52:18.636487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.636499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.636500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29dc b54e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.636501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.636502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.636503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.636509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.636510 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.636511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.636512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.636513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.636514 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.646486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.646488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.646497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.646498 LLDP, length 82 [|LLDP] 19:52:18.646500 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.646513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.646515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.646531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.646533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29e4 566e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.646534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.646535 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.646536 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.646537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.646538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.646539 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.656474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.656476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.656485 LLDP, length 82 [|LLDP] 19:52:18.656487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.656500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.656502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29eb f78e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.656503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.656504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.656505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.656511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.656512 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.656513 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.656514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.666488 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.666490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.666499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.666500 LLDP, length 82 [|LLDP] 19:52:18.666503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.666513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.666526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.666526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29f3 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.666528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.676489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.676491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.676498 LLDP, length 82 [|LLDP] 19:52:18.676501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.676512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.676513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 29fb 39ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.676514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.676515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.676518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.686486 LLDP, length 82 [|LLDP] 19:52:18.686488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.686496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.686497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.686508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.686510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.686511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a02 daee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.686513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.686514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.696475 LLDP, length 82 [|LLDP] 19:52:18.696477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.696491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.696492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a0a 7c0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.696493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.696494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.696495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.696496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.696506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.696508 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.696509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.696514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.696516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.696517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.696518 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.706464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.706466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.706473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.706474 LLDP, length 82 [|LLDP] 19:52:18.706476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.706485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.706486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.706498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.706499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a12 1d2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.706500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.706501 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.706502 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.706503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.706504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.706505 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.716464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.716466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.716479 LLDP, length 82 [|LLDP] 19:52:18.716481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.716491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.716492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a19 be4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.716493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.716494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.716495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.716501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.716502 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.716503 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.716504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.716505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.716506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.726461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.726463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.726469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.726470 LLDP, length 82 [|LLDP] 19:52:18.726472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.726480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.726481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.726492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.726493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a21 5f6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.726494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.726495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.726496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.726497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.726499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.726499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.736460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.736462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.736474 LLDP, length 82 [|LLDP] 19:52:18.736476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.736485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.736486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a29 008e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.736488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.736489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.736490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.736495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.736497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.736498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.736499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.736500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.736501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.746463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.746465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.746479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.746480 LLDP, length 82 [|LLDP] 19:52:18.746483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.746490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.746492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.746504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.746505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a30 a1ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.746507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.746507 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.746508 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.746509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.746510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.746511 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.756469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.756471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.756479 LLDP, length 82 [|LLDP] 19:52:18.756481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.756494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.756495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a38 42ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.756496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.756498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.756499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.756504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.756506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.756507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.756508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.766465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.766467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.766472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.766473 LLDP, length 82 [|LLDP] 19:52:18.766475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.766483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.766492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.766492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a3f e3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.766494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.776467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.776469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.776474 LLDP, length 82 [|LLDP] 19:52:18.776476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.776484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.776485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a47 850e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.776486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.776487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.776490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.786462 LLDP, length 82 [|LLDP] 19:52:18.786464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.786470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.786471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.786477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.786479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.786480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a4f 262e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.786482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.786483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.796468 LLDP, length 82 [|LLDP] 19:52:18.796470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.796479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.796480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a56 c74e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.796481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.796482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.796484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.796485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.796493 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.796494 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.796496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.796501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.796502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.796503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.796504 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.806463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.806464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.806471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.806472 LLDP, length 82 [|LLDP] 19:52:18.806474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.806481 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.806482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.806493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.806494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a5e 686e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.806496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.806497 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.806498 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.806499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.806500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.806501 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.816461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.816463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.816476 LLDP, length 82 [|LLDP] 19:52:18.816477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.816487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.816488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a66 098e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.816489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.816490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.816491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.816497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.816499 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.816499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.816500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.816501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.816502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.826463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.826464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.826470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.826471 LLDP, length 82 [|LLDP] 19:52:18.826474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.826480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.826482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.826492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.826493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a6d aaae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.826495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.826496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.826497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.826498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.826499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.826500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.836463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.836465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.836477 LLDP, length 82 [|LLDP] 19:52:18.836479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.836487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.836488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a75 4bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.836489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.836490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.836491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.836496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.836498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.836499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.836500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.836501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.836502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.846460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.846463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.846476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.846477 LLDP, length 82 [|LLDP] 19:52:18.846479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.846487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.846489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.846500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.846501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a7c ecee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.846502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.846504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.846504 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.846505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.846506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.846507 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.856465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.856466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.856473 LLDP, length 82 [|LLDP] 19:52:18.856474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.856483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.856484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a84 8e0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.856486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.856487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.856488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.856493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.856495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.856496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.856497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.866466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.866468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.866474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.866475 LLDP, length 82 [|LLDP] 19:52:18.866477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.866484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.866493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.866494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a8c 2f2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.866495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.876465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.876467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.876473 LLDP, length 82 [|LLDP] 19:52:18.876474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.876483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.876483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a93 d04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.876485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.876486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.876489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.886469 LLDP, length 82 [|LLDP] 19:52:18.886470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.886477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.886478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.886484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.886487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.886488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2a9b 716e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.886489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.886490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.896465 LLDP, length 82 [|LLDP] 19:52:18.896466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.896476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.896477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2aa3 128e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.896478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.896479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.896480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.896481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.896489 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.896492 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.896493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.896498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.896500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.896501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.896502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.906462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.906463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.906469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.906470 LLDP, length 82 [|LLDP] 19:52:18.906472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.906478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.906480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.906491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.906492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2aaa b3ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.906493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.906494 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.906495 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.906496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.906497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.906498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.916464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.916465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.916470 LLDP, length 82 [|LLDP] 19:52:18.916472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.916480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.916481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ab2 54ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.916483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.916484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.916485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.916490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.916492 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.916493 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.916494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.916495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.916495 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.926463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.926465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.926471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.926472 LLDP, length 82 [|LLDP] 19:52:18.926474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.926480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.926482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.926493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.926493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ab9 f5ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.926495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.926496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.926497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.926498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.926499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.926500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.936461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.936463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.936474 LLDP, length 82 [|LLDP] 19:52:18.936476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.936484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.936485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ac1 970e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.936486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.936487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.936488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.936493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.936495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.936496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.936497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.936498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.936499 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.946463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.946465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.946470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.946471 LLDP, length 82 [|LLDP] 19:52:18.946474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.946480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.946482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.946493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.946493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ac9 382e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.946495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.946496 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.946497 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.946498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.946499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.946500 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.956458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.956460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.956466 LLDP, length 82 [|LLDP] 19:52:18.956467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.956476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.956477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ad0 d94e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.956478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.956479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.956480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.956485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.956487 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.956488 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.956489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.966466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.966468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.966473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.966475 LLDP, length 82 [|LLDP] 19:52:18.966477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.966485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.966493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.966494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ad8 7a6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.966495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.976465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.976466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.976471 LLDP, length 82 [|LLDP] 19:52:18.976473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.976481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.976482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ae0 1b8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.976483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.976484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.976487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.986482 LLDP, length 82 [|LLDP] 19:52:18.986484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.986494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.986495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.986496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.986510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.986513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.986514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ae7 bcae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.986515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.986517 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.986518 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.986519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.986520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.986521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.986522 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:18.996473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:18.996475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.996489 LLDP, length 82 [|LLDP] 19:52:18.996491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:18.996502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:18.996503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2aef 5dce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:18.996505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:18.996506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:18.996507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:18.996512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:18.996514 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.996515 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:18.996516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:18.996517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:18.996517 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.006469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.006471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.006478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.006479 LLDP, length 82 [|LLDP] 19:52:19.006481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.006489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.006491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.006503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.006503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2af6 feee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.006505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.006506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.006507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.006508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.006509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.006509 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.016469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.016470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.016476 LLDP, length 82 [|LLDP] 19:52:19.016478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.016488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.016489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2afe a00e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.016490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.016491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.016492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.016497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.016499 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.016500 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.016501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.016502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.016503 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.026466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.026467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.026472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.026473 LLDP, length 82 [|LLDP] 19:52:19.026475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.026483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.026484 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.026495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.026496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b06 412e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.026497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.026498 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.026499 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.026500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.026501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.026502 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.036465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.036467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.036472 LLDP, length 82 [|LLDP] 19:52:19.036474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.036482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.036482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b0d e24e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.036484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.036485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.036486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.036491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.036492 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.036494 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.036494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.036495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.036496 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.046457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.046459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.046470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.046471 LLDP, length 82 [|LLDP] 19:52:19.046473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.046480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.046481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.046492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.046493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b15 836e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.046494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.046495 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.046496 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.046497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.056471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.056473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.056479 LLDP, length 82 [|LLDP] 19:52:19.056481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.056489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.056490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b1d 248e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.056491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.056492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.056495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.066494 LLDP, length 82 [|LLDP] 19:52:19.066495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.066502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.066503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.066509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.066512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.066512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b24 c5ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.066514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.066515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.076470 LLDP, length 82 [|LLDP] 19:52:19.076471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.076480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.076480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b2c 66ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.076482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.076483 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.076484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.076489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.076491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.086468 LLDP, length 82 [|LLDP] 19:52:19.086470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.086476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.086477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.086478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.086487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.086490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.086490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b34 07ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.086492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.086493 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.086494 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.086495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.086496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.086497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.086498 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.096467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.096469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.096476 LLDP, length 82 [|LLDP] 19:52:19.096478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.096487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.096488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b3b a90e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.096490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.096501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.096502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.096508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.096510 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.096511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.096512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.096513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.096513 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.106492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.106494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.106504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.106505 LLDP, length 82 [|LLDP] 19:52:19.106507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.106519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.106521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.106538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.106539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b43 4a2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.106541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.106542 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.106543 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.106544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.106545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.106546 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.116471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.116474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.116481 LLDP, length 82 [|LLDP] 19:52:19.116483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.116493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.116494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b4a eb4e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.116495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.116496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.116497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.116503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.116504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.116505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.116506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.116507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.116508 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.126471 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.126473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.126479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.126480 LLDP, length 82 [|LLDP] 19:52:19.126482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.126489 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.126491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.126502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.126503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b52 8c6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.126505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.126506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.126507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.126508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.126509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.126510 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.136478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.136480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.136494 LLDP, length 82 [|LLDP] 19:52:19.136496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.136507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.136508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b5a 2d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.136509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.136510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.136511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.136517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.136518 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.136519 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.136520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.136521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.136522 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.146462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.146470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.146476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.146477 LLDP, length 82 [|LLDP] 19:52:19.146479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.146486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.146487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.146499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.146499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b61 ceae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.146501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.146502 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.146503 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.146504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.156470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.156472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.156478 LLDP, length 82 [|LLDP] 19:52:19.156480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.156488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.156489 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b69 6fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.156490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.156491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.156494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.166469 LLDP, length 82 [|LLDP] 19:52:19.166471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.166477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.166478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.166485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.166487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.166488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b71 10ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.166490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.166491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.176472 LLDP, length 82 [|LLDP] 19:52:19.176474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.176484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.176485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b78 b20e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.176486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.176487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.176488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.176494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.176496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.186476 LLDP, length 82 [|LLDP] 19:52:19.186477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.186484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.186485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.186486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.186495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.186498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.186498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b80 532e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.186500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.186501 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.186502 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.186503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.186504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.186505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.186506 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.196467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.196469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.196481 LLDP, length 82 [|LLDP] 19:52:19.196483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.196492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.196493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b87 f44e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.196494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.196495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.196496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.196502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.196504 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.196505 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.196506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.196507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.196507 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.206466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.206468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.206480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.206481 LLDP, length 82 [|LLDP] 19:52:19.206483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.206490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.206492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.206502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.206503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b8f 956e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.206505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.206506 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.206507 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.206508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.206509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.206510 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.216467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.216469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.216481 LLDP, length 82 [|LLDP] 19:52:19.216482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.216490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.216491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b97 368e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.216492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.216493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.216494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.216500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.216501 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.216502 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.216503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.216504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.216505 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.226496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.226505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.226518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.226519 LLDP, length 82 [|LLDP] 19:52:19.226521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.226534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.226535 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.226553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.226554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2b9e d7ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.226555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.226557 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.226558 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.226559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.226560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.226561 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.236476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.236478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.236486 LLDP, length 82 [|LLDP] 19:52:19.236488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.236498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.236499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2ba6 78ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.236500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.236502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.236503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.236508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.236510 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.236511 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.236512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:52:19.236513 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:52:19.236513 IP 1.1.1.2.52839 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:52:19.249056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:52:19.249058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.249068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:52:19.249069 LLDP, length 82 [|LLDP] 19:52:19.249072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:52:19.249081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:52:19.249083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:52:19.249099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:52:19.249100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: c000 0002 1011 1213 2bae 19ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:52:19.249101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:52:19.249102 IP 1.1.1.2.54652 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.249103 IP 192.168.1.1.15328 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:52:19.249104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 14232 packets captured 14247 packets received by filter 0 packets dropped by kernel 2 packets dropped by interface
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:52:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:52:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:52:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG infra1:Logger.py:156 []
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding 182.96
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2384' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.5, port 46310 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:52:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b6bc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI streamA SIP-DIP N/A Tx 827 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI streamB SIP-DIP N/A Tx 827 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:40:a3:07","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:55:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:55:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets 204.53
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2412' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.5, port 46108 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:55:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592303310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Broadcast SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_Reserved_MC SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_OSPFIGP SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_VRRP SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI IPv4_IGMP SIP-DIP N/A Tx 1280 Rx 1280 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:58:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:58:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down 151.08
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2436' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.5, port 41302 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 19:58:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b48b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bridge SIP-DIP N/A Tx 680 Rx 680 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ac:eb:f1","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:ac:eb:f1","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:01:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:01:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster 223.71
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2468' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.5, port 34044 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:01:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c7d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 882 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 882 Rx 882 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 882 Rx 882 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 882 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:05:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:05:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic 329.77
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2498' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.5, port 43022 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:05:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592288ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 13552 Rx 13552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 13552 Rx 13552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 13552 Rx 13552 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859228b010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 13518 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 13518 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 13518 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859228bc40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 13432 Rx 13432 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 13432 Rx 13432 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 13432 Rx 13432 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:10:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:10:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs 210.69
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2526' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.5, port 52222 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:10:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c6da0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridge SIP-DIP N/A Tx 779 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:17:70:ef","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:14:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:14:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic 271.10
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2554' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.5, port 48850 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:14:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c7bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 192240 Rx 192240 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG infra1:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c5b70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 191785 Rx 191785 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG infra1:Logger.py:156 16002
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:18:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:18:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[1510] 254.61
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2582' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[1510]">Starting testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.5, port 42228 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:18:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:18:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c65c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 1368 Rx 1368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 1368 Rx 1368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 1368 Rx 1368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 1368 Rx 1368 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:22:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:22:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[8998] 299.15
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2616' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[8998]">Starting testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.5, port 55940 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:22:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:22:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592301f60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 1376 Rx 1376 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 1376 Rx 1376 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 1376 Rx 1376 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 1376 Rx 1376 Loss 0.000 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:27:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:27:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9000] 301.00
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2650' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9000]">Starting testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.5, port 52116 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:27:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:27:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b40d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 1277 Rx 1277 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 1277 Rx 1277 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 1277 Rx 1277 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 1277 Rx 1277 Loss 0.000 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:32:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:32:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9002] 295.57
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-2684' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9002]">Starting testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.5, port 57902 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:32:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}]
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:32:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG infra1:Logger.py:156 Error: mtu greater than device maximum. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225ce80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 1375 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 1375 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 1375 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 1375 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:37:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:37:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_address 267.98
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2718' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.5, port 36164 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:37:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592500cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 871 Rx 870 Frames Delta 1 Loss 0.115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 871 Rx 870 Frames Delta 1 Loss 0.115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 871 Rx 870 Frames Delta 1 Loss 0.115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 871 Rx 870 Frames Delta 1 Loss 0.115 INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:cc:23:42","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:42:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:42:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate 240.38
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2746' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.5, port 32914 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:42:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85923029e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 8752 Rx 8752 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI streamB SIP-DIP N/A Tx 8752 Rx 8752 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:46:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:46:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address 245.43
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2770' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.5, port 39592 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:46:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859228b8b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI all_zeros SIP-DIP N/A Tx 877 Rx 877 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI broadcast SIP-DIP N/A Tx 877 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI multicast_1 SIP-DIP N/A Tx 877 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI multicast_2 SIP-DIP N/A Tx 877 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:32:24:7b","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:50:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:50:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans 477.53
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2798' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.5, port 52308 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:50:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592500880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 779 Rx 779 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 779 Rx 779 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:60:a5:7e","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c6410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 779 Rx 779 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 779 Rx 779 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:60:a5:7e","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592288ee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 779 Rx 779 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 779 Rx 779 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:60:a5:7e","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=60, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=22] Command: bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:58:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:58:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":98,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize 280.72
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2838' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.5, port 53088 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 20:58:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4627119642 bad_octets_received: 3821826 mac_trans_error: 0 broadcast_frames_received: 30824 multicast_frames_received: 70359 frames_64_octets: 952 frames_65_to_127_octets: 120519 frames_128_to_255_octets: 5700 frames_256_to_511_octets: 11929761 frames_512_to_1023_octets: 5798965 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 2091 broadcast_frames_sent: 1203 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 2249 jabber: 0 rx_error_frame_received: 0 bad_crc: 779 collisions: 0 late_collision: 0 unicast_frames_received: 14924189 unicast_frames_sent: 2839766 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1494693609 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1494621006 bad_octets_received: 3422978 mac_trans_error: 0 broadcast_frames_received: 1047 multicast_frames_received: 877 frames_64_octets: 957 frames_65_to_127_octets: 45572 frames_128_to_255_octets: 368 frames_256_to_511_octets: 10195687 frames_512_to_1023_octets: 5753833 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37643 broadcast_frames_sent: 18225 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 2249 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 2840061 unicast_frames_sent: 13111878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4152842340 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 48128334 bad_octets_received: 3422978 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 877 frames_64_octets: 587 frames_65_to_127_octets: 45272 frames_128_to_255_octets: 322 frames_256_to_511_octets: 2695 frames_512_to_1023_octets: 501823 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37224 broadcast_frames_sent: 11253 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 2249 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 15591 unicast_frames_sent: 498956 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300427488 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 47330126 bad_octets_received: 3422978 mac_trans_error: 0 broadcast_frames_received: 104 multicast_frames_received: 877 frames_64_octets: 586 frames_65_to_127_octets: 45271 frames_128_to_255_octets: 341 frames_256_to_511_octets: 2671 frames_512_to_1023_octets: 500064 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 36340 broadcast_frames_sent: 11261 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 2249 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 14033 unicast_frames_sent: 499632 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300322534 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4627119642 bad_octets_received: 32239088 mac_trans_error: 0 broadcast_frames_received: 30824 multicast_frames_received: 70359 frames_64_octets: 952 frames_65_to_127_octets: 120519 frames_128_to_255_octets: 5701 frames_256_to_511_octets: 11929761 frames_512_to_1023_octets: 5798965 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 2092 broadcast_frames_sent: 1203 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 779 collisions: 0 late_collision: 0 unicast_frames_received: 14924189 unicast_frames_sent: 2839766 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1494693853 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1494621006 bad_octets_received: 31840240 mac_trans_error: 0 broadcast_frames_received: 1047 multicast_frames_received: 877 frames_64_octets: 957 frames_65_to_127_octets: 45572 frames_128_to_255_octets: 369 frames_256_to_511_octets: 10195687 frames_512_to_1023_octets: 5753833 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37644 broadcast_frames_sent: 18225 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 2840061 unicast_frames_sent: 13111878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4152842584 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 48128334 bad_octets_received: 31840240 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 877 frames_64_octets: 587 frames_65_to_127_octets: 45272 frames_128_to_255_octets: 323 frames_256_to_511_octets: 2695 frames_512_to_1023_octets: 501823 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37225 broadcast_frames_sent: 11253 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 15591 unicast_frames_sent: 498956 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300427732 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 47330126 bad_octets_received: 31840240 mac_trans_error: 0 broadcast_frames_received: 104 multicast_frames_received: 877 frames_64_octets: 586 frames_65_to_127_octets: 45271 frames_128_to_255_octets: 342 frames_256_to_511_octets: 2671 frames_512_to_1023_octets: 500064 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 36341 broadcast_frames_sent: 11261 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 14033 unicast_frames_sent: 499632 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300322778 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592b1ac80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 18671 Rx 0 Frames Delta 18671 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 18671 Rx 0 Frames Delta 18671 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 18671 Rx 0 Frames Delta 18671 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 18671 Rx 0 Frames Delta 18671 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:2c:e5:2b","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:03:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:03:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":99,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize 289.15
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2882' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.5, port 42950 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:03:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4627120154 bad_octets_received: 32239088 mac_trans_error: 0 broadcast_frames_received: 30832 multicast_frames_received: 70359 frames_64_octets: 985 frames_65_to_127_octets: 120535 frames_128_to_255_octets: 5710 frames_256_to_511_octets: 11929761 frames_512_to_1023_octets: 5798965 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 2118 broadcast_frames_sent: 1227 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 779 collisions: 0 late_collision: 0 unicast_frames_received: 14924189 unicast_frames_sent: 2839766 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1494699129 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1494621518 bad_octets_received: 31840240 mac_trans_error: 0 broadcast_frames_received: 1055 multicast_frames_received: 877 frames_64_octets: 990 frames_65_to_127_octets: 45589 frames_128_to_255_octets: 377 frames_256_to_511_octets: 10195687 frames_512_to_1023_octets: 5753833 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37670 broadcast_frames_sent: 18249 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 2840061 unicast_frames_sent: 13111878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4152847690 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 48128846 bad_octets_received: 31840240 mac_trans_error: 0 broadcast_frames_received: 120 multicast_frames_received: 877 frames_64_octets: 620 frames_65_to_127_octets: 45287 frames_128_to_255_octets: 331 frames_256_to_511_octets: 2695 frames_512_to_1023_octets: 501823 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37249 broadcast_frames_sent: 11277 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 15591 unicast_frames_sent: 498956 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300432650 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 47330638 bad_octets_received: 31840240 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 877 frames_64_octets: 619 frames_65_to_127_octets: 45288 frames_128_to_255_octets: 352 frames_256_to_511_octets: 2671 frames_512_to_1023_octets: 500064 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 36369 broadcast_frames_sent: 11285 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 14033 unicast_frames_sent: 499632 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300328372 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 4627120154 bad_octets_received: 33343814 mac_trans_error: 0 broadcast_frames_received: 30832 multicast_frames_received: 70359 frames_64_octets: 985 frames_65_to_127_octets: 120535 frames_128_to_255_octets: 5712 frames_256_to_511_octets: 11929761 frames_512_to_1023_octets: 5798965 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 2120 broadcast_frames_sent: 1227 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 19047 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 779 collisions: 0 late_collision: 0 unicast_frames_received: 14924189 unicast_frames_sent: 2839766 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 1494699617 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 1494621518 bad_octets_received: 32944966 mac_trans_error: 0 broadcast_frames_received: 1055 multicast_frames_received: 877 frames_64_octets: 990 frames_65_to_127_octets: 45589 frames_128_to_255_octets: 378 frames_256_to_511_octets: 10195687 frames_512_to_1023_octets: 5753833 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37671 broadcast_frames_sent: 18249 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 19047 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 2840061 unicast_frames_sent: 13111878 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4152847934 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 48128846 bad_octets_received: 32944966 mac_trans_error: 0 broadcast_frames_received: 120 multicast_frames_received: 877 frames_64_octets: 620 frames_65_to_127_octets: 45287 frames_128_to_255_octets: 332 frames_256_to_511_octets: 2695 frames_512_to_1023_octets: 501823 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 37250 broadcast_frames_sent: 11277 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 19047 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 15591 unicast_frames_sent: 498956 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300432894 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 47330638 bad_octets_received: 32944966 mac_trans_error: 0 broadcast_frames_received: 112 multicast_frames_received: 877 frames_64_octets: 619 frames_65_to_127_octets: 45288 frames_128_to_255_octets: 353 frames_256_to_511_octets: 2671 frames_512_to_1023_octets: 500064 frames_1024_to_max_octets: 13314 excessive_collision: 0 multicast_frames_sent: 36370 broadcast_frames_sent: 11285 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 19047 fragments: 0 oversize: 20920 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 14033 unicast_frames_sent: 499632 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 300328616 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c5630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 19047 Rx 0 Frames Delta 19047 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 19047 Rx 0 Frames Delta 19047 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 19047 Rx 0 Frames Delta 19047 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 19047 Rx 0 Frames Delta 19047 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:bf:3f:54","ifname":"br0","flags":["self"],"state":"permanent"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:07:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:07:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":100,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan 231.80
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2926' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.5, port 36292 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:07:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:34","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:57","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:57","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:58","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:58","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:59","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:59","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"90:3c:b3:8b:ef:5a","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:8b:ef:5a","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:99:81:c7","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922eece0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 779 Rx 779 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:11:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:11:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":101,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs 914.48
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-2962' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.5, port 47534 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:11:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c7910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 192216 Rx 192216 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c74f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 208147 Rx 208147 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 208147 Rx 208147 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85925028c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 196186 Rx 196186 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 196186 Rx 196186 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 196186 Rx 196186 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592503eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 204700 Rx 204700 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 204700 Rx 204700 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 204700 Rx 204700 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 204700 Rx 204700 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592502b90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 206109 Rx 206109 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 206109 Rx 206109 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 206109 Rx 206109 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 206109 Rx 206109 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 206109 Rx 206109 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592340ee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 205951 Rx 205951 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 205951 Rx 205951 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 205951 Rx 205951 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 205951 Rx 205951 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 205951 Rx 205951 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 205951 Rx 205951 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG infra1:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217c940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 206370 Rx 206370 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG infra1:Logger.py:156 16004
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:26:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:26:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries 262.93
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-3000' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.5, port 47850 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:26:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b7cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI bridge_1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI bridge_2 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI bridge_3 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI bridge_4 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:31:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:31:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 289.63
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-3028' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.5, port 43468 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:31:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592288340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 383694 Rx 383694 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 383694 Rx 383694 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 383694 Rx 383694 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859228a800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 407616 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 407616 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 407616 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859228a1a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 383847 Rx 383847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI streamB SIP-DIP N/A Tx 383847 Rx 383847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI streamC SIP-DIP N/A Tx 383847 Rx 383847 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:36:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:36:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps 251.12
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3054' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.5, port 34654 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:36:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:36:12 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 3418Kbps, traffic frame size: 609, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 71 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action trap action police rate 3418110bps burst 3419110 && tc filter add dev swp33 ingress protocol 0x0800 pref 142 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 71 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action trap action police rate 3418110bps burst 3419110 && tc filter add dev swp33 ingress protocol 0x0800 pref 142 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress pref 71 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp33 ingress pref 71 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:70:39:82:2e:b5","src_mac":"02:70:ed:1f:d1:d1","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"98.119.27.241","src_ip":"24.211.88.15","dst_port":13291,"src_port":35780},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:70:39:82:2e:b5_src_mac_02:70:ed:1f:d1:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_98.119.27.241_src_ip_24.211.88.15_dst_port_13291_src_port_35780 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG infra1:Logger.py:156 4035 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG infra1:Logger.py:156 4051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592500b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:70:39:82:2e:b5_src_mac_02:70:ed:1f:d1:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_98.119.27.241_src_ip_24.211.88.15_dst_port_13291_src_port_35780 Tx 5958740 Rx 120260 Frames Delta 5838480 Loss 97.982 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 71 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp33 ingress pref 71 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 71 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action trap action police rate 3418110bps burst 3419110 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 71 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action trap action police rate 3418110bps burst 3419110 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG infra1:Logger.py:156 4036 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG infra1:Logger.py:156 4043 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592a93790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:70:39:82:2e:b5_src_mac_02:70:ed:1f:d1:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_98.119.27.241_src_ip_24.211.88.15_dst_port_13291_src_port_35780 Tx 5959049 Rx 120302 Frames Delta 5838747 Loss 97.981 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 71 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp33 ingress pref 71 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 213 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action trap action police rate 3418110bps burst 3419110 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 213 flower skip_sw src_mac 02:70:ed:1f:d1:d1 dst_mac 02:70:39:82:2e:b5 src_ip 24.211.88.15 dst_ip 98.119.27.241 ip_proto tcp src_port 35780 dst_port 13291 action trap action police rate 3418110bps burst 3419110 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG infra1:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217cf40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:70:39:82:2e:b5_src_mac_02:70:ed:1f:d1:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_98.119.27.241_src_ip_24.211.88.15_dst_port_13291_src_port_35780 Tx 5959128 Rx 0 Frames Delta 5959128 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:40:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:40:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:40:22 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag 331.36
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3158' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.5, port 57010 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:40:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:40:23 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 1220Kbps, traffic frame size: 1427, expected trap rate: 3420.0pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 && tc filter add dev swp34 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 && tc filter add dev swp35 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 && tc filter add dev swp36 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 && tc filter add dev swp34 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 && tc filter add dev swp35 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 && tc filter add dev swp36 ingress protocol ip flower skip_sw src_mac 02:97:c7:55:9a:d1 dst_mac 02:f5:eb:80:1b:46 src_ip 108.183.127.35 dst_ip 86.109.87.55 ip_proto tcp src_port 19199 dst_port 64800 action trap action police rate 1220097bps burst 1221097 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f5:eb:80:1b:46","src_mac":"02:97:c7:55:9a:d1","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"86.109.87.55","src_ip":"108.183.127.35","dst_port":64800,"src_port":19199},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f5:eb:80:1b:46_src_mac_02:97:c7:55:9a:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_86.109.87.55_src_ip_108.183.127.35_dst_port_64800_src_port_19199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_dst_mac_02:f5:eb:80:1b:46_src_mac_02:97:c7:55:9a:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_86.109.87.55_src_ip_108.183.127.35_dst_port_64800_src_port_19199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_dst_mac_02:f5:eb:80:1b:46_src_mac_02:97:c7:55:9a:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_86.109.87.55_src_ip_108.183.127.35_dst_port_64800_src_port_19199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_dst_mac_02:f5:eb:80:1b:46_src_mac_02:97:c7:55:9a:d1_eth_type_ipv4_ip_proto_tcp_dst_ip_86.109.87.55_src_ip_108.183.127.35_dst_port_64800_src_port_19199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG infra1:Logger.py:156 3420 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG infra1:Logger.py:156 3426 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:53 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:54 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fe:d9:de:6d:ba:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:58","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":4,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":106,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled 195.46
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3257' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.5, port 59346 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG infra1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG infra1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:45:55 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 1] policer rate: 3065Kbps, traffic frame size: 323, expected trap rate: 9490pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:81:bd:74:bd:e8 dst_mac 02:a4:0c:ec:7e:bc src_ip 88.215.108.110 dst_ip 37.199.172.31 ip_proto udp src_port 20555 dst_port 26659 action trap action police rate 3065270bps burst 3066270 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:81:bd:74:bd:e8 dst_mac 02:a4:0c:ec:7e:bc src_ip 88.215.108.110 dst_ip 37.199.172.31 ip_proto udp src_port 20555 dst_port 26659 action trap action police rate 3065270bps burst 3066270 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a4:0c:ec:7e:bc","src_mac":"02:81:bd:74:bd:e8","eth_type":"ipv4","ip_proto":"udp","dst_ip":"37.199.172.31","src_ip":"88.215.108.110","dst_port":26659,"src_port":20555},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a4:0c:ec:7e:bc_src_mac_02:81:bd:74:bd:e8_eth_type_ipv4_ip_proto_udp_dst_ip_37.199.172.31_src_ip_88.215.108.110_dst_port_26659_src_port_20555 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG infra1:Logger.py:156 9543 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG infra1:Logger.py:156 9575 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:49:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:49:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:49:09 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG infra1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag 378.56
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3348' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.5, port 38836 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:49:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:49:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":107,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":107,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed DEBUG infra1:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG infra1:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1007 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed DEBUG infra1:Logger.py:156 1012 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1012 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed DEBUG infra1:Logger.py:156 10120 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10120 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed DEBUG infra1:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 303 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed DEBUG infra1:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 208 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg icmp DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG infra1:Logger.py:156 1013 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1013 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed DEBUG infra1:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1007 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close DEBUG infra1:Logger.py:156 10246 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10246 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code vrrp DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp DEBUG infra1:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 208 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw dst_mac 02:8f:b4:38:99:45 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw dst_mac 02:8f:b4:38:99:45 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG infra1:Logger.py:156 4040 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG infra1:Logger.py:156 4048 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:28 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":107,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:28 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] 337.38
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3547' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.5, port 40904 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 21:55:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG infra1:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 29 DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed DEBUG infra1:Logger.py:156 10087 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10087 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed DEBUG infra1:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1006 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG infra1:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1011 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for stat_code 209 DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed DEBUG infra1:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 201 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for trap_code arp_bc DEBUG infra1:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 303 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg local_route DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed DEBUG infra1:Logger.py:156 1015 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1015 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed DEBUG infra1:Logger.py:156 10158 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10158 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG infra1:Logger.py:156 1025 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1025 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:21:7e:3b:ca:9d dst_mac 02:85:c8:35:03:ff dst_ip 28.233.88.125 ip_proto tcp src_port 10850 dst_port 780 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:21:7e:3b:ca:9d dst_mac 02:85:c8:35:03:ff dst_ip 28.233.88.125 ip_proto tcp src_port 10850 dst_port 780 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG infra1:Logger.py:156 4036 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4036 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG infra1:Logger.py:156 4050 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4050 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:01:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:01:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:01:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=129] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=130] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=130] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] 393.54
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3724' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.5, port 45108 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:01:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:01:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed DEBUG infra1:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 303 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed DEBUG infra1:Logger.py:156 1000 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1000 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed DEBUG infra1:Logger.py:156 1018 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1018 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed DEBUG infra1:Logger.py:156 10149 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10149 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed DEBUG infra1:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 104 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close DEBUG infra1:Logger.py:156 301 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 301 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG infra1:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 208 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed DEBUG infra1:Logger.py:156 1019 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1019 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed DEBUG infra1:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1009 expected 1000 for trap_code ssh DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code mac_to_me DEBUG infra1:Logger.py:156 10203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10203 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:ac:49:27:b2:4c vlan_id 3315 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:ac:49:27:b2:4c vlan_id 3315 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 802.1q flower skip_sw dst_mac 02:b2:2c:16:5a:51 vlan_id 22 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp34 ingress protocol 802.1q flower skip_sw dst_mac 02:b2:2c:16:5a:51 vlan_id 22 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG infra1:Logger.py:156 4035 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4035 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG infra1:Logger.py:156 4054 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4054 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:07:38 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:07:38 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:07:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=141] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=142] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=142] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] 570.00
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-3913' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.5, port 35882 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:07:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:07:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed DEBUG infra1:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 203 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed DEBUG infra1:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 305 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed DEBUG infra1:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1010 expected 1000 for stat_code 207 DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed DEBUG infra1:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1010 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for stat_code 208 DEBUG infra1:Logger.py:156 10124 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10124 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 19 DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG infra1:Logger.py:156 307 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 307 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed DEBUG infra1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 206 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed DEBUG infra1:Logger.py:156 1017 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1017 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed DEBUG infra1:Logger.py:156 1008 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1008 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close DEBUG infra1:Logger.py:156 10202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 10202 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed DEBUG infra1:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 103 expected 100 for trap_code ip_bc_mac DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:9b:37:86:61:ce dst_ip 112.194.248.119 ip_proto udp src_port 49049 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:9b:37:86:61:ce dst_ip 112.194.248.119 ip_proto udp src_port 49049 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol ipv4 flower skip_sw dst_mac 02:e2:b2:4a:15:d1 src_ip 48.65.72.189 dst_ip 124.144.200.1 ip_proto udp dst_port 43231 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp34 ingress protocol ipv4 flower skip_sw dst_mac 02:e2:b2:4a:15:d1 src_ip 48.65.72.189 dst_ip 124.144.200.1 ip_proto udp dst_port 43231 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:08:09:62:9a:eb dst_mac 02:96:b1:5d:76:97 src_ip 102.61.171.241 ip_proto udp src_port 28665 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:08:09:62:9a:eb dst_mac 02:96:b1:5d:76:97 src_ip 102.61.171.241 ip_proto udp src_port 28665 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp36 ingress protocol 0x0800 flower skip_sw src_mac 02:8f:25:a7:6b:81 dst_mac 02:33:4e:9f:a7:14 src_ip 53.133.66.72 ip_proto udp dst_port 35736 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp36 ingress protocol 0x0800 flower skip_sw src_mac 02:8f:25:a7:6b:81 dst_mac 02:33:4e:9f:a7:14 src_ip 53.133.66.72 ip_proto udp dst_port 35736 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG infra1:Logger.py:156 4030 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4030 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG infra1:Logger.py:156 4050 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 4050 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:17:08 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:17:08 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:17:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=165] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=166] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=166] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable 1662.92
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4126' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.5, port 48936 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:17:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG infra1:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG infra1:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:17:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:17:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG infra1:Logger.py:156 66072 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66072 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG infra1:Logger.py:156 66275 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66275 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG infra1:Logger.py:156 66062 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66062 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG infra1:Logger.py:156 66513 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66513 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG infra1:Logger.py:156 66763 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66763 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG infra1:Logger.py:156 67337 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 67337 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG infra1:Logger.py:156 66117 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66117 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG infra1:Logger.py:156 66470 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66470 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG infra1:Logger.py:156 66061 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66061 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG infra1:Logger.py:156 66184 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66184 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG infra1:Logger.py:156 66062 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66062 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG infra1:Logger.py:156 66194 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66194 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG infra1:Logger.py:156 66053 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66053 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG infra1:Logger.py:156 66280 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66280 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG infra1:Logger.py:156 66060 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66060 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG infra1:Logger.py:156 66256 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66256 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG infra1:Logger.py:156 66054 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66054 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG infra1:Logger.py:156 66277 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66277 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG infra1:Logger.py:156 66076 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66076 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG infra1:Logger.py:156 66287 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66287 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG infra1:Logger.py:156 66048 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66048 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG infra1:Logger.py:156 66259 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66259 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG infra1:Logger.py:156 66056 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66056 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG infra1:Logger.py:156 66283 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66283 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG infra1:Logger.py:156 66016 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66016 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG infra1:Logger.py:156 66219 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66219 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG infra1:Logger.py:156 66034 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66034 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG infra1:Logger.py:156 66487 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66487 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG infra1:Logger.py:156 66069 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66069 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG infra1:Logger.py:156 66254 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66254 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw dst_mac 02:69:81:6b:02:f2 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw dst_mac 02:69:81:6b:02:f2 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG infra1:Logger.py:156 66066 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66066 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG infra1:Logger.py:156 66315 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 66315 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:44:51 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:44:51 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:44:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=137] Channel closed DEBUG infra1:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=138] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=138] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] 273.59
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4313' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.5, port 35716 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:44:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:44:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 1799 flower skip_sw dst_mac 02:93:cb:03:62:ca vlan_id 3718 action trap action police rate 324871bps burst 325871 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 1799 flower skip_sw dst_mac 02:93:cb:03:62:ca vlan_id 3718 action trap action police rate 324871bps burst 325871 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 1799 flower skip_sw dst_mac 02:93:cb:03:62:ca vlan_id 3718 src_mac 02:83:8e:9d:e8:7f action trap action police rate 81217bps burst 82217 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 1799 flower skip_sw dst_mac 02:93:cb:03:62:ca vlan_id 3718 src_mac 02:83:8e:9d:e8:7f action trap action police rate 81217bps burst 82217 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG infra1:Logger.py:156 260 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 260 expected 260.1048839071257 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG infra1:Logger.py:156 261 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 261 expected 260.1048839071257 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 1799 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 1799 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 1799 flower skip_sw dst_mac 02:93:cb:03:62:ca vlan_id 3718 action trap action police rate 324871bps burst 325871 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 1799 flower skip_sw dst_mac 02:93:cb:03:62:ca vlan_id 3718 action trap action police rate 324871bps burst 325871 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG infra1:Logger.py:156 64 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 64 expected 65.02562049639712 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG infra1:Logger.py:156 64 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 64 expected 65.02562049639712 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:49:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:49:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=65] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=66] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=66] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] 314.83
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4395' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.5, port 33032 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:49:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:49:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 17554 flower skip_sw dst_mac 02:d6:56:87:2a:f3 vlan_id 1156 action trap action police rate 1532883bps burst 1533883 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 17554 flower skip_sw dst_mac 02:d6:56:87:2a:f3 vlan_id 1156 action trap action police rate 1532883bps burst 1533883 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 17554 flower skip_sw dst_mac 02:d6:56:87:2a:f3 vlan_id 1156 src_mac 02:3f:b5:d7:9e:1a action trap action police rate 383220bps burst 384220 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 17554 flower skip_sw dst_mac 02:d6:56:87:2a:f3 vlan_id 1156 src_mac 02:3f:b5:d7:9e:1a action trap action police rate 383220bps burst 384220 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG infra1:Logger.py:156 1446 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1446 expected 1444.7530631479735 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG infra1:Logger.py:156 1454 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1454 expected 1444.7530631479735 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 17554 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 17554 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 17554 flower skip_sw dst_mac 02:d6:56:87:2a:f3 vlan_id 1156 action trap action police rate 1532883bps burst 1533883 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 17554 flower skip_sw dst_mac 02:d6:56:87:2a:f3 vlan_id 1156 action trap action police rate 1532883bps burst 1533883 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG infra1:Logger.py:156 362 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 362 expected 361.1875589066918 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG infra1:Logger.py:156 363 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 363 expected 361.1875589066918 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:54:39 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:54:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=65] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=66] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=66] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] 354.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4477' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.5, port 51296 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:54:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 22:54:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 17592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 2804048bps burst 2805048 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 17592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 2804048bps burst 2805048 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 18592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 701012bps burst 702012 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 18592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 701012bps burst 702012 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG infra1:Logger.py:156 3334 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3334 expected 3318.4 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG infra1:Logger.py:156 3345 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3345 expected 3318.4 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 17592 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp33 ingress pref 17592 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 17592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 2804048bps burst 2805048 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 17592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 2804048bps burst 2805048 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG infra1:Logger.py:156 3334 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3334 expected 3318.4 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG infra1:Logger.py:156 3342 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3342 expected 3318.4 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 17592 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp33 ingress pref 17592 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 19592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 2804048bps burst 2805048 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 19592 flower skip_sw src_mac 02:5a:0c:e6:0a:58 action trap action police rate 2804048bps burst 2805048 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG infra1:Logger.py:156 833 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 833 expected 829.6 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG infra1:Logger.py:156 835 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 835 expected 829.6 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:00:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:00:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=73] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=74] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=74] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] 360.54
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4569' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.5, port 45464 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:00:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:00:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 16276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 208446bps burst 209446 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q pref 16276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 208446bps burst 209446 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 17276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 52111bps burst 53111 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp33 ingress protocol 802.1q pref 17276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 52111bps burst 53111 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG infra1:Logger.py:156 165 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 165 expected 164.64928909952607 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG infra1:Logger.py:156 165 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 165 expected 164.64928909952607 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 16276 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp33 ingress pref 16276 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 16276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 208446bps burst 209446 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp33 ingress protocol 802.1q pref 16276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 208446bps burst 209446 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG infra1:Logger.py:156 164 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 164 expected 164.64928909952607 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG infra1:Logger.py:156 165 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 165 expected 164.64928909952607 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 16276 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp33 ingress pref 16276 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 18276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 208446bps burst 209446 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp33 ingress protocol 802.1q pref 18276 flower skip_sw dst_mac 02:2f:1f:92:6c:4f vlan_id 3055 action trap action police rate 208446bps burst 209446 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG infra1:Logger.py:156 41 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 41 expected 41.161927330173775 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG infra1:Logger.py:156 41 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 41 expected 41.161927330173775 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:06:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:06:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=73] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=74] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=74] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] 241.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4661' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.5, port 47970 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:06:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:06:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 2172 action trap action police rate 1510134bps burst 1511134 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 2172 action trap action police rate 1510134bps burst 1511134 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2172,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2172_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG infra1:Logger.py:156 2519 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2519 expected 2521.091819699499 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG infra1:Logger.py:156 2528 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2528 expected 2521.091819699499 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:10:36 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:10:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] 203.66
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4733' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.5, port 42334 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:10:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:10:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 80.113.71.225 dst_ip 88.181.104.64 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 549550bps burst 550550 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 80.113.71.225 dst_ip 88.181.104.64 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 549550bps burst 550550 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"88.181.104.64","src_ip":"80.113.71.225"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_88.181.104.64_src_ip_80.113.71.225 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG infra1:Logger.py:156 1119 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1119 expected 1137.784679089027 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG infra1:Logger.py:156 1121 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1121 expected 1137.784679089027 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:14:00 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:14:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] 196.98
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4805' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.5, port 42724 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:14:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:14:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 17863 dst_port 48770 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 1200281bps burst 1201281 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 17863 dst_port 48770 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 1200281bps burst 1201281 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":48770,"src_port":17863},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_tcp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_48770_src_port_17863 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG infra1:Logger.py:156 1935 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1935 expected 1923.5272435897436 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG infra1:Logger.py:156 1941 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1941 expected 1923.5272435897436 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:17:17 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:17:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_random 198.18
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4877' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.5, port 53178 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:17:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:17:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:b2:84:62:48:30 vlan_id 3211 vlan_ethtype 0x0800 src_ip 65.152.254.132 dst_ip 124.141.223.85 ip_proto udp src_port 18203 action trap action police rate 549077bps burst 550077 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:b2:84:62:48:30 vlan_id 3211 vlan_ethtype 0x0800 src_ip 65.152.254.132 dst_ip 124.141.223.85 ip_proto udp src_port 18203 action trap action police rate 549077bps burst 550077 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3211,"vlan_ethtype":"ip","src_mac":"02:b2:84:62:48:30","eth_type":"ipv4","ip_proto":"udp","dst_ip":"124.141.223.85","src_ip":"65.152.254.132","src_port":18203},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3211_vlan_ethtype_ip_src_mac_02:b2:84:62:48:30_eth_type_ipv4_ip_proto_udp_dst_ip_124.141.223.85_src_ip_65.152.254.132_src_port_18203 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG infra1:Logger.py:156 922 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 922 expected 936.9914675767918 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG infra1:Logger.py:156 924 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 924 expected 936.9914675767918 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:20:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:20:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_policer_log 197.40
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-4949' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.5, port 35540 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:20:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:20:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw dst_mac 02:a5:d0:5f:a2:98 src_ip 31.177.244.101 dst_ip 33.35.123.242 ip_proto udp dst_port 44583 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw dst_mac 02:a5:d0:5f:a2:98 src_ip 31.177.244.101 dst_ip 33.35.123.242 ip_proto udp dst_port 44583 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a5:d0:5f:a2:98","eth_type":"ipv4","ip_proto":"udp","dst_ip":"33.35.123.242","src_ip":"31.177.244.101","dst_port":44583},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower dst_mac 02:a5:d0:5f:a2:98 src_ip 31.177.244.101 dst_ip 33.35.123.242 ip_proto udp dst_port 44583 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp33 ingress protocol ipv4 flower dst_mac 02:a5:d0:5f:a2:98 src_ip 31.177.244.101 dst_ip 33.35.123.242 ip_proto udp dst_port 44583 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG infra1:Logger.py:156 tablename: mangle hook: NF_IP_POST_ROUTING target: LOG level warning index 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a5:d0:5f:a2:98_eth_type_ipv4_ip_proto_udp_dst_ip_33.35.123.242_src_ip_31.177.244.101_dst_port_44583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG infra1:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG infra1:Logger.py:156 46 INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG infra1:Logger.py:156 21 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 21 expected 21 for stat_code 195 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG infra1:Logger.py:156 22 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 22 expected 21 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:23:52 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=60] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:23:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=61] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=62] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=62] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] 199.61
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5025' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.5, port 49480 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:23:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:23:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:c4:fb:e1:03:01 dst_mac 02:d5:2c:85:b2:ad vlan_id 2040 action trap action police rate 8835496.0bit burst 8836496.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:c4:fb:e1:03:01 dst_mac 02:d5:2c:85:b2:ad vlan_id 2040 action trap action police rate 8835496.0bit burst 8836496.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2040,"dst_mac":"02:d5:2c:85:b2:ad","src_mac":"02:c4:fb:e1:03:01"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2040_dst_mac_02:d5:2c:85:b2:ad_src_mac_02:c4:fb:e1:03:01 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG infra1:Logger.py:156 2794 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2794 expected 3067.8805555555555 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG infra1:Logger.py:156 2805 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2805 expected 3067.8805555555555 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:27:12 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:27:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] 202.69
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5169' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.5, port 51758 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:30:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:30:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:24:58:0c:37:1b dst_mac 02:87:99:cd:5f:00 vlan_id 810 action trap action police rate 0.005833766gbit burst 1000.005833766 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:24:58:0c:37:1b dst_mac 02:87:99:cd:5f:00 vlan_id 810 action trap action police rate 0.005833766gbit burst 1000.005833766 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":810,"dst_mac":"02:87:99:cd:5f:00","src_mac":"02:24:58:0c:37:1b"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_810_dst_mac_02:87:99:cd:5f:00_src_mac_02:24:58:0c:37:1b INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG infra1:Logger.py:156 2908 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2908 expected 2893.7331349206347 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG infra1:Logger.py:156 2916 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2916 expected 2893.7331349206347 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:33:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:33:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] 202.66
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5241' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.5, port 39220 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:33:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:33:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:06:0e:96:d8:95 dst_mac 02:95:6f:a5:f0:6c dst_ip 49.197.246.230 ip_proto udp src_port 35266 dst_port 63556 action trap action police rate 271372.75bps burst 272372.75 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:06:0e:96:d8:95 dst_mac 02:95:6f:a5:f0:6c dst_ip 49.197.246.230 ip_proto udp src_port 35266 dst_port 63556 action trap action police rate 271372.75bps burst 272372.75 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:95:6f:a5:f0:6c","src_mac":"02:06:0e:96:d8:95","eth_type":"ipv4","ip_proto":"udp","dst_ip":"49.197.246.230","dst_port":63556,"src_port":35266},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:95:6f:a5:f0:6c_src_mac_02:06:0e:96:d8:95_eth_type_ipv4_ip_proto_udp_dst_ip_49.197.246.230_dst_port_63556_src_port_35266 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG infra1:Logger.py:156 1113 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1113 expected 1107.6438775510203 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG infra1:Logger.py:156 1118 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1118 expected 1107.6438775510203 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:37:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:37:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] 202.89
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5313' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.5, port 53588 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:37:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:37:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:cf:ad:ca:12:12 action trap action police rate 316.594375kbps burst 1316.5943750000001 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw dst_mac 02:cf:ad:ca:12:12 action trap action police rate 316.594375kbps burst 1316.5943750000001 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:cf:ad:ca:12:12","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:cf:ad:ca:12:12_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG infra1:Logger.py:156 1413 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1413 expected 1407.0861111111112 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG infra1:Logger.py:156 1417 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 1417 expected 1407.0861111111112 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:40:42 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:40:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] 208.31
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5385' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.5, port 36334 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:40:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:40:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:c1:a9:c7:14:ce vlan_id 2567 vlan_ethtype 0x0800 src_ip 36.20.4.167 dst_ip 43.41.60.106 action trap action police rate 0.5937825mbps burst 1000.5937825 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:c1:a9:c7:14:ce vlan_id 2567 vlan_ethtype 0x0800 src_ip 36.20.4.167 dst_ip 43.41.60.106 action trap action police rate 0.5937825mbps burst 1000.5937825 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2567,"vlan_ethtype":"ip","src_mac":"02:c1:a9:c7:14:ce","eth_type":"ipv4","dst_ip":"43.41.60.106","src_ip":"36.20.4.167"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2567_vlan_ethtype_ip_src_mac_02:c1:a9:c7:14:ce_eth_type_ipv4_dst_ip_43.41.60.106_src_ip_36.20.4.167 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG infra1:Logger.py:156 2899 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2899 expected 2882.4393203883496 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG infra1:Logger.py:156 2909 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 2909 expected 2882.4393203883496 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:44:10 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:44:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] 204.81
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5457' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.5, port 58122 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:44:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:44:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:21:58:88:dd:10 vlan_id 198 action trap action police rate 0.00143942975gbps burst 1000.00143942975 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:21:58:88:dd:10 vlan_id 198 action trap action police rate 0.00143942975gbps burst 1000.00143942975 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":198,"dst_mac":"02:21:58:88:dd:10"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_198_dst_mac_02:21:58:88:dd:10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG infra1:Logger.py:156 3411 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3411 expected 3394.8814858490564 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG infra1:Logger.py:156 3425 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3425 expected 3394.8814858490564 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:47:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:47:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] 203.59
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5529' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.5, port 36414 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:47:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:47:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:ca:a3:08:fd:31 vlan_id 453 vlan_ethtype ipv4 src_ip 116.206.31.243 dst_ip 57.173.249.212 action trap action police rate 1.85211075e-06tbps burst 1000.0000018521107 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:ca:a3:08:fd:31 vlan_id 453 vlan_ethtype ipv4 src_ip 116.206.31.243 dst_ip 57.173.249.212 action trap action police rate 1.85211075e-06tbps burst 1000.0000018521107 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":453,"vlan_ethtype":"ip","dst_mac":"02:ca:a3:08:fd:31","eth_type":"ipv4","dst_ip":"57.173.249.212","src_ip":"116.206.31.243"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_453_vlan_ethtype_ip_dst_mac_02:ca:a3:08:fd:31_eth_type_ipv4_dst_ip_57.173.249.212_src_ip_116.206.31.243 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG infra1:Logger.py:156 3760 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3760 expected 3741.637878787879 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG infra1:Logger.py:156 3767 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 3767 expected 3741.637878787879 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:50:58 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:50:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=57] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=58] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=58] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[1] 184.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5601' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[1]">Starting testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.5, port 60364 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:50:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:51:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:51:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=92, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=26] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3e710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10233836 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 5116919 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 5116919 INFO asyncssh:logging.py:92 [conn=92, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=28] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=28] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=92, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=29] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=30] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=32] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:54:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:54:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=92, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=92, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0
Passed functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[3] 221.36
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5657' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[3]">Starting testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.5, port 45584 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:54:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:54:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:54:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=93, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=26] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592020fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10117611 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=28] Command: ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=28] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=93, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=29] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=30] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=32] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:57:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=34] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:57:45 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=93, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=93, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0
Passed functional/ecmp/test_ecmp.py::test_ecmp_hash_policy 346.08
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5713' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_hash_policy">Starting testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.5, port 47578 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:57:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:57:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG infra1:Logger.py:156 Tue Aug 1 23:57:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=94, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3e2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 20000 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 6003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 10003
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=94, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:03:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:03:31 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=94, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=94, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=38] Command: sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0
Passed functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[basic] 224.17
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5767' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[basic]">Starting testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.5, port 40074 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:03:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:03:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592023f70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10087997 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3362667 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3026400 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3698933
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:07:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:07:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=95, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[nexthop_down] 217.53
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5809' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[nexthop_down]">Starting testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.5, port 39138 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:07:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:07:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=20] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3d180>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10096921 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 5048462 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 5048461 INFO asyncssh:logging.py:92 [conn=96, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=22] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=22] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=96, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:10:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:10:53 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=96, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[dynamic] 218.44
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5855' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[dynamic]">Starting testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.5, port 36176 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:10:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:10:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920ba6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10110978 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2 Rx 3370330 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3370326 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3370329
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:14:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:14:32 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=97, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ecmp/test_ecmp.py::test_ecmp_distribution_lags 233.85
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5896' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_distribution_lags">Starting testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.5, port 54516 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:14:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:14:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond2 with ports ['/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond2_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=98, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond1_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond2_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920856c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 10106157 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2 Rx 5053082 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 2694976 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 2358106
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=98, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:18:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:18:25 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=98, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":108,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":109,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:18:25 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=98, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=40] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"GOING_DOWN","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"GOING_DOWN","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":108,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":109,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=98, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=42] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=44] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=44] Channel closed DEBUG infra1:Logger.py:156
Passed functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[1] 763.05
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-5952' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[1]">Starting testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.5, port 45860 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:18:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:18:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:1d:2c:1b:f7:d9 dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:1d:2c:1b:f7:d9 dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920bbf10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2156605 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4 INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG infra1:Logger.py:156 170226 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85923007c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2114608 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 8 INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG infra1:Logger.py:156 170622 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920860e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2296249 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 11 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG infra1:Logger.py:156 170570 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217fe20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2106708 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 14 INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG infra1:Logger.py:156 170654 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85923033a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2077127 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 17 INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=32] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=32] Channel closed DEBUG infra1:Logger.py:156 170213 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b4910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2156913 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 21 INFO asyncssh:logging.py:92 [conn=99, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=34] Channel closed DEBUG infra1:Logger.py:156 170223 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217d720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2316537 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 24 INFO asyncssh:logging.py:92 [conn=99, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=36] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=36] Channel closed DEBUG infra1:Logger.py:156 170299 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:31:08 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=46] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:31:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=47] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=48] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=48] Channel closed DEBUG infra1:Logger.py:156
Passed functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[3] 816.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6012' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[3]">Starting testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.5, port 50964 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:31:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:31:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.3.2/24', 'count': 1, 'ip': '2.2.3.2', 'gw': '2.2.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2.2.4.2/24', 'count': 1, 'ip': '2.2.4.2', 'gw': '2.2.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:df:05:61:ab:36 dev swp33 && ip neigh add 2.2.3.2 lladdr 02:33:1f:9c:ae:5b dev swp34 && ip neigh add 2.2.4.2 lladdr 02:c3:21:a8:78:16 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:df:05:61:ab:36 dev swp33 && ip neigh add 2.2.3.2 lladdr 02:33:1f:9c:ae:5b dev swp34 && ip neigh add 2.2.4.2 lladdr 02:c3:21:a8:78:16 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217d570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2509618 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2509618 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2509618 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG infra1:Logger.py:156 461571 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b62c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2201788 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2201788 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2201788 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG infra1:Logger.py:156 461279 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b58a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2365510 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2365510 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2365510 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG infra1:Logger.py:156 462176 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217c6d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2449374 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2449374 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2449374 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=34] Channel closed DEBUG infra1:Logger.py:156 461370 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217d780>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2522585 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2522585 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2522585 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=36] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=36] Channel closed DEBUG infra1:Logger.py:156 462980 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217c670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2601389 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2601389 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2601389 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=37] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=38] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=38] Channel closed DEBUG infra1:Logger.py:156 461423 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592087700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2369000 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2369000 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2369000 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=40] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=40] Channel closed DEBUG infra1:Logger.py:156 462075 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:44:45 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=44] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=48] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:44:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=51] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=52] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=52] Channel closed DEBUG infra1:Logger.py:156
Passed functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3_exp_counters 238.16
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6076' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3_exp_counters">Starting testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.5, port 54190 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:44:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:44:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG infra1:Logger.py:156 62:92765031 136:76907539 137:51246738 138:25622132 145:25682136 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_3.3.3.1/24', 'count': 1, 'ip': '3.3.3.1', 'gw': '3.3.3.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.1/24', 'count': 1, 'ip': '0.0.0.1', 'gw': '0.0.0.0', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 3.3.3.1 lladdr 02:60:4b:b8:4a:07 dev swp33 && ip neigh add 0.0.0.1 lladdr 02:7f:29:87:4c:85 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip neigh add 3.3.3.1 lladdr 02:60:4b:b8:4a:07 dev swp33 && ip neigh add 0.0.0.1 lladdr 02:7f:29:87:4c:85 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_3.3.3.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG infra1:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG infra1:Logger.py:156 62:92765031 136:77486922 137:51633200 138:25815431 145:25875813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:48:43 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6a:eb:04:3a:11:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:48:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=37] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=38] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_ipv4_ecmp 567.92
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6126' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_ipv4_ecmp">Starting testcase:test_ifupdown2_ipv4_ecmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.5, port 53090 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:48:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:48:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:48:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto swp33 iface swp33 inet static address 119.64.0.1/11 auto swp34 iface swp34 inet static address 52.64.0.1/10 auto swp35 iface swp35 inet static address 2.2.2.1/24 up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: echo -e ' auto swp33 iface swp33 inet static address 119.64.0.1/11 auto swp34 iface swp34 inet static address 52.64.0.1/10 auto swp35 iface swp35 inet static address 2.2.2.1/24 up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=20] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=20] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto swp33 iface swp33 inet static address 119.64.0.1/11 auto swp34 iface swp34 inet static address 52.64.0.1/10 auto swp35 iface swp35 inet static address 2.2.2.1/24 up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 INFO asyncssh:logging.py:92 [conn=102, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=102, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=22] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=102, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=22] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'swp33', 'swp34', 'swp35'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: swp33: netlink: ip link set dev swp33 up info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /bin/ip -force -batch - [addr add 119.64.0.1/11 dev swp33 ] info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: swp34: netlink: ip link set dev swp34 up info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /bin/ip -force -batch - [addr add 52.64.0.1/10 dev swp34 ] info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: swp35: netlink: ip link set dev swp35 up info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /bin/ip -force -batch - [addr add 2.2.2.1/24 dev swp35 ] info: executing ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 info: executing ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 info: executing ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=102, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=24] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=102, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=24] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto swp33 iface swp33 inet static [pass] address 119.64.0.1/11 [pass] auto swp34 iface swp34 inet static [pass] address 52.64.0.1/10 [pass] auto swp35 iface swp35 inet static [pass] up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 [] up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 [] up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 [] address 2.2.2.1/24 [pass] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_119.95.255.246/11', 'count': 1, 'ip': '119.95.255.246', 'gw': '119.64.0.1', 'plen': 11, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_52.127.255.246/10', 'count': 1, 'ip': '52.127.255.246', 'gw': '52.64.0.1', 'plen': 10, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': '24', 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=102, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=26] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=102, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=102, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=28] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=102, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bidirectional_stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_119.95.255.246/11 to 10.36.118.199:2:2_52.127.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_119.95.255.246/11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_52.127.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=102, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=102, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"52.64.0.0/10","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"52.64.0.1","flags":["rt_trap"]},{"dst":"119.64.0.0/11","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"119.64.0.1","flags":["rt_trap"]},{"dst":"189.236.0.0/18","flags":["rt_offload"],"nexthops":[{"gateway":"119.66.71.253","dev":"swp33","weight":1,"flags":["offload"]},{"gateway":"52.73.180.97","dev":"swp34","weight":1,"flags":["offload"]}]}] INFO asyncssh:logging.py:92 [conn=102, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 address show INFO asyncssh:logging.py:92 [conn=102, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=32] Command: ip -j -4 address show INFO asyncssh:logging.py:92 [conn=102, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"119.64.0.1","prefixlen":11,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"52.64.0.1","prefixlen":10,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592301600>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bidirectional_stream SIP-DIP 52.127.255.246-119.95.255.246 Tx 4886125 Rx 4886125 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bidirectional_stream SIP-DIP 119.95.255.246-52.127.255.246 Tx 4886125 Rx 4886125 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bidirectional_stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_119.95.255.246/11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_52.127.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592087790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3775879 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7551755 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 11327631 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2 INFO asyncssh:logging.py:92 [conn=102, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=102] Closing connection INFO asyncssh:logging.py:92 [conn=102] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=102] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.5, port 50508 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.5, port 44710 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 20:07:39 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 49s INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 35500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto swp33 iface swp33 inet static [fail] address 119.64.0.1/11 [fail] auto swp34 iface swp34 inet static [fail] address 52.64.0.1/10 [fail] auto swp35 iface swp35 inet static [fail] up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 [] up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 [] up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 [] address 2.2.2.1/24 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto swp33 iface swp33 inet static [pass] address 119.64.0.1/11 [pass] auto swp34 iface swp34 inet static [pass] address 52.64.0.1/10 [pass] auto swp35 iface swp35 inet static [fail] up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 [] up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 [] up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 [] address 2.2.2.1/24 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto swp33 iface swp33 inet static [pass] address 119.64.0.1/11 [pass] auto swp34 iface swp34 inet static [pass] address 52.64.0.1/10 [pass] auto swp35 iface swp35 inet static [pass] up ip route add 189.236.0.0/18 nexthop via 119.66.71.253 nexthop via 52.73.180.97 [] up ip neigh add 119.66.71.253 lladdr 02:22:ec:9e:a7:cb dev swp33 [] up ip neigh add 52.73.180.97 lladdr 02:c0:1b:2a:21:7e dev swp34 [] address 2.2.2.1/24 [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 31s INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"52.64.0.0/10","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"52.64.0.1","flags":["rt_trap"]},{"dst":"119.64.0.0/11","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"119.64.0.1","flags":["rt_trap"]},{"dst":"189.236.0.0/18","flags":["rt_offload"],"nexthops":[{"gateway":"119.66.71.253","dev":"swp33","weight":1,"flags":["offload"]},{"gateway":"52.73.180.97","dev":"swp34","weight":1,"flags":["offload"]}]}] INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 address show INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: ip -j -4 address show INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"119.64.0.1","prefixlen":11,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"52.64.0.1","prefixlen":10,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592087dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3758132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7516261 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 11274387 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: increment_ip_dst INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bidirectional_stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_119.95.255.246/11 to 10.36.118.199:2:2_52.127.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_119.95.255.246/11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_52.127.255.246/10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ef580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bidirectional_stream SIP-DIP 52.127.255.246-119.95.255.246 Tx 4894247 Rx 4894247 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bidirectional_stream SIP-DIP 119.95.255.246-52.127.255.246 Tx 4894247 Rx 4894247 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_ipv4_ecmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp33', 'swp34', 'swp35'] info: swp33: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: swp33: netlink: ip link set dev swp33 down info: executing /bin/ip addr del 119.64.0.1/11 dev swp33 info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /bin/ip addr del 52.64.0.1/10 dev swp34 info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /bin/ip addr del 2.2.2.1/24 dev swp35 info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:58:11 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=104, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=20] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=104, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=22] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=104, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"72:04:fe:42:fb:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"d2:47:34:f8:63:f6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=104, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=24] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=104, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=104, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=104, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_bridge 565.51
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6206' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_bridge">Starting testcase:test_ifupdown2_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.5, port 51460 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:58:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 00:58:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-vlan-aware yes bridge-pvid 1 bridge-vids 100 101 102 up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-vlan-aware yes bridge-pvid 1 bridge-vids 100 101 102 up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-vlan-aware yes bridge-pvid 1 bridge-vids 100 101 102 up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-vlan-aware yes info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: set bridge-arp-nd-suppress off info: br0: swp36: set bridge-arp-nd-suppress off info: br0: swp34: set bridge-arp-nd-suppress off info: br0: swp35: set bridge-arp-nd-suppress off info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: executing /sbin/bridge -c -json vlan show info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: executing /sbin/bridge -force -batch - [vlan add vid 100-102 dev swp33 vlan add vid 100-102 dev swp36 vlan add vid 100-102 dev swp34 vlan add vid 100-102 dev swp35 ] info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 info: executing bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 info: executing bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 info: executing bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 info: executing bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 info: executing bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 [] up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 [] up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 [] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-vlan-aware yes [pass] bridge-pvid 1 bridge-vids 100 101 102 [] INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=20] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=22] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=105, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=24] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=105, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp34","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp35","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp36","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"br0","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for s1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_102 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b6bc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI s1 SIP-DIP N/A Tx 1002202 Rx 1002202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI s1 SIP-DIP N/A Tx 1002202 Rx 1002202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI s1 SIP-DIP N/A Tx 1002201 Rx 1002201 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI vlan_100 SIP-DIP N/A Tx 1002202 Rx 1002202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI vlan_101 SIP-DIP N/A Tx 1002202 Rx 1002202 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI vlan_102 SIP-DIP N/A Tx 1002202 Rx 1002202 Loss 0.000 INFO asyncssh:logging.py:92 [conn=105, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=105] Closing connection INFO asyncssh:logging.py:92 [conn=105] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=105] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.5, port 46428 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.5, port 49706 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 20:17:54 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] up bridge fdb add 00:22:00:64:00:00 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:01 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:02 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:03 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:04 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:05 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:06 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:07 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:08 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:09 dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0A dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0B dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0C dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0D dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0E dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:0F dev swp34 master static vlan 100 [] up bridge fdb add 00:22:00:64:00:10 dev swp34 master static vlan 100 [] up bridge fdb add 00:23:00:65:00:00 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:01 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:02 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:03 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:04 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:05 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:06 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:07 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:08 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:09 dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0A dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0B dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0C dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0D dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0E dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:0F dev swp35 master static vlan 101 [] up bridge fdb add 00:23:00:65:00:10 dev swp35 master static vlan 101 [] up bridge fdb add 00:24:00:66:00:00 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:01 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:02 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:03 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:04 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:05 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:06 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:07 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:08 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:09 dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0A dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0B dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0C dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0D dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0E dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:0F dev swp36 master static vlan 102 [] up bridge fdb add 00:24:00:66:00:10 dev swp36 master static vlan 102 [] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-vlan-aware yes [pass] bridge-pvid 1 bridge-vids 100 101 102 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp34","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp35","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"swp36","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]},{"vlan":100},{"vlan":101},{"vlan":102}]},{"ifname":"br0","vlans":[{"vlan":1,"flags":["PVID","Egress Untagged"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI s1 SIP-DIP N/A Tx 951559 Rx 951559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI s1 SIP-DIP N/A Tx 951559 Rx 951559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI s1 SIP-DIP N/A Tx 951558 Rx 951558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI vlan_100 SIP-DIP N/A Tx 951559 Rx 951559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI vlan_101 SIP-DIP N/A Tx 951559 Rx 951559 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI vlan_102 SIP-DIP N/A Tx 951559 Rx 951559 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=107, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=107, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=107, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=20] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=107, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=20] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['br0'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=107, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:07:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=107, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=24] Channel closed DEBUG infra1:Logger.py:156 []
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_lacp 708.56
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6274' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_lacp">Starting testcase:test_ifupdown2_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.5, port 34064 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:07:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:07:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto bond1 iface bond1 inet static bond-slaves swp5 swp7 swp9 bond-mode 802.3ad auto bond2 iface bond2 inet static bond-slaves swp6 swp8 swp10 bond-mode 802.3ad auto br1 iface br1 inet static bridge-ports swp33 bond1 auto br2 iface br2 inet static bridge-ports swp34 bond2 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: echo -e ' auto bond1 iface bond1 inet static bond-slaves swp5 swp7 swp9 bond-mode 802.3ad auto bond2 iface bond2 inet static bond-slaves swp6 swp8 swp10 bond-mode 802.3ad auto br1 iface br1 inet static bridge-ports swp33 bond1 auto br2 iface br2 inet static bridge-ports swp34 bond2 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto bond1 iface bond1 inet static bond-slaves swp5 swp7 swp9 bond-mode 802.3ad auto bond2 iface bond2 inet static bond-slaves swp6 swp8 swp10 bond-mode 802.3ad auto br1 iface br1 inet static bridge-ports swp33 bond1 auto br2 iface br2 inet static bridge-ports swp34 bond2 INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'bond1', 'bond2', 'br1', 'br2'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp10: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp10/input' info: executing /sbin/sysctl net.mpls.conf.swp10.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp8: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp8/input' info: executing /sbin/sysctl net.mpls.conf.swp8.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp6: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp6/input' info: executing /sbin/sysctl net.mpls.conf.swp6.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: bond2: running ops ... info: bond2: set bond-mode 802.3ad info: bond2: netlink: ip link add bond2 type bond with attributes info: swp10: netlink: ip link set dev swp10 master bond2 info: swp10: netlink: ip link set dev swp10 up info: swp8: netlink: ip link set dev swp8 master bond2 info: swp8: netlink: ip link set dev swp8 up info: swp6: netlink: ip link set dev swp6 master bond2 info: swp6: netlink: ip link set dev swp6 up info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/bond2/input' info: executing /sbin/sysctl net.mpls.conf.bond2.input=0 info: executing /bin/ip -force -batch - [link set dev bond2 mtu 1500 ] info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br2: running ops ... info: br2: netlink: ip link add br2 type bridge info: br2: apply bridge settings info: br2: set bridge-mcsnoop yes info: reading '/sys/class/net/br2/bridge/stp_state' info: br2: netlink: ip link set br2 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/bond2/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp34 master br2 addr flush dev swp34 link set dev bond2 master br2 addr flush dev bond2 ] info: br2: applying bridge port configuration: ['bond2', 'swp34'] info: br2: applying bridge configuration specific to ports info: br2: processing bridge config for port bond2 info: br2: processing bridge config for port swp34 info: bond2: netlink: ip link set dev bond2 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br2: netlink: ip link set dev br2 up info: reading '/proc/sys/net/mpls/conf/br2/input' info: executing /sbin/sysctl net.mpls.conf.br2.input=0 info: reading '/proc/sys/net/ipv4/conf/br2/forwarding' info: reading '/proc/sys/net/ipv6/conf/br2/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp9: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp9/input' info: executing /sbin/sysctl net.mpls.conf.swp9.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp7: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp7/input' info: executing /sbin/sysctl net.mpls.conf.swp7.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp5: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp5/input' info: executing /sbin/sysctl net.mpls.conf.swp5.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: bond1: running ops ... info: bond1: set bond-mode 802.3ad info: bond1: netlink: ip link add bond1 type bond with attributes info: swp9: netlink: ip link set dev swp9 master bond1 info: swp9: netlink: ip link set dev swp9 up info: swp7: netlink: ip link set dev swp7 master bond1 info: swp7: netlink: ip link set dev swp7 up info: swp5: netlink: ip link set dev swp5 master bond1 info: swp5: netlink: ip link set dev swp5 up info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/bond1/input' info: executing /sbin/sysctl net.mpls.conf.bond1.input=0 info: executing /bin/ip -force -batch - [link set dev bond1 mtu 1500 ] info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br1: running ops ... info: br1: netlink: ip link add br1 type bridge info: br1: apply bridge settings info: br1: set bridge-mcsnoop yes info: reading '/sys/class/net/br1/bridge/stp_state' info: br1: netlink: ip link set br1 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/bond1/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br1 addr flush dev swp33 link set dev bond1 master br1 addr flush dev bond1 ] info: br1: applying bridge port configuration: ['swp33', 'bond1'] info: br1: applying bridge configuration specific to ports info: br1: processing bridge config for port swp33 info: br1: processing bridge config for port bond1 info: swp33: netlink: ip link set dev swp33 up info: bond1: netlink: ip link set dev bond1 up info: executing /etc/network/if-pre-up.d/hostapd info: br1: netlink: ip link set dev br1 up info: reading '/proc/sys/net/mpls/conf/br1/input' info: executing /sbin/sysctl net.mpls.conf.br1.input=0 info: reading '/proc/sys/net/ipv4/conf/br1/forwarding' info: reading '/proc/sys/net/ipv6/conf/br1/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 inet static [pass] bond-slaves swp6 swp8 swp10 [pass] bond-mode 802.3ad [pass] auto br1 iface br1 inet static [pass] bridge-ports swp33 bond1 [pass] auto br2 iface br2 inet static [pass] bridge-ports swp34 bond2 [pass] INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond1 INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip -j link show bond1 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master bond1 INFO asyncssh:logging.py:92 [conn=108, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=22] Command: ip -j link show master bond1 INFO asyncssh:logging.py:92 [conn=108, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3b"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3d"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond2 INFO asyncssh:logging.py:92 [conn=108, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=24] Command: ip -j link show bond2 INFO asyncssh:logging.py:92 [conn=108, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master bond2 INFO asyncssh:logging.py:92 [conn=108, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=26] Command: ip -j link show master bond2 INFO asyncssh:logging.py:92 [conn=108, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3c"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3e"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br1 INFO asyncssh:logging.py:92 [conn=108, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=28] Command: ip -j link show br1 INFO asyncssh:logging.py:92 [conn=108, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":62,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br1 INFO asyncssh:logging.py:92 [conn=108, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=30] Command: ip -j link show master br1 INFO asyncssh:logging.py:92 [conn=108, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":61,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br2 INFO asyncssh:logging.py:92 [conn=108, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=32] Command: ip -j link show br2 INFO asyncssh:logging.py:92 [conn=108, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br2 INFO asyncssh:logging.py:92 [conn=108, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=34] Command: ip -j link show master br2 INFO asyncssh:logging.py:92 [conn=108, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":59,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.1.1.2/24', 'count': 1, 'ip': '10.1.1.2', 'gw': '10.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bidirectional_stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bidirectional_stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4c40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bidirectional_stream_1 SIP-DIP N/A Tx 7686250 Rx 7686250 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bidirectional_stream_2 SIP-DIP N/A Tx 7686250 Rx 7686250 Loss 0.000 INFO asyncssh:logging.py:92 [conn=108, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=108] Closing connection INFO asyncssh:logging.py:92 [conn=108] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=108] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.5, port 36086 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.5, port 35140 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 20:28:32 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=110, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=110, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=110, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 35000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 33000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 180 interval = 15 INFO asyncssh:logging.py:92 [conn=110, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 [fail] auto bond2 iface bond2 [fail] auto br1 iface br1 [fail] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 [fail] auto bond2 iface bond2 [fail] auto br1 iface br1 [fail] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 [fail] auto bond2 iface bond2 [fail] auto br1 iface br1 [fail] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 [fail] auto br1 iface br1 [fail] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=12] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=12] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 [fail] auto br1 iface br1 inet static [pass] bridge-ports swp33 bond1 [pass] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=14] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=14] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 [fail] auto br1 iface br1 inet static [pass] bridge-ports swp33 bond1 [pass] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=16] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received exit status 1 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=16] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 inet static [pass] bond-slaves swp6 swp8 swp10 [pass] bond-mode 802.3ad [pass] auto br1 iface br1 inet static [pass] bridge-ports swp33 bond1 [pass] auto br2 iface br2 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=110, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=18] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto bond1 iface bond1 inet static [pass] bond-slaves swp5 swp7 swp9 [pass] bond-mode 802.3ad [pass] auto bond2 iface bond2 inet static [pass] bond-slaves swp6 swp8 swp10 [pass] bond-mode 802.3ad [pass] auto br1 iface br1 inet static [pass] bridge-ports swp33 bond1 [pass] auto br2 iface br2 inet static [pass] bridge-ports swp34 bond2 [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 108s INFO asyncssh:logging.py:92 [conn=110, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond1 INFO asyncssh:logging.py:92 [conn=110, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=20] Command: ip -j link show bond1 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":58,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master bond1 INFO asyncssh:logging.py:92 [conn=110, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=22] Command: ip -j link show master bond1 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3b"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3d"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond2 INFO asyncssh:logging.py:92 [conn=110, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=24] Command: ip -j link show bond2 INFO asyncssh:logging.py:92 [conn=110, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master bond2 INFO asyncssh:logging.py:92 [conn=110, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=26] Command: ip -j link show master bond2 INFO asyncssh:logging.py:92 [conn=110, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3c"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3e"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br1 INFO asyncssh:logging.py:92 [conn=110, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=28] Command: ip -j link show br1 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br1 INFO asyncssh:logging.py:92 [conn=110, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=30] Command: ip -j link show master br1 INFO asyncssh:logging.py:92 [conn=110, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":58,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br2 INFO asyncssh:logging.py:92 [conn=110, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=32] Command: ip -j link show br2 INFO asyncssh:logging.py:92 [conn=110, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br2 INFO asyncssh:logging.py:92 [conn=110, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=34] Command: ip -j link show master br2 INFO asyncssh:logging.py:92 [conn=110, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":60,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859225ed10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bidirectional_stream_1 SIP-DIP N/A Tx 7692296 Rx 7692296 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI bidirectional_stream_2 SIP-DIP N/A Tx 7692296 Rx 7692296 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=110, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=35] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=110, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=36] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=110, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=37] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=110, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=38] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=110, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=38] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['bond1', 'br1', 'bond2', 'br2'] info: br1: running ops ... info: br1: netlink: ip link set dev br1 down info: netlink: ip link show info: executing /sbin/brctl show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/bond1/disable_ipv6 info: br1: netlink: ip link del br1 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: br2: running ops ... info: br2: netlink: ip link set dev br2 down info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/bond2/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br2: netlink: ip link del br2 info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: bond1: running ops ... info: bond1: netlink: ip link set dev bond1 down info: executing /etc/network/if-down.d/resolvconf info: bond1: netlink: ip link del bond1 info: executing /etc/network/if-post-down.d/hostapd info: swp9: running ops ... info: swp9: netlink: ip link set dev swp9 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp7: running ops ... info: swp7: netlink: ip link set dev swp7 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp5: running ops ... info: swp5: netlink: ip link set dev swp5 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: bond2: running ops ... info: bond2: netlink: ip link set dev bond2 down info: executing /etc/network/if-down.d/resolvconf info: bond2: netlink: ip link del bond2 info: executing /etc/network/if-post-down.d/hostapd info: swp10: running ops ... info: swp10: netlink: ip link set dev swp10 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp8: running ops ... info: swp8: netlink: ip link set dev swp8 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp6: running ops ... info: swp6: netlink: ip link set dev swp6 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:19:25 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=110, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=110, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=42] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=110, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"52:d6:c5:ed:6e:7e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"be:3a:c2:b2:54:e2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=110, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=110, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=44] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=110, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=46] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:19:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=110, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=110, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=110, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=48] Channel closed DEBUG infra1:Logger.py:156 []
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[single_block-acl_random] 570.94
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6376' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[single_block-acl_random]">Starting testcase:test_ifupdown2_acl_random[single_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.5, port 59830 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:19:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:19:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:19:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop down tc qdisc del dev swp33 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=111, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=111, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=111, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress info: executing tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass info: executing tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=111, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920bad70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3849091 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3849089 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3849089 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3849089 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=111, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=111, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=111] Closing connection INFO asyncssh:logging.py:92 [conn=111] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=111] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.5, port 60108 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.5, port 50910 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 20:37:59 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=113, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=113, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=113, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 32500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=113, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=113, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=113, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=113, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920857e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3856497 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=113, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop /i post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=12] Command: echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop /i post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=113, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=113, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass info: executing tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=113, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=16] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=16] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 18287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action pass [] post-up tc filter add dev swp33 ingress pref 28287 protocol 0x0800 flower skip_sw src_mac 02:21:8a:a3:e7:b1 dst_mac 02:25:07:6c:88:64 src_ip 119.52.65.27 dst_ip 71.141.232.96 ip_proto udp src_port 46512 dst_port 20350 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920bbc40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3831327 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3831327 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3831327 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3831327 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[single_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=113, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=113, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=113, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=113, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=20] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=113, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=20] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:28:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=113, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:28:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=113, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=113, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=113, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=113, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=113, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=113, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=113, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=113, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=113, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=113, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=113, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=113, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=113, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=113, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=113, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=113, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=113, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=113, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=113, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=113, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=113, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=113, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=113, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=113, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=113, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=56] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:28:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=113, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=113, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=58] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=113, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=58] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=113, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=59] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=113, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=113, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=60] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[single_block-acl_and_trap_policer] 605.97
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6492' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[single_block-acl_and_trap_policer]">Starting testcase:test_ifupdown2_acl_random[single_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.5, port 42968 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:28:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:28:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:28:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress down tc qdisc del dev swp33 ingress post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop down tc qdisc del dev swp33 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress info: executing tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass info: executing tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b8dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5739160 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 53923 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 53924 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 53923 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=114, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=114] Closing connection INFO asyncssh:logging.py:92 [conn=114] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=114] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.5, port 53266 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.5, port 57884 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 20:48:10 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=116, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=116, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=116, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 36000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 28000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=116, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=116, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=116, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=116, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85941877f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4861234 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2 Rx 7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=116, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop /i post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=12] Command: echo onl | sudo -S sed -i '/^post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop /i post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=116, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=116, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass info: executing tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=116, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=16] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=16] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress [] post-up tc filter add dev swp33 ingress pref 3320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action police rate 1068750bps burst 1069750 conform-exceed drop action pass [] post-up tc filter add dev swp33 ingress pref 13320 protocol ipv4 flower skip_sw src_mac 02:3e:a0:92:0a:dd dst_mac 02:f9:76:fc:59:65 src_ip 100.192.68.220 dst_ip 39.225.56.71 ip_proto tcp src_port 47304 dst_port 14483 action drop [] down tc qdisc del dev swp33 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b6380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5446384 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 51312 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 51312 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 51312 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[single_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=116, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=116, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=116, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=116, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=20] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=116, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=20] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:39:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=116, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:39:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=116, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=116, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=116, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=116, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=116, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=116, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=116, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=116, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=116, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=116, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=116, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=116, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=116, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=116, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=116, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=116, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=116, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=116, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=116, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=116, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=116, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=116, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=116, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=116, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=56] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:39:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=116, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=116, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=58] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=116, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=58] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=116, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=59] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=116, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=116, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=60] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[shared_block-acl_random] 662.54
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6608' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[shared_block-acl_random]">Starting testcase:test_ifupdown2_acl_random[shared_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.5, port 48760 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:39:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:39:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:39:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 259 ingress down tc qdisc del dev swp33 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 259 ingress down tc qdisc del dev swp34 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 259 ingress down tc qdisc del dev swp35 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 259 ingress down tc qdisc del dev swp33 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 259 ingress down tc qdisc del dev swp34 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 259 ingress down tc qdisc del dev swp35 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass down tc qdisc del dev swp33 ingress_block 259 ingress auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass down tc qdisc del dev swp34 ingress_block 259 ingress auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 259 ingress post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass down tc qdisc del dev swp35 ingress_block 259 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress_block 259 ingress info: executing tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop info: executing tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp34 ingress_block 259 ingress info: executing tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop info: executing tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp35 ingress_block 259 ingress info: executing tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop info: executing tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592021cf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4363463 Rx 58331 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4363463 Rx 55514 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4363463 Rx 56438 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 85141 INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG infra1:Logger.py:156 4044 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=29] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=30] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=31] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=32] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=32] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=117, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=117] Closing connection INFO asyncssh:logging.py:92 [conn=117] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=117] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.5, port 39002 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.5, port 48100 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 20:58:46 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 49s INFO asyncssh:logging.py:92 [conn=119, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=119, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=119, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 35000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 33500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=119, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=119, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=119, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=119, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592020ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4182868 Rx 4183051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4182868 Rx 4183051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4182868 Rx 4183050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 4183052 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=119, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass /i post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Command: echo onl | sudo -S sed -i '/^post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass /i post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=119, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=119, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress_block 259 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress_block 259 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop info: executing tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp34 ingress_block 259 ingress warning: swp34: post-up cmd 'tc qdisc add dev swp34 ingress_block 259 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop info: executing tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp35 ingress_block 259 ingress warning: swp35: post-up cmd 'tc qdisc add dev swp35 ingress_block 259 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop info: executing tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=119, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=16] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=119, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=16] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp33 ingress_block 259 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp34 ingress_block 259 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 259 ingress [] post-up tc filter add block 259 ingress pref 19908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action trap action police rate 3676835bps burst 3677835 conform-exceed drop [] post-up tc filter add block 259 ingress pref 29908 protocol ipv4 flower skip_sw src_mac 02:3e:20:6c:b8:d6 dst_mac 02:b8:9e:7d:64:39 src_ip 97.182.16.54 dst_ip 88.33.172.111 action pass [] down tc qdisc del dev swp35 ingress_block 259 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592021a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4491046 Rx 58825 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4491046 Rx 56160 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4491046 Rx 57317 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 86159 INFO asyncssh:logging.py:92 [conn=119, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=17] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=119, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=18] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=119, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=18] Channel closed DEBUG infra1:Logger.py:156 4051 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[shared_block-acl_random] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=119, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=19] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=119, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=119, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=119, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=119, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=22] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33', 'swp34', 'swp35'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress_block 259 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing tc qdisc del dev swp34 ingress_block 259 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing tc qdisc del dev swp35 ingress_block 259 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:50:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=119, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:50:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=119, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=119, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=119, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=119, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=119, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=119, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=119, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=119, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=119, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=119, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=119, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=119, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=119, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=119, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=119, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=119, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=119, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=119, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=119, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=119, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=119, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=119, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=119, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=119, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=119, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=58] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:50:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=119, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=119, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=119, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=60] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=119, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=61] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=119, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=62] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=119, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=62] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ifupdown2/test_ifupdown2.py::test_ifupdown2_acl_random[shared_block-acl_and_trap_policer] 660.01
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6728' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_acl_random[shared_block-acl_and_trap_policer]">Starting testcase:test_ifupdown2_acl_random[shared_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.5, port 46472 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:50:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:50:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 01:50:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 145 ingress down tc qdisc del dev swp33 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 145 ingress down tc qdisc del dev swp34 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 145 ingress down tc qdisc del dev swp35 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 145 ingress down tc qdisc del dev swp33 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 145 ingress down tc qdisc del dev swp34 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 145 ingress down tc qdisc del dev swp35 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop auto swp36 iface swp36 inet static ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 auto swp33 iface swp33 inet static post-up tc qdisc add dev swp33 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop down tc qdisc del dev swp33 ingress_block 145 ingress auto swp34 iface swp34 inet static post-up tc qdisc add dev swp34 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop down tc qdisc del dev swp34 ingress_block 145 ingress auto swp35 iface swp35 inet static post-up tc qdisc add dev swp35 ingress_block 145 ingress post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop down tc qdisc del dev swp35 ingress_block 145 ingress auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=120, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=24] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=120, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=24] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress_block 145 ingress info: executing tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass info: executing tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp34 ingress_block 145 ingress info: executing tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass info: executing tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp35 ingress_block 145 ingress info: executing tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass info: executing tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=120, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=25] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=26] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=26] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_11.1.1.2/24', 'count': 1, 'ip': '11.1.1.2', 'gw': '11.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_12.1.1.2/24', 'count': 1, 'ip': '12.1.1.2', 'gw': '12.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_13.1.1.2/24', 'count': 1, 'ip': '13.1.1.2', 'gw': '13.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_14.1.1.2/24', 'count': 1, 'ip': '14.1.1.2', 'gw': '14.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_11.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_12.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_13.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_14.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592020520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4470643 Rx 15195 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4470643 Rx 15269 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4470643 Rx 15266 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 22532 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=120, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=28] Command: echo onl | sudo -S sed -i -e 's/.*post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass //g' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=30] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=120, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=30] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO asyncssh:logging.py:92 [conn=120, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=120] Closing connection INFO asyncssh:logging.py:92 [conn=120] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=120] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.5, port 40978 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.5, port 36342 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 21:09:45 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=122, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=122, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=122, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 35500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 33000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 120 interval = 15 INFO asyncssh:logging.py:92 [conn=122, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=122, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=122, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=122, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217c3a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4561487 Rx 16667 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4561488 Rx 10169 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4561487 Rx 8766 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 17797 INFO asyncssh:logging.py:92 [conn=122, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=11] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=122, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=12] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=122, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=12] Channel closed DEBUG infra1:Logger.py:156 958 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=122, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=13] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S sed -i '/^post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop /i post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=14] Command: echo onl | sudo -S sed -i '/^post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop /i post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass ' /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=15] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=122, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=16] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=122, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=16] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0', 'swp33', 'swp34', 'swp35', 'swp36'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: br0: applying bridge port configuration: ['swp33'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp33: ignoring config (stp on bridge br0 is not on yet) info: vrf: syncing table map to /etc/iproute2/rt_tables.d/ifupdown2_vrf_map.conf info: vrf: dumping iproute2_vrf_map info: {} info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp33 ingress_block 145 ingress warning: swp33: post-up cmd 'tc qdisc add dev swp33 ingress_block 145 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass info: executing tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop info: swp36: running ops ... info: br0: applying bridge port configuration: ['swp36'] info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp36: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: br0: applying bridge port configuration: ['swp34'] info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp34: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp34 ingress_block 145 ingress warning: swp34: post-up cmd 'tc qdisc add dev swp34 ingress_block 145 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass info: executing tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop info: swp35: running ops ... info: br0: applying bridge port configuration: ['swp35'] info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: reading '/sys/class/net/br0/bridge/stp_state' info: swp35: ignoring config (stp on bridge br0 is not on yet) info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: executing tc qdisc add dev swp35 ingress_block 145 ingress warning: swp35: post-up cmd 'tc qdisc add dev swp35 ingress_block 145 ingress' failed: returned 2 (Error: Exclusivity flag on, cannot modify. ) info: executing tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass info: executing tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop info: br0: running ops ... info: br0: bridge already exists info: br0: apply bridge settings info: br0: reset bridge-hashel to default: 4 info: br0: reset bridge-hashmax to default: 512 info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: netlink: ip link set br0 type bridge with attributes info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: swp33: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp36: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp34: bridge-pathcosts: no configuration detected, resetting to default 100 info: br0: swp35: bridge-pathcosts: no configuration detected, resetting to default 100 info: swp33: netlink: ip link set dev swp33: bridge slave attributes info: swp36: netlink: ip link set dev swp36: bridge slave attributes info: swp34: netlink: ip link set dev swp34: bridge slave attributes info: swp35: netlink: ip link set dev swp35: bridge slave attributes info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=122, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=18] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] auto swp33 iface swp33 inet static [pass] post-up tc qdisc add dev swp33 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp33 ingress_block 145 ingress [] auto swp34 iface swp34 inet static [pass] post-up tc qdisc add dev swp34 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp34 ingress_block 145 ingress [] auto swp35 iface swp35 inet static [pass] post-up tc qdisc add dev swp35 ingress_block 145 ingress [] post-up tc filter add block 145 ingress pref 23140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action police rate 593385bps burst 594385 conform-exceed drop action pass [] post-up tc filter add block 145 ingress pref 33140 protocol 0x8100 flower skip_sw src_mac 02:9e:eb:f1:9e:96 dst_mac 02:f3:e6:5a:e2:14 vlan_id 1219 vlan_ethtype ipv4 src_ip 105.83.11.26 dst_ip 35.9.91.188 ip_proto udp src_port 36382 dst_port 47732 action trap action police rate 468237bps burst 469237 conform-exceed drop [] down tc qdisc del dev swp35 ingress_block 145 ingress [] auto swp36 iface swp36 inet static INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217f700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4705689 Rx 15975 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4705689 Rx 16105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 4705689 Rx 15947 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 23682 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_acl_random[shared_block-acl_and_trap_policer] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown2.py INFO asyncssh:logging.py:92 [conn=122, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=19] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=122, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=20] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=122, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=122, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=22] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=122, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=22] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['swp36', 'br0', 'swp33', 'swp34', 'swp35'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing tc qdisc del dev swp33 ingress_block 145 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing tc qdisc del dev swp34 ingress_block 145 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing tc qdisc del dev swp35 ingress_block 145 ingress info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:01:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=122, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:01:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=122, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=122, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=122, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=122, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=122, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=122, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=122, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=122, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=122, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=122, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=122, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=122, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=122, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=122, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=122, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=122, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=122, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=122, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=122, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=122, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=122, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=122, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=122, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=122, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=122, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=58] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:01:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=122, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=122, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=122, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=60] Channel closed DEBUG infra1:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=122, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=61] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=122, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=62] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=122, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=62] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ifupdown2/test_ifupdown_stp.py::test_ifupdown2_stp[stp] 624.61
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6846' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_stp[stp]">Starting testcase:test_ifupdown2_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.5, port 59310 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:01:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:01:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=123, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=10] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=123, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=123, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=123, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=13] Channel closed DEBUG infra1:Logger.py:156 if [ ! -z "$(pidof mstpd)" ]; then killall mstpd; fi INFO asyncssh:logging.py:92 [conn=123, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=14] Command: if [ ! -z "$(pidof mstpd)" ]; then killall mstpd; fi INFO asyncssh:logging.py:92 [conn=123, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:d9:b3:10:71:7a ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=16] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:d9:b3:10:71:7a ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=17] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=18] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=18] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:d9:b3:10:71:7a INFO asyncssh:logging.py:92 [conn=123, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=123, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=20] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=123, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=20] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: stp state reset, reapplying port settings info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: br0: netlink: ip link set dev br0 down info: executing /bin/ip link set dev br0 down info: executing /bin/ip link set dev br0 address 22:d9:b3:10:71:7a info: executing /bin/ip link set dev br0 up info: br0: netlink: ip link set dev br0 up info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=123, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=22] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=22] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:d9:b3:10:71:7a [pass] INFO asyncssh:logging.py:92 [conn=123, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=24] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:d9:b3:10:71:7a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:d9:b3:10:71:7a","root_id":"8000.22:d9:b3:10:71:7a","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.63,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=123, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=26] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:d9:b3:10:71:7a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=28] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=30] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:d9:b3:10:71:7a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:d9:b3:10:71:7a","root_id":"8000.22:d9:b3:10:71:7a","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.49,"tcn_timer":0.00,"topology_change_timer":3.25,"gc_timer":235.24,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=123, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=32] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=123, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.0:2:14:7f:12:3d","root_id":"8000.0:0:da:3e:60:69","hold_timer":0.00,"message_age_timer":18.52,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3fa90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 stp SIP-DIP Tx 60 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 stp SIP-DIP Tx 60 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 4393369 Rx 4393368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 4393369 Rx 834 Loss 99.981 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 4393368 Rx 4393367 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=123] Closing connection INFO asyncssh:logging.py:92 [conn=123] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=123] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.5, port 55568 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.5, port 42378 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 21:22:07 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 35000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 27000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 33500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 25000 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:d9:b3:10:71:7a [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3fd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2928447 Rx 1334144 Loss 54.442 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2928447 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2928447 Rx 1334317 Loss 54.436
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['br0'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate
Passed functional/ifupdown2/test_ifupdown_stp.py::test_ifupdown2_stp[rstp] 626.21
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-6908' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ifupdown2_stp[rstp]">Starting testcase:test_ifupdown2_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.5, port 53526 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:11:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: cat /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG infra1:Logger.py:156 # # ifupdown2 configuration file # # This file contains default settings for ifupdown # # enable templates template_enable=1 # default template engine (only mako is currently supported) template_engine=mako # default template lookup path during template rendering template_lookuppath=/etc/network/ifupdown2/templates # default network configuration filepath default_interfaces_configfile=/etc/network/interfaces # The -i interfacefile option is allowed by default but # can be disabled by setting the below option to 1 to # reduce security issues (due to the pre- and post- commands) disable_cli_interfacesfile=0 # enable addon module syntax check: # Python addon modules register dictionary of supported attributes. # The syntax checker in ifupdown2 uses this dictionary for syntax # checks in the interfaces file. This works well, when only python modules # are used. But when a mix of scripts and modules are used (which is the # default case), you may get false warnings for attributes supported # by scripts addon_syntax_check=0 # Support executing of ifupdown style scripts. # Note that by default python addon modules override scripts with the same # name addon_scripts_support=1 # enable python addons addon_python_modules_support=1 # By default ifupdown2 only supports a single vlan filtering bridge # on the system. Set this flag to 1 to support multiple vlan # filtering bridges multiple_vlan_aware_bridge_support=0 # ifquery check status strings. # By default `ifquery --check` prints the check and # cross marks against interface attributes. # Use the below strings to modify the default behaviour. # ifquery_check_success_str=pass ifquery_check_error_str=fail ifquery_check_unknown_str= # # This attribute controls iface/vlan range expansions # in ifquery default output. ifquery_ifacename_expand_range=0 # Let link master (bridges, bonds) own the link state of slaves link_master_slave=1 # Delay admin state change till the end delay_admin_state_change=0 # ifreload by default downs: 'all interfaces for which config changed' + # 'interfaces that were deleted'. With the below variable set to '0' # ifreload will only down 'interfaces that were deleted' ifreload_down_changed=0 # squash all addr config when you process the first interface addr_config_squash=0 # squash iface config into one when you have multiple # ifaces stanzas for an interface ifaceobj_squash=0 # By default ifupdown2 will adjust logical devices MTU # based on the physical interface they are running on top of. # set this flag to 0 to disable this behaviour adjust_logical_dev_mtu=1 # directory where the state file is stored # if this directory doesn't exists ifupdown2 will create it # if directory creation fails or state_dir variable is empty # state_dir will default to /run/network/ state_dir=/run/network/ INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: echo onl | sudo -S cp /etc/network/ifupdown2/ifupdown2.conf /etc/network/ifupdown2/ifupdown2.bak INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: echo onl | sudo -S cp /etc/network/interfaces /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG infra1:Logger.py:156
------------------------------Captured stdout call------------------------------
Connection made to 10.36.118.46 Authentication complete SSH connection closed SSH connection closed SSH connection closed Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:11:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=9] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=126, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=10] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=126, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=126, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=1~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces.d/cfg-file-1~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=126, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpd INFO asyncssh:logging.py:92 [conn=126, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=14] Command: mstpd INFO asyncssh:logging.py:92 [conn=126, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=15] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=126, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=16] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=126, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=17] Channel closed DEBUG infra1:Logger.py:156 echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:16:78:f7:d5:68 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=18] Command: echo -e ' auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:16:78:f7:d5:68 ' >> /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=19] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=20] Command: ifquery -a -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=20] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp auto br0 iface br0 inet static bridge-ports swp33 swp34 swp35 swp36 bridge-stp yes hwaddress 22:16:78:f7:d5:68 INFO asyncssh:logging.py:92 [conn=126, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=21] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=126, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=22] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=126, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=22] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces.d/cfg-file-1 info: no interfaces to down .. info: reload: scheduling up on interfaces: ['lo', 'ma1', 'br0'] info: ma1: running ops ... info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp33: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp33/input' info: executing /sbin/sysctl net.mpls.conf.swp33.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp36: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp36/input' info: executing /sbin/sysctl net.mpls.conf.swp36.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp34: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp34/input' info: executing /sbin/sysctl net.mpls.conf.swp34.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: swp35: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: reading '/proc/sys/net/mpls/conf/swp35/input' info: executing /sbin/sysctl net.mpls.conf.swp35.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: br0: running ops ... info: br0: netlink: ip link add br0 type bridge info: br0: apply bridge settings info: br0: set bridge-mcsnoop yes info: reading '/sys/class/net/br0/bridge/stp_state' info: br0: stp state reset, reapplying port settings info: br0: netlink: ip link set br0 type bridge with attributes info: writing '1' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '1' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: executing /bin/ip -force -batch - [link set dev swp33 master br0 addr flush dev swp33 link set dev swp34 master br0 addr flush dev swp34 link set dev swp35 master br0 addr flush dev swp35 link set dev swp36 master br0 addr flush dev swp36 ] info: br0: applying bridge port configuration: ['swp35', 'swp33', 'swp36', 'swp34'] info: br0: applying bridge configuration specific to ports info: br0: processing bridge config for port swp33 info: br0: processing bridge config for port swp36 info: br0: processing bridge config for port swp34 info: br0: processing bridge config for port swp35 info: swp35: netlink: ip link set dev swp35 up info: swp33: netlink: ip link set dev swp33 up info: swp36: netlink: ip link set dev swp36 up info: swp34: netlink: ip link set dev swp34 up info: executing /sbin/mstpctl showportdetail br0 json info: cmd '/sbin/mstpctl showportdetail br0 json' failed: returned 255 (Can't find index for port json. Not a valid interface. ) info: executing /sbin/mstpctl showportdetail br0 json info: cmd '/sbin/mstpctl showportdetail br0 json' failed: returned 255 (Can't find index for port json. Not a valid interface. ) info: executing /sbin/mstpctl settreeprio br0 0 10 info: executing /sbin/mstpctl showportdetail br0 json info: cmd '/sbin/mstpctl showportdetail br0 json' failed: returned 255 (Can't find index for port json. Not a valid interface. ) info: executing /sbin/mstpctl setageing br0 300 info: executing /sbin/mstpctl setfdelay br0 15 info: executing /sbin/mstpctl setmaxage br0 20 info: executing /sbin/mstpctl setmaxhops br0 20 info: executing /sbin/mstpctl settxholdcount br0 6 info: executing /sbin/mstpctl setforcevers br0 rstp info: executing /sbin/mstpctl sethello br0 2 info: executing /sbin/mstpctl setportpathcost br0 swp33 0 info: executing /sbin/mstpctl setportpathcost br0 swp36 0 info: executing /sbin/mstpctl setportpathcost br0 swp34 0 info: executing /sbin/mstpctl setportpathcost br0 swp35 0 info: executing /sbin/mstpctl setportautoedge br0 swp33 yes info: executing /sbin/mstpctl setportautoedge br0 swp36 yes info: executing /sbin/mstpctl setportautoedge br0 swp34 yes info: executing /sbin/mstpctl setportautoedge br0 swp35 yes info: executing /sbin/mstpctl settreeportprio br0 swp33 0 10 info: executing /sbin/mstpctl settreeportprio br0 swp36 0 10 info: executing /sbin/mstpctl settreeportprio br0 swp34 0 10 info: executing /sbin/mstpctl settreeportprio br0 swp35 0 10 info: executing /sbin/mstpctl setportp2p br0 swp33 auto info: executing /sbin/mstpctl setportp2p br0 swp36 auto info: executing /sbin/mstpctl setportp2p br0 swp34 auto info: executing /sbin/mstpctl setportp2p br0 swp35 auto info: br0: applying mstp configuration specific to ports info: br0: processing mstp config for port swp35 info: br0: processing mstp config for port swp33 info: br0: processing mstp config for port swp36 info: br0: processing mstp config for port swp34 info: executing /etc/network/if-pre-up.d/hostapd info: br0: netlink: ip link set dev br0 up info: reading '/proc/sys/net/mpls/conf/br0/input' info: executing /sbin/sysctl net.mpls.conf.br0.input=0 info: reading '/proc/sys/net/ipv4/conf/br0/forwarding' info: reading '/proc/sys/net/ipv6/conf/br0/forwarding' info: br0: netlink: ip link set dev br0 down info: executing /bin/ip link set dev br0 down info: executing /bin/ip link set dev br0 address 22:16:78:f7:d5:68 info: executing /bin/ip link set dev br0 up info: br0: netlink: ip link set dev br0 up info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate INFO asyncssh:logging.py:92 [conn=126, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=23] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=24] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=24] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:16:78:f7:d5:68 [pass] INFO asyncssh:logging.py:92 [conn=126, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=26] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:16:78:f7:d5:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":2,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:16:78:f7:d5:68","root_id":"8000.22:16:78:f7:d5:68","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.24,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=126, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show br0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=28] Command: ip -j link show br0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:16:78:f7:d5:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=30] Command: ip -j link show master br0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=32] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:16:78:f7:d5:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":2,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:16:78:f7:d5:68","root_id":"8000.22:16:78:f7:d5:68","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":235.10,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=126, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=126, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=34] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:16:78:f7:d5:68","root_id":"8000.22:16:78:f7:d5:68","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217dde0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 rstp SIP-DIP Tx 60 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 rstp SIP-DIP Tx 60 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 4393336 Rx 4393335 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 4393336 Rx 1167 Loss 99.973 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 4393336 Rx 4393334 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=126, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=126] Closing connection INFO asyncssh:logging.py:92 [conn=126] Sending disconnect: Disconnected by application (11) INFO asyncssh:logging.py:92 [conn=126] Connection closed INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.5, port 60062 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG infra1:Logger.py:156 echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: echo onl | sudo -S reboot INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127] Connection lost INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 300 interval = 15 INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 ERROR DENT:Logger.py:120 [10.36.118.46] Error establishing connection Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [10.36.118.46] Error running command: date Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) ERROR DENT:Logger.py:120 [DENT infrastructure 1] Exception --> Device.is_connected Traceback (most recent call last): File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/Device.py", line 289, in is_connected exit_status, _ = await self.conn_mgr.get_ssh_connection().run_cmd('date') File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 78, in run_cmd await self._connect() File "/usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/ConnectionHandlers/SSHHandler.py", line 203, in _connect self.conn, _ = await asyncssh.create_connection( File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8481, in create_connection conn = await connect(host, port, client_factory=client_factory, File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 8093, in connect return await asyncio.wait_for( File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for return await fut File "/usr/local/lib/python3.10/dist-packages/asyncssh/connection.py", line 430, in _connect _, session = await loop.create_connection( File "/usr/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection raise exceptions[0] File "/usr/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection sock = await self._connect_sock( File "/usr/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock await self.sock_connect(sock, address) File "/usr/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect return await fut File "/usr/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb raise OSError(err, f'Connect call failed {address}') OSError: [Errno 113] Connect call failed ('10.36.118.46', 22) INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s DUT is not up INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.5, port 34378 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG infra1:Logger.py:156 Thu Jan 30 21:32:33 UTC 2087 INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 51s INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: echo onl | sudo -S /lib/platform-config/current/onl/bin/onlpdump INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG infra1:Logger.py:156 System Information: = { Product Name: AS4224-52P-O-AC-F-EC Part Number: F0LEC4224004Z Serial Number: 422452P2103001 MAC: 90:3c:b3:8b:ef:32 MAC Range: 69 Manufacturer: Accton Manufacture Date: 02/03/2021 17:31:43 Vendor: Edgecore Platform Name: arm64-accton_as4224_52p-r0 Label Revision: R0CA Country Code: TW ONIE Version: 2020.02.00.09 } thermal @ 1 = { Description: Thermal 1 - U51_MGMT (0x48) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 24500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 2 = { Description: Thermal 2 - U25_MAC0 (0x49) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 34500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 3 = { Description: Thermal 3 - U33_CPLD (0x4B) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 26500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 4 = { Description: Thermal 4 - U5_A7K (0x4C) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 32500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } thermal @ 5 = { Description: CPU Core (A7K) Status: 0x00000001 [ PRESENT ] Caps: 0x0000000f [ GET_TEMPERATURE,GET_WARNING_THRESHOLD,GET_ERROR_THRESHOLD,GET_SHUTDOWN_THRESHOLD ] Temperature: 24500 thresholds = { Warning: 45000 Error: 55000 Shutdown: 60000 } } led @ 1 = { Description: Chassis LED 1 (PSU LED) Status: 0x00000005 [ PRESENT,ON ] Caps: 0x00400001 [ ON_OFF,AUTO ] Mode: AUTO Char: } psu @ 1 = { Description: PSU-1 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } psu @ 2 = { Description: PSU-2 Model: NULL SN: NULL Status: 0x00000001 [ PRESENT ] Caps: 0x00000000 Vin: 0 Vout: 0 Iin: 0 Iout: 0 Pin: 0 Pout: 0 } fan @ 1 = { Description: Chassis Fan - 1 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 2 = { Description: Chassis Fan - 2 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8587 Per: 41 Model: NULL SN: NULL } fan @ 3 = { Description: Chassis Fan - 3 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 4 = { Description: Chassis Fan - 4 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8746 Per: 42 Model: NULL SN: NULL } fan @ 5 = { Description: Chassis Fan - 5 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } fan @ 6 = { Description: Chassis Fan - 6 Status: 0x00000009 [ PRESENT,F2B ] Caps: 0x00000038 [ SET_PERCENTAGE,GET_RPM,GET_PERCENTAGE ] RPM: 8667 Per: 42 Model: NULL SN: NULL } SFPs: Presence Bitmap: 49 50 51 52 RX_LOS Bitmap: 49 50 51 52 Port 49: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 43 4c 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 38 20 20 68 f0 03 ec 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 50: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 46 30 44 44 54 20 20 20 20 20 0050: 20 20 20 20 31 31 30 34 30 37 20 20 68 f0 03 e0 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 51: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 36 4d 44 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 d3 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Port 52: Present, Status = 0x00000014 [ RX_LOS,TX_DISABLE ] eeprom: 0000: 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 0010: 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 0020: 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 0030: 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 0040: 00 1a 00 00 41 4b 4b 30 52 35 4e 20 20 20 20 20 0050: 20 20 20 20 31 31 30 35 30 39 20 20 68 f0 03 e1 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 60 interval = 15 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 1 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 [fail] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 15s Ifquery failed INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG infra1:Logger.py:156 ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: ifquery -a -c -i /etc/network/interfaces.d/cfg-file-1 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG infra1:Logger.py:156 auto lo iface lo inet loopback auto ma1 iface ma1 inet dhcp [pass] auto br0 iface br0 inet static [pass] bridge-ports swp33 swp34 swp35 swp36 [pass] bridge-stp yes [pass] hwaddress 22:16:78:f7:d5:68 [pass] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 46s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210d870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 rstp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 rstp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2928402 Rx 2928401 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2928402 Rx 546 Loss 99.981 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI L2 traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2928401 Rx 2928400 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ifupdown2_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ifupdown2/test_ifupdown_stp.py INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed DEBUG infra1:Logger.py:156 sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: sed -i -E "s~^template_lookuppath=.*~template_lookuppath=/etc/network/ifupdown2/templates~; s~^addon_syntax_check=.*~addon_syntax_check=0~; s~^default_interfaces_configfile=.*~default_interfaces_configfile=/etc/network/interfaces~" /etc/network/ifupdown2/ifupdown2.conf INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed DEBUG infra1:Logger.py:156 ifreload -a -v INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: ifreload -a -v INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed DEBUG infra1:Logger.py:156 info: loading builtin modules from ['/usr/share/ifupdown2/addons'] info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: executing /sbin/sysctl net.bridge.bridge-allow-multiple-vlans info: executing /bin/pidof mstpd info: executing /bin/ip rule show info: executing /bin/ip -6 rule show info: address: using default mtu 1500 info: module ppp not loaded (module init failed: no /usr/bin/pon found) info: module batman_adv not loaded (module init failed: no /usr/sbin/batctl found) info: looking for user scripts under /etc/network info: loading scripts under /etc/network/if-pre-up.d ... info: loading scripts under /etc/network/if-up.d ... info: loading scripts under /etc/network/if-post-up.d ... info: loading scripts under /etc/network/if-pre-down.d ... info: loading scripts under /etc/network/if-down.d ... info: loading scripts under /etc/network/if-post-down.d ... info: 'link_master_slave' is set. slave admin state changes will be delayed till the masters admin state change. info: processing interfaces file /etc/network/interfaces info: reload: scheduling down on interfaces: ['br0'] info: br0: running ops ... info: br0: netlink: ip link set dev br0 down info: netlink: ip link show info: netlink: ip addr show info: executing /bin/ip addr help info: address metric support: OK info: executing /etc/network/if-down.d/resolvconf info: writing '0' to file /proc/sys/net/ipv6/conf/swp35/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp33/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp36/disable_ipv6 info: writing '0' to file /proc/sys/net/ipv6/conf/swp34/disable_ipv6 info: br0: netlink: ip link del br0 info: executing /etc/network/if-post-down.d/hostapd info: swp33: running ops ... info: swp33: netlink: ip link set dev swp33 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp36: running ops ... info: swp36: netlink: ip link set dev swp36 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp34: running ops ... info: swp34: netlink: ip link set dev swp34 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: swp35: running ops ... info: swp35: netlink: ip link set dev swp35 down info: executing /etc/network/if-down.d/resolvconf info: executing /etc/network/if-post-down.d/hostapd info: reload: scheduling up on interfaces: ['lo', 'ma1'] info: ma1: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: ma1: netlink: ip link set dev ma1 up info: dhclient4 already running on ma1. Not restarting. info: reading '/proc/sys/net/mpls/conf/ma1/input' info: executing /sbin/sysctl net.mpls.conf.ma1.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate info: lo: running ops ... info: executing /etc/network/if-pre-up.d/hostapd info: lo: netlink: ip link set dev lo up info: reading '/proc/sys/net/mpls/conf/lo/input' info: executing /sbin/sysctl net.mpls.conf.lo.input=0 info: executing /etc/network/if-up.d/000resolvconf info: executing /etc/network/if-up.d/openssh-server info: executing /etc/network/if-up.d/ntpdate
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] 553.73
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-6974' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.5, port 49090 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:21:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":59,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":59,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":59,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 122.70"},{"index":59,"dev":"br0","port":"br0","grp":"ff02::1:ff24:49db","state":"temp","flags":[],"vid":1,"timer":" 122.70"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c4940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3123239 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 3122830 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3122831 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3122831 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":59,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":59,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":59,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 0.00"},{"index":59,"dev":"br0","port":"br0","grp":"ff02::1:ff24:49db","state":"temp","flags":[],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp33","timer":" 243.47","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859217e0e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4675489 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2336341 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2337703 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 410 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":59,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.51"}],"router":{"br0":[{"port":"swp33","timer":" 243.51","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920ba380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4735888 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 114 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2368401 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:31:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:31:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=129, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=129, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=129, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] 559.42
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-7008' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.5, port 57532 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:31:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":60,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":60,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b8340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3293041 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 3292631 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3292631 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3292633 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":60,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":60,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp33","timer":" 243.45","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3f790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4494729 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2247649 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2246293 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 364 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":60,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp33","timer":" 243.51","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920bb730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4538705 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 317 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2269354 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:40:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:40:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=130, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=130, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=130, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] 554.53
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-7042' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.5, port 41640 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:40:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":61,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":61,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b86d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3410759 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 3410263 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3410264 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3410265 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":61,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.49"},{"index":61,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.49"}],"router":{"br0":[{"port":"swp33","timer":" 243.49","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3c670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4492657 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2245385 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2246865 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 679 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":61,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.50"}],"router":{"br0":[{"port":"swp33","timer":" 243.50","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592020f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4489911 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2245409 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:49:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:49:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=131, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=131, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=131, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] 550.23
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-7076' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.5, port 52086 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:49:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":62,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.51"},{"index":62,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.51"},{"index":62,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 123.54"},{"index":62,"dev":"br0","port":"br0","grp":"ff02::1:ff26:1aa7","state":"temp","flags":[],"vid":1,"timer":" 123.54"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920211e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3110109 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 3109683 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3109683 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3109684 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":62,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.46"},{"index":62,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.46"},{"index":62,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 0.00"},{"index":62,"dev":"br0","port":"br0","grp":"ff02::1:ff26:1aa7","state":"temp","flags":[],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp33","timer":" 243.46","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920bbb20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4395684 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2196889 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2198249 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 605 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":62,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.44"}],"router":{"br0":[{"port":"swp33","timer":" 243.44","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922ee710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4458073 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 218 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2229492 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:58:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:58:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=132, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=132, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=132, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] 554.63
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-7110' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.5, port 57740 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 02:58:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":63,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":63,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"},{"index":63,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 122.47"},{"index":63,"dev":"br0","port":"br0","grp":"ff02::1:ff86:5b9d","state":"temp","flags":[],"vid":1,"timer":" 122.47"}],"router":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b90c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2924338 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2923886 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2923887 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 2923888 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":63,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.53"},{"index":63,"dev":"br0","port":"swp34","grp":"227.1.1.1","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.53"}],"router":{"br0":[{"port":"swp33","timer":" 243.53","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592023cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4088427 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2043299 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2044606 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 542 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_leave INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":63,"dev":"br0","port":"swp35","grp":"239.2.2.2","state":"temp","filter_mode":"exclude","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 248.47"}],"router":{"br0":[{"port":"swp33","timer":" 243.47","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b6380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4136455 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 226 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2068753 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:08:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:08:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=133, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=133, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=133, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=133, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs 323.36
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-7144' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.5, port 51046 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:08:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":64,"dev":"br0","port":"swp35","grp":"238.2.2.2","src":"70.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":64,"dev":"br0","port":"swp35","grp":"238.2.2.2","state":"temp","filter_mode":"include","source_list":[{"address":"70.1.1.5","timer":"248.48"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":64,"dev":"br0","port":"swp34","grp":"226.1.1.1","src":"80.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":64,"dev":"br0","port":"swp34","grp":"226.1.1.1","state":"temp","filter_mode":"include","source_list":[{"address":"80.1.1.5","timer":"248.48"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp33","timer":" 243.48","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85921c7400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4716741 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2358267 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 2359616 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 2741 INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge mdb delete dev br0 port swp34 grp 226.1.1.1 temp vid 1 INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: bridge mdb delete dev br0 port swp34 grp 226.1.1.1 temp vid 1 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"mdb":[{"index":64,"dev":"br0","port":"swp35","grp":"238.2.2.2","src":"70.1.1.5","state":"temp","filter_mode":"include","protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"},{"index":64,"dev":"br0","port":"swp35","grp":"238.2.2.2","state":"temp","filter_mode":"include","source_list":[{"address":"70.1.1.5","timer":"225.38"}],"protocol":"kernel","flags":["offload"],"vid":1,"timer":" 0.00"}],"router":{"br0":[{"port":"swp33","timer":" 220.38","type":"temp"}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85922b4bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6188867 Rx 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 2779444 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3096114 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 2742 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:13:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:13:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_addr.py::test_ipv4_addr 207.37
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7208' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.5, port 57668 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:18:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:18:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close DEBUG infra1:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.153 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=1.20 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.145 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.195 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.188 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.188 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.184 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.190 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9182ms rtt min/avg/max/mdev = 0.145/0.279/1.208/0.310 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 3.3.3.2 on infra1 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.153 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=1.20 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.145 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.195 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.188 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.188 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.184 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.190 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9182ms rtt min/avg/max/mdev = 0.145/0.279/1.208/0.310 ms INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG infra1:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.203 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.175 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.174 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.194 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.184 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.181 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.193 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9183ms rtt min/avg/max/mdev = 0.174/0.184/0.203/0.009 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 2.2.2.2 on infra1 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.203 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.175 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.174 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.177 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.194 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.184 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.181 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.193 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9183ms rtt min/avg/max/mdev = 0.174/0.184/0.203/0.009 ms DEBUG infra1:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.151 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.146 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=1.20 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.138 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.186 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.176 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.176 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.177 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.184 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.190 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9182ms rtt min/avg/max/mdev = 0.138/0.272/1.205/0.311 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 1.1.1.2 on infra1 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.151 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.146 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=1.20 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.138 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.186 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.176 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.176 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.177 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.184 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.190 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9182ms rtt min/avg/max/mdev = 0.138/0.272/1.205/0.311 ms DEBUG infra1:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.188 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.149 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=1.20 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.195 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.188 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.188 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.182 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.182 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9182ms rtt min/avg/max/mdev = 0.138/0.280/1.208/0.310 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 10 4.4.4.2 on infra1 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.188 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.149 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=1.20 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.195 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.188 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.188 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.182 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.182 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9182ms rtt min/avg/max/mdev = 0.138/0.280/1.208/0.310 ms
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:21:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:21:44 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp 202.85
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7254' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.5, port 43398 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:21:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:21:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b93f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 27606 Rx 27606 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 27606 Rx 27606 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:07 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp 1.20
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7298' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.5, port 40422 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=138, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=138, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp 208.35
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7344' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.5, port 40432 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:25:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5f910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 27544 Rx 27544 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 27544 Rx 27544 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=139, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=40] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=42] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=139, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=139, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=139, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=45] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=139, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=139, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=46] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=48] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:28:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:28:37 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=52] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=56] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=56] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic 202.49
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7412' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.5, port 55074 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:28:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:28:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592084af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 27476 Rx 27476 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 27476 Rx 27476 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:31:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:31:59 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp 213.89
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7458' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.5, port 34950 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:32:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:32:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592086a10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 21.0.0.1 Tx 13289 Rx 13289 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 20.0.0.1 Tx 13289 Rx 13289 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 26578 Rx 26578 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=141, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=141, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=141, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=141, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=36] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=141, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=141, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=38] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=141, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=141, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=44] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:35:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=46] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:35:33 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=52] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout 232.10
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7522' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.5, port 44386 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:35:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:35:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 1000 net.ipv4.neigh.swp34.base_reachable_time_ms = 1000 net.ipv4.neigh.swp35.base_reachable_time_ms = 1000 net.ipv4.neigh.swp36.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920a9120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 27628 Rx 27628 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 27628 Rx 27628 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5e4a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 27510 Rx 27510 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 27510 Rx 27510 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:39:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:39:25 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing 297.12
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7566' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.5, port 49046 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:39:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:39:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5e8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 <-> 10.36.118.199:2:2 Tx 27404 Rx 27404 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:3 <-> 10.36.118.199:2:4 Tx 27404 Rx 27404 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:44:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:44:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding 184.94
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7608' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.5, port 53074 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:44:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:44:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5ce80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 12581 Rx 0 Frames Delta 12581 Loss 100.000 INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=144, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=144, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=144, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=144, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5c040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 12772 Rx 12772 Frames Delta 0 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=144, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:47:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:47:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=144, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis 150.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7658' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.5, port 55062 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:47:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:47:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/8 to 10.36.118.199:2:2_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5fe20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-0.0.0.2 Tx 12312 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:49:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:49:58 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis 145.27
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7692' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.5, port 45042 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:49:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:49:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_128.1.1.2/16 to 10.36.118.199:2:2_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5df30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 128.1.1.2-191.255.1.2 Tx 13132 Rx 13132 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:52:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:52:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis 143.59
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7726' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.5, port 48436 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:52:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:52:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_192.1.1.2/24 to 10.36.118.199:2:2_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5e980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 192.1.1.2-223.255.255.2 Tx 12886 Rx 12886 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:47 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis 0.87
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7760' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.5, port 58010 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Invalid argument
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:48 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis 143.47
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7792' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.5, port 58018 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:54:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_240.0.0.1/32 to 10.36.118.199:2:2_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920a9750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 10.36.118.199:2:2 SIP-DIP 240.0.0.1-223.255.254.2 Tx 12770 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:57:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:57:11 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum 219.52
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7826' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.5, port 38416 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:57:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 03:57:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 44814883486 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 143 multicast_frames_received: 87382126 frames_64_octets: 613 frames_65_to_127_octets: 428 frames_128_to_255_octets: 214 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 94368510 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 682 broadcast_frames_sent: 302 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 146990 unicast_frames_sent: 6839522 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3501923758 INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 62089910 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 142 multicast_frames_received: 67 frames_64_octets: 595 frames_65_to_127_octets: 402 frames_128_to_255_octets: 203 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 41257583 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 41014519 broadcast_frames_sent: 300 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 121245 unicast_frames_sent: 122510 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 21061916958 INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5296497916 bad_octets_received: 414 mac_trans_error: 0 broadcast_frames_received: 125 multicast_frames_received: 17 frames_64_octets: 545 frames_65_to_127_octets: 341 frames_128_to_255_octets: 199 frames_256_to_511_octets: 1 frames_512_to_1023_octets: 66243707 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 55803732 broadcast_frames_sent: 302 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 10344704 unicast_frames_sent: 95912 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 28620393696 INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 49105148 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 125 multicast_frames_received: 17 frames_64_octets: 555 frames_65_to_127_octets: 340 frames_128_to_255_octets: 211 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 31145461 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 24225270 broadcast_frames_sent: 302 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 95890 unicast_frames_sent: 6824963 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 15897487962 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 44814883486 bad_octets_received: 7044608 mac_trans_error: 0 broadcast_frames_received: 143 multicast_frames_received: 87382126 frames_64_octets: 613 frames_65_to_127_octets: 428 frames_128_to_255_octets: 215 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 94382269 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 683 broadcast_frames_sent: 302 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 13759 collisions: 0 late_collision: 0 unicast_frames_received: 146990 unicast_frames_sent: 6839522 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3501924002 INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 62089910 bad_octets_received: 7044608 mac_trans_error: 0 broadcast_frames_received: 142 multicast_frames_received: 67 frames_64_octets: 595 frames_65_to_127_octets: 402 frames_128_to_255_octets: 204 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 41271342 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 41014520 broadcast_frames_sent: 300 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 13759 collisions: 0 late_collision: 0 unicast_frames_received: 121245 unicast_frames_sent: 122510 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 21061917202 INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5303542588 bad_octets_received: 414 mac_trans_error: 0 broadcast_frames_received: 125 multicast_frames_received: 17 frames_64_octets: 547 frames_65_to_127_octets: 341 frames_128_to_255_octets: 200 frames_256_to_511_octets: 1 frames_512_to_1023_octets: 66271225 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 55803733 broadcast_frames_sent: 302 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 10358464 unicast_frames_sent: 109672 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 28627438612 INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 56149820 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 125 multicast_frames_received: 17 frames_64_octets: 557 frames_65_to_127_octets: 340 frames_128_to_255_octets: 212 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 31172979 frames_1024_to_max_octets: 0 excessive_collision: 0 multicast_frames_sent: 24225271 broadcast_frames_sent: 302 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 109650 unicast_frames_sent: 6838723 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 15904532878 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204ea40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 13759 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 13759 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 13759 Rx 13759 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 13759 Rx 13759 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:00:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:00:51 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd 243.19
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7876' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.5, port 50472 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:00:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:00:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920aa7a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-2.2.2.2 Tx 13829 Rx 13829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2.2.2.2-1.1.1.2 Tx 13829 Rx 13829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 3.3.3.2-4.4.4.2 Tx 13829 Rx 13829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 4.4.4.2-3.3.3.2 Tx 13829 Rx 13829 Loss 0.000 INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920aaa10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 1.1.1.2-2.2.2.2 Tx 13453 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2.2.2.2-1.1.1.2 Tx 13453 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 3.3.3.2-4.4.4.2 Tx 13453 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:4 SIP-DIP 4.4.4.2-3.3.3.2 Tx 13453 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:04:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:04:54 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw 247.20
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7912' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.5, port 33764 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:04:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:04:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:04:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=152, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=30] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=152, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=32] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=152, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=34] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=152, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204f340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 Tx 11827 Rx 11827 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 Tx 11827 Rx 0 Frames Delta 11827 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 Tx 11827 Rx 0 Frames Delta 11827 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=152, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=152, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=40] Command: ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204fc40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:1 5.5.5.5 Tx 12652 Rx 0 Frames Delta 12652 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:2 5.5.5.5 Tx 12652 Rx 0 Frames Delta 12652 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:4 -> 10.36.118.199:2:3 5.5.5.5 Tx 12652 Rx 12652 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=152, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=152, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=152, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp35","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=152, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=43] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=152, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=152, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=44] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=46] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=48] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=152, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=50] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=54] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=152, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=152, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=60] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw 1.08
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-7988' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.5, port 60458 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Nexthop has invalid gateway.
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:02 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=153, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=153, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled 223.13
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8034' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.5, port 60464 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:09:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5c730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 1314 Rx 1314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:2:1', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:2:2', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:2:3', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:2:4', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:12:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:12:46 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability 294.54
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8074' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.5, port 58280 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:12:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:12:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG infra1:Logger.py:156 ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed DEBUG infra1:Logger.py:156 2943 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close DEBUG infra1:Logger.py:156 3050 DEBUG infra1:Logger.py:156 2976 INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG infra1:Logger.py:156 3071 INFO DENT:Logger.py:84 [DENT infrastructure 1] Total run time: 120.08s, pings received: 12040 INFO DENT:Logger.py:84 [DENT infrastructure 1] Actual icmp rate: 100.27pps, expected: 100pps
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:17:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:17:40 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip 171.23
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8178' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.5, port 44176 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:20:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:20:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close DEBUG infra1:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG infra1:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session DEBUG infra1:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close DEBUG infra1:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG infra1:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG infra1:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG infra1:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:23:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:23:38 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable 181.41
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8224' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.5, port 40474 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:23:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:23:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:1', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:2:2', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:2:3', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:4', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:1_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:2_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:3_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:4_4.4.4.2/24 to 1.1.1.2
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=19] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=20] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:26:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:26:40 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=158, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=158, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=158, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=158, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu 217.84
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8264' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.5, port 47106 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:26:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:26:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:26:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2.2.2.2/24 to 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_3.3.3.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 <-> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_4.4.4.2/24 to 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 44830890664 bad_octets_received: 7044608 mac_trans_error: 0 broadcast_frames_received: 168 multicast_frames_received: 87382126 frames_64_octets: 843 frames_65_to_127_octets: 27280 frames_128_to_255_octets: 284 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 94460175 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 874 broadcast_frames_sent: 303 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 13759 collisions: 0 late_collision: 0 unicast_frames_received: 188969 unicast_frames_sent: 6902528 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3528793110 INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 77429904 bad_octets_received: 7044608 mac_trans_error: 0 broadcast_frames_received: 166 multicast_frames_received: 67 frames_64_octets: 820 frames_65_to_127_octets: 27366 frames_128_to_255_octets: 263 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 41313767 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 41014701 broadcast_frames_sent: 301 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 13759 collisions: 0 late_collision: 0 unicast_frames_received: 161965 unicast_frames_sent: 151402 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 21071296042 INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5318878540 bad_octets_received: 414 mac_trans_error: 0 broadcast_frames_received: 149 multicast_frames_received: 17 frames_64_octets: 770 frames_65_to_127_octets: 27232 frames_128_to_255_octets: 261 frames_256_to_511_octets: 1 frames_512_to_1023_octets: 66350292 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 55803921 broadcast_frames_sent: 303 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 10399144 unicast_frames_sent: 175166 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 28655574932 INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=23] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=159, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=24] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 109090808 bad_octets_received: 0 mac_trans_error: 0 broadcast_frames_received: 150 multicast_frames_received: 17 frames_64_octets: 787 frames_65_to_127_octets: 27330 frames_128_to_255_octets: 279 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 31287527 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 24225464 broadcast_frames_sent: 303 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 0 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 223819 unicast_frames_sent: 6866315 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 15913242432 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=159, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=25] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=159, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=26] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=26] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 44830890664 bad_octets_received: 21055206 mac_trans_error: 0 broadcast_frames_received: 168 multicast_frames_received: 87382126 frames_64_octets: 843 frames_65_to_127_octets: 27280 frames_128_to_255_octets: 286 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 94460175 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 876 broadcast_frames_sent: 303 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13709 jabber: 0 rx_error_frame_received: 0 bad_crc: 13759 collisions: 0 late_collision: 0 unicast_frames_received: 188969 unicast_frames_sent: 6902528 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 3528793598 INFO asyncssh:logging.py:92 [conn=159, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=27] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=159, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=28] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=28] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 77429904 bad_octets_received: 21055206 mac_trans_error: 0 broadcast_frames_received: 166 multicast_frames_received: 67 frames_64_octets: 820 frames_65_to_127_octets: 27366 frames_128_to_255_octets: 264 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 41313767 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 41014702 broadcast_frames_sent: 301 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13709 jabber: 0 rx_error_frame_received: 0 bad_crc: 13759 collisions: 0 late_collision: 0 unicast_frames_received: 161965 unicast_frames_sent: 151402 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 21071296286 INFO asyncssh:logging.py:92 [conn=159, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=29] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=159, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=30] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=30] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 5318878540 bad_octets_received: 14011012 mac_trans_error: 0 broadcast_frames_received: 149 multicast_frames_received: 17 frames_64_octets: 770 frames_65_to_127_octets: 27232 frames_128_to_255_octets: 262 frames_256_to_511_octets: 1 frames_512_to_1023_octets: 66350292 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 55803922 broadcast_frames_sent: 303 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13709 jabber: 0 rx_error_frame_received: 0 bad_crc: 1 collisions: 0 late_collision: 0 unicast_frames_received: 10399144 unicast_frames_sent: 175166 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 28655575176 INFO asyncssh:logging.py:92 [conn=159, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=31] Channel closed DEBUG infra1:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=159, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=32] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=32] Channel closed DEBUG infra1:Logger.py:156 NIC statistics: good_octets_received: 109090808 bad_octets_received: 14010598 mac_trans_error: 0 broadcast_frames_received: 150 multicast_frames_received: 17 frames_64_octets: 787 frames_65_to_127_octets: 27330 frames_128_to_255_octets: 280 frames_256_to_511_octets: 0 frames_512_to_1023_octets: 31287527 frames_1024_to_max_octets: 145 excessive_collision: 0 multicast_frames_sent: 24225465 broadcast_frames_sent: 303 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13709 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 223819 unicast_frames_sent: 6866315 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 15913242676 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920e3df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:4 SIP-DIP 1.1.1.2-4.4.4.2 Tx 13709 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2.2.2.2-3.3.3.2 Tx 13709 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:3 <-> 10.36.118.199:2:2 SIP-DIP 3.3.3.2-2.2.2.2 Tx 13709 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 <-> 10.36.118.199:2:1 SIP-DIP 4.4.4.2-1.1.1.2 Tx 13709 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=159, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:30:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:30:18 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=159, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=159, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=159, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=159, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=159, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=159, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=159, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=46] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=46] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing 228.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8360' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.5, port 49774 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:33:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:33:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 33.191.235.53/14 dev swp33 && ip address add 73.191.180.93/13 dev swp34 && ip address add 116.73.147.253/24 dev swp35 && ip address add 3.217.125.207/22 dev swp36 INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: ip address add 33.191.235.53/14 dev swp33 && ip address add 73.191.180.93/13 dev swp34 && ip address add 116.73.147.253/24 dev swp35 && ip address add 3.217.125.207/22 dev swp36 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_33.188.20.202/14', 'count': 1, 'ip': '33.188.20.202', 'gw': '33.191.235.53', 'plen': 14, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_73.184.75.162/13', 'count': 1, 'ip': '73.184.75.162', 'gw': '73.191.180.93', 'plen': 13, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_116.73.147.2/24', 'count': 1, 'ip': '116.73.147.2', 'gw': '116.73.147.253', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_3.217.126.48/22', 'count': 1, 'ip': '3.217.126.48', 'gw': '3.217.125.207', 'plen': 22, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_33.188.20.202/14 to 10.36.118.199:2:2_73.184.75.162/13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_33.188.20.202/14 to 10.36.118.199:2:3_116.73.147.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_33.188.20.202/14 to 10.36.118.199:2:4_3.217.126.48/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_73.184.75.162/13 to 10.36.118.199:2:1_33.188.20.202/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_73.184.75.162/13 to 10.36.118.199:2:3_116.73.147.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_73.184.75.162/13 to 10.36.118.199:2:4_3.217.126.48/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_116.73.147.2/24 to 10.36.118.199:2:1_33.188.20.202/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_116.73.147.2/24 to 10.36.118.199:2:2_73.184.75.162/13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_116.73.147.2/24 to 10.36.118.199:2:4_3.217.126.48/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_3.217.126.48/22 to 10.36.118.199:2:1_33.188.20.202/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_3.217.126.48/22 to 10.36.118.199:2:2_73.184.75.162/13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:4_3.217.126.48/22 to 10.36.118.199:2:3_116.73.147.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_33.188.20.202/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_73.184.75.162/13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_116.73.147.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_3.217.126.48/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920a8eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI ipv4 SIP-DIP 33.188.20.202-3.217.126.48 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI ipv4 SIP-DIP 33.188.20.202-73.184.75.162 Tx 13768 Rx 13768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI ipv4 SIP-DIP 33.188.20.202-116.73.147.2 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI ipv4 #1 SIP-DIP 73.184.75.162-3.217.126.48 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI ipv4 #1 SIP-DIP 73.184.75.162-33.188.20.202 Tx 13768 Rx 13768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI ipv4 #1 SIP-DIP 73.184.75.162-116.73.147.2 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI ipv4 #2 SIP-DIP 116.73.147.2-3.217.126.48 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4 #2 SIP-DIP 116.73.147.2-33.188.20.202 Tx 13768 Rx 13768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI ipv4 #2 SIP-DIP 116.73.147.2-73.184.75.162 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI ipv4 #3 SIP-DIP 3.217.126.48-33.188.20.202 Tx 13768 Rx 13768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv4 #3 SIP-DIP 3.217.126.48-73.184.75.162 Tx 13767 Rx 13767 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI ipv4 #3 SIP-DIP 3.217.126.48-116.73.147.2 Tx 13767 Rx 13767 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:37:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:37:35 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route 151.11
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8394' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.5, port 47338 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:37:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:37:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=162, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=162, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=162, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204f100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.36.118.199:2:2 Tx 13739 Rx 13739 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:2 -> 10.36.118.199:2:1 Tx 13739 Rx 13739 Frames Delta 0 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=162, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=162, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:40:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:40:06 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=162, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=162, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=162, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=162, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=162, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs 184.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8441' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.5, port 40102 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:40:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:40:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2.2.2.2/24 to 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204fcd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 12817 Rx 12817 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 12817 Rx 12817 Loss 0.000 INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=163, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=163, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=163, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210dc00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 13788 Rx 13788 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 13788 Rx 13788 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=163, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:43:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:43:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=163, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=163, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=163, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=163, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=163, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":67,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":68,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=163, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=163, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:43:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=163, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=44] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route 209.05
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8499' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.5, port 45642 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:43:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:43:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=164, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=26] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=164, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=164, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=164, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=164, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=164, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=164, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=164, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=34] Command: ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=164, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=164, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=164, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=164, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=38] Command: ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=164, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=164, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=164, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","state":["FAILED"]},{"dst":"2.2.2.2","dev":"swp34","state":["FAILED"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","state":["FAILED"]},{"dst":"1.1.1.2","dev":"swp33","state":["FAILED"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=164, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=41] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=42] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=44] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:46:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=46] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:46:39 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=164, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=164, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=164, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=164, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=164, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=164, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=52] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net 156.57
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8563' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.5, port 42876 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:46:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:46:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["linkdown","rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["trap","linkdown","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["linkdown"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d715d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.36.118.199:2:2 Tx 9988 Rx 0 Frames Delta 9988 Loss 100.000 INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204d630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 23805 Rx 23807 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:49:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:49:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=165, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=165, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=165, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=165, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=165, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=165, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=165, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=32] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6.py::test_ipv6_basic_config 180.44
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8607' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.5, port 37402 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:49:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:49:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111:10:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:3333:30:3::2/64 to 10.36.118.199:2:1_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:3333:30:3::2/64 to 10.36.118.199:2:1_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3fca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 137887 Rx 137887 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 137886 Rx 137886 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 137887 Rx 137887 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 137886 Rx 137886 Loss 0.000 INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111:10:1::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333:30:3::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222:20:2::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204dea0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 127522 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 127522 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 127522 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 127522 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=166, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=23] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=24] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:52:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:52:16 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=166, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=166, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=166, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=166, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=166, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=166, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=166, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6.py::test_ipv6_flags 227.71
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8655' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.5, port 36598 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:52:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:52:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:3333::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:3333::2/64 to 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d727d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137606 Rx 137606 Loss 0.000 INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":797,"preferred_life_time":737},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":797,"preferred_life_time":737},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d732b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 127463 Rx 127463 Loss 0.000 INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":92,"preferred_life_time":0},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":92,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=24] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=26] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=167, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=167, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=167, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=30] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=167, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204ea40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137742 Rx 18 Loss 99.987 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137742 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137742 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137742 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137742 Rx 18 Loss 99.987 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137742 Rx 18 Loss 99.987 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137742 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137742 Rx 17 Loss 99.988
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=167, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:56:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:56:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=167, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=167, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=167, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=167, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=167, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=167, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=42] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr 257.42
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8711' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.5, port 51694 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:56:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 04:56:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 150000 net.ipv6.neigh.swp34.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=168, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=168, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::4/64 to 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::6/64 to 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210fa60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 138012 Rx 138012 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 138012 Rx 138012 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 138012 Rx 138012 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 138012 Rx 138012 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 138012 Rx 138012 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 138012 Rx 138012 Loss 0.000 INFO asyncssh:logging.py:92 [conn=168, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=168, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=168, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=168, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=168, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=168, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::216:1ff:fe00:1","dev":"swp34","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp33","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111::4","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp34","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp34","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::4","dev":"swp34","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::6","dev":"swp33","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=168, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=26] Command: ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204d630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 144537 Rx 144537 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 144537 Rx 144537 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 144537 Rx 144537 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 144537 Rx 144537 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 144537 Rx 144537 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 144537 Rx 144537 Loss 0.000 INFO asyncssh:logging.py:92 [conn=168, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=30] Command: ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210ded0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137513 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137513 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 137513 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 137513 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 137513 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 137513 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=168, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=34] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=168, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d70520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137945 Rx 137945 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::2/64 <-> 10.36.118.199:2:2_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137945 Rx 137945 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 137945 Rx 137945 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::4/64 <-> 10.36.118.199:2:2_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 137945 Rx 137945 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 137945 Rx 137945 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1_2001:1111::6/64 <-> 10.36.118.199:2:2_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 137945 Rx 137945 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=168, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=37] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=168, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=38] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:00:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:00:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=168, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=168, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=44] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=168, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=168, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=168, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=168, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=168, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=48] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=168, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=48] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge 221.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8773' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.5, port 58784 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:00:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:00:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:4444::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:5555::2/64 to 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:5555::2/64 to 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5e560>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 137745 Rx 137745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 137744 Rx 137744 Loss 0.000 INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:4444::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:04:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":70,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=169, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=169, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:04:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:04:03 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=169, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=169, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=169, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=169, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=169, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=169, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan 208.40
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8826' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.5, port 49700 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:04:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:04:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev br0 vid 3791 self && bridge vlan add dev br0 vid 1644 self && bridge vlan add dev br0 vid 765 self && bridge vlan add dev br0 vid 933 self && bridge vlan add dev swp34 vid 3791 && bridge vlan add dev swp35 vid 1644 && bridge vlan add dev swp34 vid 765 && bridge vlan add dev swp35 vid 933 INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: bridge vlan add dev br0 vid 3791 self && bridge vlan add dev br0 vid 1644 self && bridge vlan add dev br0 vid 765 self && bridge vlan add dev br0 vid 933 self && bridge vlan add dev swp34 vid 3791 && bridge vlan add dev swp35 vid 1644 && bridge vlan add dev swp34 vid 765 && bridge vlan add dev swp35 vid 933 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add link br0 name br0.3791 type vlan id 3791 && ip link add link br0 name br0.1644 type vlan id 1644 && ip link add link br0 name br0.765 type vlan id 765 && ip link add link br0 name br0.933 type vlan id 933 INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: ip link add link br0 name br0.3791 type vlan id 3791 && ip link add link br0 name br0.1644 type vlan id 1644 && ip link add link br0 name br0.765 type vlan id 765 && ip link add link br0 name br0.933 type vlan id 933 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.3791 up && ip link set dev br0.1644 up && ip link set dev br0.765 up && ip link set dev br0.933 up INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.3791 up && ip link set dev br0.1644 up && ip link set dev br0.765 up && ip link set dev br0.933 up INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:10::1/64 dev br0.3791 && ip address add 2001:20::1/64 dev br0.1644 && ip address add 2001:30::1/64 dev br0.765 && ip address add 2001:40::1/64 dev br0.933 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: ip address add 2001:10::1/64 dev br0.3791 && ip address add 2001:20::1/64 dev br0.1644 && ip address add 2001:30::1/64 dev br0.765 && ip address add 2001:40::1/64 dev br0.933 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 3791, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 765, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 1644, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 933, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:2_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:2_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:100::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:10::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:10::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:30::2/64 to 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:30::2/64 to 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210e6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 1564514 Rx 1564514 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 1564513 Rx 1564513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 137678 Rx 137678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 137677 Rx 137677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 1564514 Rx 1564514 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 1564513 Rx 1564513 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 137678 Rx 137678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 137677 Rx 137677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 137678 Rx 137678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 137677 Rx 137677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 137678 Rx 137678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 137677 Rx 137677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 137678 Rx 137678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 137678 Rx 137678 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 137677 Rx 137677 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> 10.36.118.199:2:3 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 137677 Rx 137677 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:07:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:07:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:07:31 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=170, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=170, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=170, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge 331.76
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8877' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.5, port 37980 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:07:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:07:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210eef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 137270 Rx 137270 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:2 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 137270 Rx 137270 Loss 0.000 INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:3_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210dd20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 142820 Rx 142820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 142820 Rx 142820 Loss 0.000 INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=171, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=26] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=171, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=171, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=171, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=28] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=171, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=171, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=30] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=32] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=171, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=171, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=171, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:13:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=171, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=171, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=171, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=171, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=43] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=171, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=44] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=171, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=44] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=45] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=46] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:13:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=48] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:13:03 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=171, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=171, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=50] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=171, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=171, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=171, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=54] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=54] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig 488.81
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-8946' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.5, port 60160 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:13:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:13:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:13:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=172, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_1.3.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5d420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 136555 Rx 136555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 136555 Rx 136555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 136556 Rx 136556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 136556 Rx 136556 Loss 0.000 INFO asyncssh:logging.py:92 [conn=172, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=172, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=172, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=36] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=38] Command: ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=172, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=172, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_2001:3::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9d900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 137159 Rx 137159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 137160 Rx 137160 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 137160 Rx 137160 Loss 0.000 INFO asyncssh:logging.py:92 [conn=172, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=172, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=172, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=56] Command: ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=58] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=172, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=172, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=172, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=172, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.2.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:3_1.3.1.2/24 to 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859204f550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:1 <-> ['10.36.118.199:2:2' '10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:2 <-> ['10.36.118.199:2:3' '10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 137275 Rx 137275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> nexthop SIP-DIP Tx 137275 Rx 137275 Loss 0.000 INFO asyncssh:logging.py:92 [conn=172, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=172, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=172, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=172, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=172, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=172, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=172, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:1 <-> ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:2 <-> ['10.36.118.199:2:3', '10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:3 <-> ['10.36.118.199:2:4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:4 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=76] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=172, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=76] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=172, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=77] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=172, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=172, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=78] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=172, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=79] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=172, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=172, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=80] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=81] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=82] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:21:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=83] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=84] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:21:12 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=172, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=172, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=86] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=172, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=172, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=90] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=90] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes 227.80
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9050' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.5, port 35788 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:21:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:21:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:21:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=173, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.2/24 to 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2::2/64 to 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp35', tg='10.36.118.199:2:3', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp36', tg='10.36.118.199:2:4', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9ca60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 1.1.1.2-1.3.1.2 Tx 153531 Rx 153531 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4: 10.36.118.199:2:1 <-> 10.36.118.199:2:3 SIP-DIP 1.3.1.2-1.1.1.2 Tx 153531 Rx 153531 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 153531 Rx 153531 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv6: 10.36.118.199:2:2 <-> 10.36.118.199:2:4 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 153531 Rx 153531 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI ipv4: addr_info(swp='swp35' tg='10.36.118.199:2:3' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 153531 Rx 153531 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI ipv6: addr_info(swp='swp36' tg='10.36.118.199:2:4' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 153531 Rx 153531 Loss 0.000 INFO asyncssh:logging.py:92 [conn=173, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=173, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2::5","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=173, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=173, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=173, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=173, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=173, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=173, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=173, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=173, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=173, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=173, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:24:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:25:00 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=173, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=173, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=173, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=173, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=173, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=173, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=173, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=173, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=44] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing 342.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9108' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.5, port 38516 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:25:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:25:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=22] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=174, chan=23] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=174, chan=24] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=174, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=22] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=174, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=23] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=174, chan=24] Command: echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=174, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=174, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=174, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=23] Received channel close DEBUG infra1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.209 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.209/0.209/0.209/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:1111::2 on infra1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.209 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.209/0.209/0.209/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.256 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.256/0.256/0.256/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:4444::2 on infra1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.256 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.256/0.256/0.256/0.000 ms INFO asyncssh:logging.py:92 [conn=174, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=23] Channel closed DEBUG infra1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.190 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.190/0.190/0.190/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:3333::2 on infra1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.190 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.190/0.190/0.190/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.148 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.148/0.148/0.148/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:2222::2 on infra1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.148 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.148/0.148/0.148/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=174, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=174, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=174, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=47] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=174, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=48] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=174, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=48] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=174, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=49] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=174, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=50] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=174, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=50] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp33.gc_stale_time = 90 net.ipv6.neigh.swp34.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=174, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=53] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=174, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=54] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=174, chan=56] Requesting new SSH session DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=174, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=55] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra1:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=174, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=56] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=174, chan=57] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=174, chan=58] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=174, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=58] Received channel close DEBUG infra1:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.160 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.160/0.160/0.160/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:2222::2 on infra1 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.160 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.160/0.160/0.160/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.205 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.205/0.205/0.205/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:3333::2 on infra1 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.205 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.205/0.205/0.205/0.000 ms INFO asyncssh:logging.py:92 [conn=174, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=174, chan=58] Channel closed DEBUG infra1:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.202 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.202/0.202/0.202/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:1111::2 on infra1 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.202 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.202/0.202/0.202/0.000 ms DEBUG infra1:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.214 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.214/0.214/0.214/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran ping -c 1 2001:4444::2 on infra1 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.214 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.214/0.214/0.214/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=174, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::5054:ff:feed:b68b","dev":"ma1","lladdr":"52:54:00:ed:b6:8b","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::1abe:92ff:fe13:1d90","dev":"ma1","lladdr":"18:be:92:13:1d:90","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=174, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["DELAY"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["DELAY"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 10.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=174, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["DELAY"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=174, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=84] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=86] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 40.0s INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=174, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=96] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=98] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=102] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=104] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=106] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=107] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=108] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=108] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=174, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=110] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=110] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=111] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=112] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=112] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=174, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=113] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=114] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=174, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=114] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 50.0s
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=174, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=115] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=174, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=116] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=174, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=116] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=117] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=118] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=118] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:30:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=119] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=120] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=120] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:30:42 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=174, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=174, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=122] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=174, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=123] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=174, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=124] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=174, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=124] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=174, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=125] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=174, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=126] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=174, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=126] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change 262.31
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9256' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.5, port 56204 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:30:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:30:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_2001:1111::2/64 to 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_2001:2222::2/64 to 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5d120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 1378 Rx 1378 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 1378 Rx 1378 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 0.0s INFO asyncssh:logging.py:92 [conn=175, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=28] Command: ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=30] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=32] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=175, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=175, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=38] Command: ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 && ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=175, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=175, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 30.0s INFO asyncssh:logging.py:92 [conn=175, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2001:1111::1:9a05 lladdr 02:00:00:00:00:ce nud permanent dev swp33 && ip neigh add 2001:2222::2:7d5d lladdr 02:00:00:00:01:43 nud permanent dev swp34 && ip neigh add 2001:1111::3:7bab lladdr 02:00:00:00:02:17 nud stale dev swp33 && ip neigh add 2001:2222::4:e3d4 lladdr 02:00:00:00:03:3d nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=60] Command: ip neigh add 2001:1111::1:9a05 lladdr 02:00:00:00:00:ce nud permanent dev swp33 && ip neigh add 2001:2222::2:7d5d lladdr 02:00:00:00:01:43 nud permanent dev swp34 && ip neigh add 2001:1111::3:7bab lladdr 02:00:00:00:02:17 nud stale dev swp33 && ip neigh add 2001:2222::4:e3d4 lladdr 02:00:00:00:03:3d nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=62] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=64] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2:7d5d","dev":"swp34","lladdr":"02:00:00:00:01:43","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::4:e3d4","dev":"swp34","lladdr":"02:00:00:00:03:3d","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:9a05","dev":"swp33","lladdr":"02:00:00:00:00:ce","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:7bab","dev":"swp33","lladdr":"02:00:00:00:02:17","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=175, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=66] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=175, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2:7d5d","dev":"swp34","lladdr":"02:00:00:00:01:43","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:9a05","dev":"swp33","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:7bab","dev":"swp33","lladdr":"02:00:00:00:02:17","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:2_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=175, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip neigh delete 2001:2222::2:7d5d lladdr 02:00:00:00:01:43 nud permanent dev swp34 && ip neigh delete 2001:1111::3:7bab lladdr 02:00:00:00:02:17 nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=175, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=72] Command: ip neigh delete 2001:2222::2:7d5d lladdr 02:00:00:00:01:43 nud permanent dev swp34 && ip neigh delete 2001:1111::3:7bab lladdr 02:00:00:00:02:17 nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=175, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=175, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=74] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=76] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2:7d5d","dev":"swp34","state":["FAILED"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::1:9a05","dev":"swp33","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:7bab","dev":"swp33","state":["FAILED"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=175, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=78] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=175, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=80] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=175, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:2222::2:7d5d","dev":"swp34","state":["FAILED"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::1:9a05","dev":"swp33","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::3:7bab","dev":"swp33","state":["FAILED"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Neighbors matched expectation after 10.0s
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=175, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=81] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=175, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=82] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=175, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=82] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=83] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=84] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:35:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=85] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=86] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:35:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=175, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=175, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=88] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=175, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=175, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=175, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=90] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=175, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=175, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=92] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=175, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=92] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload 212.38
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9360' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.5, port 52732 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:35:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:35:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:35:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=20] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=176, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210e320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 127840 Rx 127840 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 127840 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=176, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=176, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=176, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210d660>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 127582 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2001:5555::5 SIP-DIP N/A Tx 127581 Rx 127581 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=176, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=176, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=176, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:38:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:38:36 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=176, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=176, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=176, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=176, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=176, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=176, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=176, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=46] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=176, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=176, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=48] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=176, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=176, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=176, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=50] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=176, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=50] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm 266.69
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9426' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.5, port 33660 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:38:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:38:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d72b60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 135905 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 135904 Rx 135904 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 135904 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d727d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 127829 Rx 127829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 127829 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 127828 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=177, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9f790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 127461 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 127460 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP N/A Tx 127460 Rx 127460 Loss 0.000 INFO asyncssh:logging.py:92 [conn=177, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=177, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=177, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=177, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp36","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=177, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:43:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:43:03 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=177, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=177, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=177, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=177, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=177, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=177, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=42] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state 226.63
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9480' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.5, port 40864 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:43:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:43:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d717b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:2::5 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:2::5 SIP-DIP N/A Tx 249498 Rx 249498 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:2::8 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:2::8 SIP-DIP N/A Tx 249498 Rx 249498 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:3::5 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:3::5 SIP-DIP N/A Tx 249498 Rx 249498 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:3::8 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:3::8 SIP-DIP N/A Tx 249498 Rx 249498 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:1::5 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:1::5 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic to 2001:1::8 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic to 2001:1::8 SIP-DIP N/A Tx 249498 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:46:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:46:50 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=178, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=178, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=178, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=178, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=178, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=178, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=32] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics 241.78
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9524' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.5, port 47800 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:46:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:46:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920e0910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 299608 Rx 299608 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 599215 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5e050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 300231 Rx 300231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 600460 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=179, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=179, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=179, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=179, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=179, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=179, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=179, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=179, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd56c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP N/A Tx 299095 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP N/A Tx 598189 Rx 598189 Loss 0.000 INFO asyncssh:logging.py:92 [conn=179, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=179, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=179, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=179, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=179, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=179, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=179, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=179, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=179, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:50:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:50:52 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=179, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=179, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=179, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=179, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=179, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=179, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=179, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=42] Channel closed DEBUG infra1:Logger.py:156
Passed functional/ipv6/test_ipv6_route.py::test_ipv6_icmp 412.43
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9578' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.5, port 38150 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:50:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:50:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.46","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef34","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef58","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef59","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef5a","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:1 -> swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:2 -> swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" on infra1... INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" on infra1... INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=180, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=180, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=180, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=21] Channel closed DEBUG infra1:Logger.py:156 05:53:03.226843 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:03.560144 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:03.893464 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:04.226811 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:04.560203 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:04.893512 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:05.226815 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:05.560171 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:05.893530 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 05:53:06.226844 IP6 2001:1111::1 > 2001:1111::2: ICMP6, echo reply, seq 0, length 454 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 12 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=180, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=22] Channel closed DEBUG infra1:Logger.py:156 05:53:03.226807 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:03.560181 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:03.893437 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:04.226782 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:04.560164 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:04.893479 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:05.226788 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:05.560207 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:05.893497 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 05:53:06.226816 IP6 2001:2222::1 > 2001:2222::2: ICMP6, echo reply, seq 0, length 454 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 13 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:2:1 -> swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 10.36.118.199:2:2 -> swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 unknown ip INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" on infra1... INFO asyncssh:logging.py:92 [conn=180, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=23] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" INFO asyncssh:logging.py:92 [conn=180, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=24] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 1 && ip6[41] == 3" INFO asyncssh:logging.py:92 [conn=180, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=24] Channel closed DEBUG infra1:Logger.py:156 05:54:05.364757 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:05.364799 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:05.364823 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:05.364847 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:05.364872 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:05.364902 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:08.724756 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:08.724796 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:08.724820 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 05:54:08.724845 IP6 2001:1111::1 > 2001:1111::2: ICMP6, destination unreachable, unreachable address 2001:2222::5, length 502 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 12 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmpv6 unknown ip INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 hop limit 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" on infra1... INFO asyncssh:logging.py:92 [conn=180, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=25] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" INFO asyncssh:logging.py:92 [conn=180, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=26] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 3 && ip6[41] == 0" INFO asyncssh:logging.py:92 [conn=180, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=26] Channel closed DEBUG infra1:Logger.py:156 05:55:06.481724 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:06.815059 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:07.148370 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:07.481751 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:07.815035 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:08.148377 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:08.481728 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:08.815096 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:09.148371 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 05:55:09.481784 IP6 2001:1111::1 > 2001:1111::2: ICMP6, time exceeded in-transit for 2001:2222::2, length 502 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 10 packets captured 12 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=180, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=28] Command: ip link set dev swp33 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=180, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:1111::f/64 dev swp34 INFO asyncssh:logging.py:92 [conn=180, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=30] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:1111::f/64 dev swp34 INFO asyncssh:logging.py:92 [conn=180, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_2001:1111::1f/64', 'count': 1, 'ip': '2001:1111::1f', 'gw': '2001:1111::f', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:1 -> 10.36.118.199:2:2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_2001:1111::1f/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 137" on infra1... INFO asyncssh:logging.py:92 [conn=180, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=31] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 137" INFO asyncssh:logging.py:92 [conn=180, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=32] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 137" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=32] Channel closed DEBUG infra1:Logger.py:156 05:57:24.927433 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:25.927419 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:26.927412 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:28.927457 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:29.927469 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:31.927533 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:32.927547 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 05:57:33.927567 IP6 fe80::923c:b3ff:fe8b:ef57 > 2001:1111::2: ICMP6, redirect, 2001:1111::1f to 2001:1111::1f, length 536 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8 packets captured 8 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=180, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=33] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=180, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=180, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=34] Channel closed DEBUG infra1:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:57:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:57:44 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=180, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=180, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=180, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=180, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=180, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=180, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=180, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=180, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=44] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lacp/test_lacp_blocked_port_stp_rstp.py::test_lacp_root_port[rstp] 42.52
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9639' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_port[rstp]">Starting testcase:test_lacp_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.5, port 37270 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:57:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:57:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=181, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=22] Command: ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=181, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=24] Command: ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=181, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=26] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=28] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=181, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=30] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=181, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=31] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=181, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=32] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=181, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=181, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=181, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=181, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=36] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=181, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"12","topology-change-count":"2","topology-change":"no","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=181, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=38] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"12","topology-change-count":"2","topology-change":"no","topology-change-port":"bond_4","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=181, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=40] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"9","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=181, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=181, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=42] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=181, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=181, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=181, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=44] Command: mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=181, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=46] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"4","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py INFO asyncssh:logging.py:92 [conn=181, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=47] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=181, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=48] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=181, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:58:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=181, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":81,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":82,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=181, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=54] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=181, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=56] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:58:26 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=181, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=181, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=58] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=181, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4e:0c:a7:fa:ed:0a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":77,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":78,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":79,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":80,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=181, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=181, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=60] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=181, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=181, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=62] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=181, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=181, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=64] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=181, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=181, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=66] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=181, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=181, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=68] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=181, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=68] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lacp/test_lacp_blocked_port_stp_rstp.py::test_lacp_root_port[stp] 82.68
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9723' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_port[stp]">Starting testcase:test_lacp_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.5, port 36512 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:58:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:58:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=182, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=24] Command: ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=182, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=182, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=26] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=182, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=28] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=29] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=182, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=30] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=182, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=31] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=182, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=32] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=182, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=182, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=182, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=182, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=36] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=182, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=182, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=38] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"1","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=182, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=40] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=182, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=182, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=42] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=182, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=182, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=182, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=44] Command: mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=182, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=46] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"yes","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"41","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py INFO asyncssh:logging.py:92 [conn=182, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=47] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=182, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=48] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=182, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:59:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=182, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=52] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":87,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":88,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=182, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=54] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=182, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=55] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=56] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:59:49 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=182, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=182, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=58] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=182, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":83,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":84,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":85,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":86,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=182, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=182, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=60] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=182, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=182, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=62] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=182, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=182, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=64] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=182, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=182, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=66] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=182, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=66] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lacp/test_lacp_distribution_over_ecmp.py::test_lacp_ecmp_distribution_over_lag 249.82
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9806' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_ecmp_distribution_over_lag">Starting testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.5, port 58554 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:59:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 05:59:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 3.3.3.3/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: ip address add 3.3.3.3/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 && ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=183, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=20] Command: ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 && ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=183, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=22] Command: ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/1583/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=183, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=24] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=24] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=183, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=26] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":89,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":89,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920e1c30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 127462 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 12 Rx 63750 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 33141 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 30592
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py INFO asyncssh:logging.py:92 [conn=183, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=27] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=183, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=28] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=183, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:03:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=183, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=32] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:03:59 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=183, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=183, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=36] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=183, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":89,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":90,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":91,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=183, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=38] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=183, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=183, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=40] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=183, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=183, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=42] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=183, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=44] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:03:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_loopback_detection.py::test_lacp_loopback_detection[stp] 408.21
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-9941' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_loopback_detection[stp]">Starting testcase:test_lacp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.5, port 36174 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:09:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:09:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 && ip link set dev swp7 master bond_2 && ip link set dev swp9 master bond_3 && ip link set dev swp6 master bond_4 && ip link set dev swp8 master bond_5 && ip link set dev swp10 master bond_6 && ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 && ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: ip link set dev swp5 master bond_1 && ip link set dev swp7 master bond_2 && ip link set dev swp9 master bond_3 && ip link set dev swp6 master bond_4 && ip link set dev swp8 master bond_5 && ip link set dev swp10 master bond_6 && ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 && ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG infra1:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dde830>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1507086 Rx 14845617 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 14845268 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 14845229 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 14845186 INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=185, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=22] Command: ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=24] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=185, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=26] Command: mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=185, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=28] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=185, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=30] Command: mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=185, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=32] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_3","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_5","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.005","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_6","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.006","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp33","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.007","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.008","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.008","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.009","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.009","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.00A","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.00A","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddc5e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1507086 Rx 15911790 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 15911442 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 15911402 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 15911360
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py INFO asyncssh:logging.py:92 [conn=185, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=33] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=185, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=34] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=185, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=185, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":105,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=185, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=40] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=185, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:06 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=185, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=185, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=44] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=185, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":99,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":100,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":101,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:40"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":102,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":103,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":104,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=185, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=185, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=46] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=185, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=185, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=48] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=185, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=185, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=50] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=185, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=185, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=52] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=185, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=185, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=54] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=185, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=185, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=56] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=185, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=58] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_negative_acl_over_lag.py::test_lacp_acl_negative 1.75
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_acl_negative">Starting testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10017' coro=<test_lacp_acl_negative() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py:29> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.5, port 34092 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":49152,"kind":"flower","chain":0},{"protocol":"all","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:08 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":106,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:87:e6:d3:4f:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:08 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=186, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=186, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=186, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=186, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=186, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=44] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=186, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=186, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=46] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=186, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=186, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=48] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=186, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=186, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=50] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=186, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=186, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=52] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=186, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=186, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=54] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=186, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=186, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=186, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=186, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=186, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=186, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=186, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=186, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=186, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=186, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=186, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/lacp/test_lacp_no_traffic.py::test_lacp_unsupported_modes 16.08
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_unsupported_modes">Starting testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10091' coro=<test_lacp_unsupported_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=186, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.5, port 34106 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":107,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7e:77:87:21:32:1f","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond_1 INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: ip -j link show bond_1 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":108,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b6:2e:6f:76:83:b2","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond_2 INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: ip -j link show bond_2 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":109,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"52:a2:ec:91:62:55","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show bond_3 INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: ip -j link show bond_3 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":110,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"26:75:a9:21:12:ab","broadcast":"ff:ff:ff:ff:ff:ff"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:24 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":107,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7e:77:87:21:32:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":108,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b6:2e:6f:76:83:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"broadcast","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":109,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"52:a2:ec:91:62:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-tlb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":110,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"26:75:a9:21:12:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-alb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_no_traffic.py::test_lacp_max_lags 12.65
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_lags">Starting testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10127' coro=<test_lacp_max_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:68> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.5, port 54636 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG infra1:Logger.py:156 52 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down && ip link set dev swp49 down && ip link set dev swp50 down && ip link set dev swp51 down && ip link set dev swp52 down INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down && ip link set dev swp49 down && ip link set dev swp50 down && ip link set dev swp51 down && ip link set dev swp52 down INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 && ip link set dev swp49 master bond_48 && ip link set dev swp50 master bond_49 && ip link set dev swp51 master bond_50 && ip link set dev swp52 master bond_51 INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 && ip link set dev swp49 master bond_48 && ip link set dev swp50 master bond_49 && ip link set dev swp51 master bond_50 && ip link set dev swp52 master bond_51 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up && ip link set dev swp49 up && ip link set dev swp50 up && ip link set dev swp51 up && ip link set dev swp52 up INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up && ip link set dev swp49 up && ip link set dev swp50 up && ip link set dev swp51 up && ip link set dev swp52 up INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:30 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:37","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:38","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:39","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_7","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_8","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_9","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_10","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:41","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_11","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:42","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_12","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:43","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_13","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:44","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_14","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:45","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_15","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:46","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_16","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:47","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_17","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:48","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_18","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:49","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_19","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_20","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_21","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_22","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_23","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_24","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:4f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_25","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:50","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_26","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:51","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_27","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:52","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_28","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:53","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_29","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:54","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_30","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:55","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_31","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:56","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_32","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_34","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_35","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_36","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_37","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_38","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_39","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_40","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:5f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_41","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:60","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_42","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:61","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_43","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:62","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_44","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:63","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_45","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:64","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_46","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:65","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_47","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:66","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_48","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:67","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_49","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:68","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_50","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:69","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_51","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:6a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":111,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":112,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":113,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":114,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":115,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":116,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":117,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":118,"ifname":"bond_7","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":119,"ifname":"bond_8","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":120,"ifname":"bond_9","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":121,"ifname":"bond_10","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"bond_11","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":123,"ifname":"bond_12","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":124,"ifname":"bond_13","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":125,"ifname":"bond_14","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":126,"ifname":"bond_15","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":127,"ifname":"bond_16","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":128,"ifname":"bond_17","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":129,"ifname":"bond_18","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":130,"ifname":"bond_19","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":131,"ifname":"bond_20","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":132,"ifname":"bond_21","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":133,"ifname":"bond_22","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":134,"ifname":"bond_23","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":135,"ifname":"bond_24","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":136,"ifname":"bond_25","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":137,"ifname":"bond_26","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":138,"ifname":"bond_27","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":139,"ifname":"bond_28","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":140,"ifname":"bond_29","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":141,"ifname":"bond_30","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":142,"ifname":"bond_31","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"bond_32","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":145,"ifname":"bond_34","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":146,"ifname":"bond_35","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":147,"ifname":"bond_36","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":148,"ifname":"bond_37","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":149,"ifname":"bond_38","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":150,"ifname":"bond_39","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":151,"ifname":"bond_40","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":152,"ifname":"bond_41","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":153,"ifname":"bond_42","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":154,"ifname":"bond_43","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":155,"ifname":"bond_44","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":156,"ifname":"bond_45","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":157,"ifname":"bond_46","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":158,"ifname":"bond_47","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":159,"ifname":"bond_48","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":160,"ifname":"bond_49","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":161,"ifname":"bond_50","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":162,"ifname":"bond_51","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":163,"ifname":"bond_52","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e6:44:7c:b5:92:6b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":164,"ifname":"bond_53","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:ce:56:0f:f9:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":165,"ifname":"bond_54","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ba:11:b8:1b:ac:fd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":166,"ifname":"bond_55","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:9a:c4:2b:a7:0b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":167,"ifname":"bond_56","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"92:c1:42:88:3c:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":168,"ifname":"bond_57","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"1a:50:5a:43:33:be","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":169,"ifname":"bond_58","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e6:6e:eb:f5:b1:15","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":170,"ifname":"bond_59","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:f1:aa:8a:5d:fb","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":171,"ifname":"bond_60","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"26:bb:ec:4c:aa:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":172,"ifname":"bond_61","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"da:59:dc:f7:ac:ce","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":173,"ifname":"bond_62","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"5a:69:a7:6a:ec:ce","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":174,"ifname":"bond_63","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"2a:93:74:f9:f9:30","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=188, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=40] Command: ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=188, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=42] Command: ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=188, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=44] Command: ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=188, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=46] Command: ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=188, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=48] Command: ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=188, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=50] Command: ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=188, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=52] Command: ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=188, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=188, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=54] Command: ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=188, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=188, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=56] Command: ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=188, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=188, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=58] Command: ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=188, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=188, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=60] Command: ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=188, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=188, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=62] Command: ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=188, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=188, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=64] Command: ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=188, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=188, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=66] Command: ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=188, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=188, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=68] Command: ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=188, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=188, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=70] Command: ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=188, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=188, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=72] Command: ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=188, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=188, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=74] Command: ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=188, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=188, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=76] Command: ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=188, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=188, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=78] Command: ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=188, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=188, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=80] Command: ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=188, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=188, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=82] Command: ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=188, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=188, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=84] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=188, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=188, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=86] Command: ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=188, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=188, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=88] Command: ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=188, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=188, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=90] Command: ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=188, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=188, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=92] Command: ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=188, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=188, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=94] Command: ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=188, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=188, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=96] Command: ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=188, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=188, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=98] Command: ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=188, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=188, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=100] Command: ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=188, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=188, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=102] Command: ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=188, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=188, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=104] Command: ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=188, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=104] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=188, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=106] Command: ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=188, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=107] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=188, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=108] Command: ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=188, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=188, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=110] Command: ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=188, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=111] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=188, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=112] Command: ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=188, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=113] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=188, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=114] Command: ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=188, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=115] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=188, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=116] Command: ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=188, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=116] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=188, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=118] Command: ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=188, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=188, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=120] Command: ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=188, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=188, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=122] Command: ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=188, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=123] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=188, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=124] Command: ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=188, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=125] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=188, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=126] Command: ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=188, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=127] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=188, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=128] Command: ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=188, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=128] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=129] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=188, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=130] Command: ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=188, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=131] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=188, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=132] Command: ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=188, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=132] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=133] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=188, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=134] Command: ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=188, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=134] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=135] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=188, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=136] Command: ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=188, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=136] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=137] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=188, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=138] Command: ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=188, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=138] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=139] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=188, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=140] Command: ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=188, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=140] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=141] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=188, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=142] Command: ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=188, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=142] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=143] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=188, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=144] Command: ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=188, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=144] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=145] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=146] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_no_traffic.py::test_lacp_max_ports_in_lags 1.55
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_ports_in_lags">Starting testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-10283' coro=<test_lacp_max_ports_in_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:114> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=188, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.5, port 34680 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: No space left on device INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:38 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:37","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:38","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:38","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:39","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:39","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3b","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3c","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3d","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:3e","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":175,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_root_bridge_stp_rstp.py::test_lacp_root_bridge_selection_stp[stp] 83.72
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10311' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_bridge_selection_stp[stp]">Starting testcase:test_lacp_root_bridge_selection_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.5, port 34690 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:16:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_4 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_3","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.66:2A:31:66:1C:CD","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.66:2A:31:66:1C:CD","root-port":"bond_5 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"1","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"1000","internal-port-cost":"305","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.44:0A:D1:68:4E:B9","dsgn-internal-cost":"0","designated-bridge":"8.000.44:0A:D1:68:4E:B9","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"1.000.66:2A:31:66:1C:CD","designated-root":"1.000.66:2A:31:66:1C:CD","regional-root":"1.000.66:2A:31:66:1C:CD","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"bond_5","last-topology-change-port":"bond_6"}] INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"1.000.66:2A:31:66:1C:CD","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"bond_2 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"bond_2","last-topology-change-port":"bond_1"}] INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"1.000.66:2A:31:66:1C:CD","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"9","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_3","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"0","dsgn-regional-root":"1.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"1.000.66:2A:31:66:1C:CD","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"37","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"6","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"41","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"22","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"0","dsgn-regional-root":"1.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"1.000.66:2A:31:66:1C:CD","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"5","num-rx-tcn":"20","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_bridge_selection_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":182,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":183,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":184,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:2a:31:66:1c:cd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=190, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=78] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=79] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=80] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:02 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=190, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=190, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=82] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=190, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":176,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":177,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":178,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:40"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":179,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":180,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":181,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=190, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=190, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=84] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=190, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=86] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=190, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=88] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=190, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=90] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=190, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=92] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=190, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=94] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=190, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=94] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lacp/test_lacp_root_bridge_stp_rstp.py::test_lacp_root_bridge_selection_stp[rstp] 43.55
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10421' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_bridge_selection_stp[rstp]">Starting testcase:test_lacp_root_bridge_selection_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.5, port 33176 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=191, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=24] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=191, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=26] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=191, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=28] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=30] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=32] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=34] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=35] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=191, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=36] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=191, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=37] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=191, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=38] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=191, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=39] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=191, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=40] Command: ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=191, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=191, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=42] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=191, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=191, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=44] Command: mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=191, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=191, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=46] Command: mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=191, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=191, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=48] Command: mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=191, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=50] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=191, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=52] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_4 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_4","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=191, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=54] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.66:2A:31:66:1C:CD","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.66:2A:31:66:1C:CD","root-port":"bond_5 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=191, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=56] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.44:0A:D1:68:4E:B9","dsgn-internal-cost":"0","designated-bridge":"8.000.44:0A:D1:68:4E:B9","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=191, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=57] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=58] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=191, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=59] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=191, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=60] Command: mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=191, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=61] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=62] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"1.000.66:2A:31:66:1C:CD","designated-root":"1.000.66:2A:31:66:1C:CD","regional-root":"1.000.66:2A:31:66:1C:CD","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"2","topology-change":"no","topology-change-port":"bond_6","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=191, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=63] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=64] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"1.000.66:2A:31:66:1C:CD","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"bond_2 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"2","topology-change":"no","topology-change-port":"bond_2","last-topology-change-port":"bond_1"}] INFO asyncssh:logging.py:92 [conn=191, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=65] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=66] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"1.000.66:2A:31:66:1C:CD","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"34","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_4","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=191, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=67] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=68] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=191, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=68] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"0","dsgn-regional-root":"1.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"1.000.66:2A:31:66:1C:CD","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"14","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"7","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=191, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=69] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=70] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=191, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=70] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"7","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"1.000.66:2A:31:66:1C:CD","dsgn-external-cost":"0","dsgn-regional-root":"1.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"1.000.66:2A:31:66:1C:CD","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"14","num-rx-bpdu":"17","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"5","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_bridge_selection_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py INFO asyncssh:logging.py:92 [conn=191, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=71] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=191, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=72] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=191, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=74] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=191, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=76] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=76] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":191,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":192,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":193,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:2a:31:66:1c:cd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=191, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=78] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=191, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=79] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=80] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:46 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=191, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=191, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=82] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=191, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=82] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":185,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":186,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":187,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:40"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":188,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":189,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":190,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=191, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=191, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=84] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=191, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=191, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=86] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=191, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=191, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=88] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=191, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=191, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=90] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=191, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=191, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=92] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=191, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=191, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=94] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=191, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=94] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lacp/test_lacp_routing_over_bridge.py::test_lacp_routing_over_bridge 244.33
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10532' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_bridge">Starting testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.5, port 38640 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:18:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 && ip link set dev bond_2 master bridge0 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 && ip link set dev bond_2 master bridge0 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2', '/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=192, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=24] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":195,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":195,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dddd50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.1.1.1/24 Tx 2815659 Rx 2815656 Frames Delta 3 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 2.2.2.3/24 (bridge IP) Tx 2815658 Rx 2815656 Frames Delta 2 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py INFO asyncssh:logging.py:92 [conn=192, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=25] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=192, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=26] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:22:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=192, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":194,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=192, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=32] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:22:43 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=192, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=192, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=36] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=192, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":195,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":196,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":3,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=192, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=192, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=38] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=192, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=40] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:22:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_lacp.py::test_lacp_routing_over_lacp 241.52
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10589' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lacp">Starting testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.5, port 46306 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:22:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:22:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2', '/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":197,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":197,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2.2.2.3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5f670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.1.1.1 Tx 2817704 Rx 2817702 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 2.2.2.3 Tx 2817704 Rx 2817702 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:26:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:26:51 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":197,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":198,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":2,"num_ports":3,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:26:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_vlan_device.py::test_lacp_routing_over_vlan_device 240.63
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10640' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_vlan_device">Starting testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.5, port 49664 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:26:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:26:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 && ip link set dev bond_2 master bridge_0 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 && ip link set dev bond_2 master bridge_0 && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2', '/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2', '10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":200,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":200,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d73400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 10.1.1.1/24 Tx 2817767 Rx 2817765 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:1 -> 2.2.2.3/24 (bridge IP) Tx 2817766 Rx 2817764 Frames Delta 2 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":199,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=194, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=38] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:44 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=194, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=194, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=42] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=194, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:59","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":200,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":201,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":3,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=194, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=194, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=44] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=194, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=46] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=47] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=48] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_vrf.py::test_lacp_routing_over_lag_vrf 259.65
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10704' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf">Starting testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=194, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.5, port 38996 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:30:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=195, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=195, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=34] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=195, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master vrf0 && ip link set dev bond_2 master vrf0 && ip link set dev bond_3 master vrf1 INFO asyncssh:logging.py:92 [conn=195, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=36] Command: ip link set dev bond_1 master vrf0 && ip link set dev bond_2 master vrf0 && ip link set dev bond_3 master vrf1 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.1/24 dev bond_2 && ip address add 2.2.2.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=195, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=38] Command: ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.1/24 dev bond_2 && ip address add 2.2.2.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 && ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=195, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=40] Command: ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 && ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/1583/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=195, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=41] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=195, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=42] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=195, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=42] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=195, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=195, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=44] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=195, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":203,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":203,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LAG_0 -> ['LAG_1', 'LAG_2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9f1f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 254197 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2 Rx 254199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 26 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 3
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py INFO asyncssh:logging.py:92 [conn=195, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=45] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=195, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=195, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=46] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=195, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=195, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=48] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=195, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"type":"unreachable","dst":"default","table":"10","flags":["rt_trap"]},{"dst":"1.1.1.0/24","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"local","dst":"1.1.1.1","dev":"bond_1","table":"10","protocol":"kernel","scope":"host","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"broadcast","dst":"1.1.1.255","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bond_2","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bond_2","table":"10","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bond_2","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bond_2","table":"10","flags":["offload","rt_offload"]},{"type":"unreachable","dst":"default","table":"20","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bond_3","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bond_3","table":"20","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bond_3","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bond_3","table":"20","flags":["trap","rt_offload"]},{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef57","dev":"bond_1","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef58","dev":"bond_2","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_2","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_2","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef59","dev":"bond_3","table":"20","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_3","table":"20","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_3","table":"20","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=195, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=50] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=52] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=54] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=56] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=57] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=58] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=60] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=62] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=64] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=66] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=68] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=70] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=72] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=74] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=76] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=78] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=80] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=82] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=84] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=86] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=195, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=88] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=90] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=92] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=195, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=195, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=195, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=94] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=195, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=195, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=95] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=96] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:11 UTC 2023 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=195, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=195, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=98] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=195, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=98] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":206,"ifname":"vrf0","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b6:2d:cb:e4:97:2f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":207,"ifname":"vrf1","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:ef:88:82:27:99","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=195, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip link delete vrf0 && ip link delete vrf1 INFO asyncssh:logging.py:92 [conn=195, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=100] Command: ip link delete vrf0 && ip link delete vrf1 INFO asyncssh:logging.py:92 [conn=195, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=101] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=102] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=102] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=195, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=104] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=104] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=105] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=106] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=106] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:12 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=195, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=107] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=195, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=108] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=195, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=108] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":203,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":204,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":205,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":2,"num_ports":2,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=195, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=195, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=110] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=195, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=111] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=195, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=112] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=195, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=113] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=195, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=114] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=195, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=115] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=116] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py::test_lacp_routing_over_lag_vrf_vlan_device 255.84
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10844' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf_vlan_device">Starting testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=195, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.5, port 57374 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG infra1:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG infra1:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 1
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:35:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: ip link set dev vrf0 up INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: ip route add table 10 unreachable default INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: ip link add type vrf table 20 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: ip link set dev vrf1 up INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=196, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=36] Command: ip route add table 20 unreachable default INFO asyncssh:logging.py:92 [conn=196, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 && ip link set dev bond_3 master bridge_0 INFO asyncssh:logging.py:92 [conn=196, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 && ip link set dev bond_3 master bridge_0 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=196, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=40] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=196, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=42] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=196, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master vrf0 && ip link set dev bridge_0.10 master vrf0 && ip link set dev bond_2 master vrf1 INFO asyncssh:logging.py:92 [conn=196, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=44] Command: ip link set dev bond_1 master vrf0 && ip link set dev bridge_0.10 master vrf0 && ip link set dev bond_2 master vrf1 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=196, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=46] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=196, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.1/24 dev bridge_0.10 && ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=196, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=48] Command: ip address add 1.1.1.1/24 dev bond_1 && ip address add 2.2.2.1/24 dev bridge_0.10 && ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=196, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=50] Command: ip route add vrf vrf0 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=196, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=52] Command: ip route add vrf vrf1 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/1583/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=196, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=53] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=196, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=54] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=54] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=196, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=196, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=56] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=196, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":209,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":209,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LAG_0 -> ['LAG_1', 'LAG_2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5f460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 275013 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 28 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 137511 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 137509
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py INFO asyncssh:logging.py:92 [conn=196, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=57] Channel closed DEBUG infra1:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=196, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=58] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=196, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=58] Channel closed DEBUG infra1:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=196, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=59] Channel closed DEBUG infra1:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=196, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=60] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=196, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]}] INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=196, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=61] Channel closed DEBUG infra1:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=196, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=62] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=196, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"type":"unreachable","dst":"default","table":"10","flags":["rt_trap"]},{"dst":"1.1.1.0/24","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"local","dst":"1.1.1.1","dev":"bond_1","table":"10","protocol":"kernel","scope":"host","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"type":"broadcast","dst":"1.1.1.255","dev":"bond_1","table":"10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bridge_0.10","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bridge_0.10","table":"10","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bridge_0.10","table":"10","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bridge_0.10","table":"10","flags":["offload","rt_offload"]},{"type":"unreachable","dst":"default","table":"20","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"bond_2","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"local","dst":"2.2.2.1","dev":"bond_2","table":"20","protocol":"kernel","scope":"host","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"type":"broadcast","dst":"2.2.2.255","dev":"bond_2","table":"20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.1.1.0/24","gateway":"2.2.2.3","dev":"bond_2","table":"20","flags":["trap","rt_offload"]},{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.46","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.46","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef57","dev":"bond_1","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef59","dev":"bridge_0.10","table":"10","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bridge_0.10","table":"10","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bridge_0.10","table":"10","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_1","table":"10","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef58","dev":"bond_2","table":"20","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_2","table":"20","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_2","table":"20","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"bridge_0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"bond_3","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::923c:b3ff:fe8b:ef59","dev":"bond_3","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::ecb5:c7ff:fead:d5ea","dev":"bridge_0","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bridge_0","table":"local","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bond_3","table":"local","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=196, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=64] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=66] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=68] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=69] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=70] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=70] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=72] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=74] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=76] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=78] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=80] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=82] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=84] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=86] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=88] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=90] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=91] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=92] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=92] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=93] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=94] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=95] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=96] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=97] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=98] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=98] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=100] Command: ip route flush table 10 INFO asyncssh:logging.py:92 [conn=196, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=100] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=102] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=104] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=104] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=106] Command: ip route flush table 20 INFO asyncssh:logging.py:92 [conn=196, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=107] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=108] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=108] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:39:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=109] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=110] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=110] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":208,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=111] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=196, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=112] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=196, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=113] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=114] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=114] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:39:27 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=196, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=115] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=196, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=116] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=196, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=116] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":209,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"vrf","info_slave_data":{"table":10}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":210,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"vrf1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"vrf","info_slave_data":{"table":20}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":211,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":2,"num_ports":2,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":212,"ifname":"vrf0","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"86:7e:11:71:52:77","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":1280,"max_mtu":65575,"linkinfo":{"info_kind":"vrf","info_data":{"table":10}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":213,"ifname":"vrf1","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:b2:f6:ee:74:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":1280,"max_mtu":65575,"linkinfo":{"info_kind":"vrf","info_data":{"table":20}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=196, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=117] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=196, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=118] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=196, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=119] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=196, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=120] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=196, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=121] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=196, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=122] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=196, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=123] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=124] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:39:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=125] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=126] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=126] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:39:28 UTC 2023 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=196, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=127] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=196, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=128] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=196, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=128] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":212,"ifname":"vrf0","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"86:7e:11:71:52:77","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":213,"ifname":"vrf1","flags":["NOARP","MASTER","UP","LOWER_UP"],"mtu":65575,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:b2:f6:ee:74:a0","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=129] Channel closed DEBUG infra1:Logger.py:156 ip link delete vrf0 && ip link delete vrf1 INFO asyncssh:logging.py:92 [conn=196, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=130] Command: ip link delete vrf0 && ip link delete vrf1 INFO asyncssh:logging.py:92 [conn=196, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=130] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lacp/test_lacp_traffic_during_topology_convergence.py::test_lacp_traffic_during_topology_convergence[stp] 382.29
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-10997' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_traffic_during_topology_convergence[stp]">Starting testcase:test_lacp_traffic_during_topology_convergence[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.5, port 46730 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:39:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:39:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bond_1 down && ip link set dev bond_2 down && ip link set dev bond_3 down && ip link set dev bond_4 down && ip link set dev bond_5 down && ip link set dev bond_6 down && ip link set dev bridge_1 down && ip link set dev bridge_2 down && ip link set dev bridge_3 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=197, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=24] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=197, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=26] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=197, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=28] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=30] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=32] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=33] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=197, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=34] Command: ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=35] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=197, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=36] Command: ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=37] Channel closed DEBUG infra1:Logger.py:156 ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=197, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=38] Command: ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=197, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=40] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up && ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=197, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=41] Channel closed DEBUG infra1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=197, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=42] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=197, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=42] Channel closed DEBUG infra1:Logger.py:156 Hello World INFO asyncssh:logging.py:92 [conn=197, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=43] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=197, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=44] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=44] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5f8e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 798525 Rx 14973869 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 14974042 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3 INFO asyncssh:logging.py:92 [conn=197, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 && ip link set dev bridge_2 type bridge stp_state 1 && ip link set dev bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=197, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=46] Command: ip link set dev bridge_1 type bridge stp_state 1 && ip link set dev bridge_2 type bridge stp_state 1 && ip link set dev bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=48] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=197, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=50] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=197, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=197, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=52] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.00:45:34:43:56:55","designated-root":"8.000.00:45:34:43:56:55","regional-root":"8.000.00:45:34:43:56:55","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"20","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=197, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=197, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=54] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.44:AA:98:EA:D2:43","designated-root":"8.000.00:45:34:43:56:55","regional-root":"8.000.44:AA:98:EA:D2:43","root-port":"bond_1 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"20","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_1"}] INFO asyncssh:logging.py:92 [conn=197, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=56] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.22:0A:D1:68:4E:B9","designated-root":"8.000.00:45:34:43:56:55","regional-root":"8.000.22:0A:D1:68:4E:B9","root-port":"bond_6 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"20","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_6","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=197, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=57] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=197, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=58] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=197, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=58] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.001","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:45:34:43:56:55","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:45:34:43:56:55","dsgn-internal-cost":"0","designated-bridge":"8.000.00:45:34:43:56:55","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"8","num-rx-bpdu":"27","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"11","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:45:34:43:56:55","dsgn-external-cost":"4","dsgn-regional-root":"8.000.22:0A:D1:68:4E:B9","dsgn-internal-cost":"0","designated-bridge":"8.000.22:0A:D1:68:4E:B9","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"7","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"1","num-rx-tcn":"11","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"yes","received-tcn":"no","send-rstp":"no"},{"port":"swp33","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:45:34:43:56:55","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.44:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.44:AA:98:EA:D2:43","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"15","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=197, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=59] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=60] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Designated","port-id":"8.001","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:45:34:43:56:55","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:0A:D1:68:4E:B9","dsgn-internal-cost":"0","designated-bridge":"8.000.22:0A:D1:68:4E:B9","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"16","num-rx-bpdu":"7","num-rx-bpdu-filtered":"0","num-tx-tcn":"1","num-rx-tcn":"1","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.002","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:45:34:43:56:55","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:45:34:43:56:55","dsgn-internal-cost":"0","designated-bridge":"8.000.00:45:34:43:56:55","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"11","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210d570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 798525 Rx 16081979 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 16082175 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920215d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 691568 Rx 59 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 356035 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592021330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 846288 Rx 137 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 510843 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_traffic_during_topology_convergence[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py INFO asyncssh:logging.py:92 [conn=197, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=61] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=197, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=62] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=197, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=62] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=63] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=64] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:45:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=66] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":221,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":222,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:45:34:43:56:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":223,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=68] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=197, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=70] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:45:50 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=197, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=71] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=197, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=72] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=197, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=72] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:3f","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:40","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":215,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":216,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":217,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:40"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":218,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":219,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":220,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"90:3c:b3:8b:ef:3f"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=197, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=197, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=74] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=197, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=74] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=197, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=76] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=197, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=197, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=78] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=197, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=197, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=80] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=197, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=81] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=197, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=82] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=197, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=83] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=197, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=84] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=197, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=84] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=85] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=86] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:45:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lacp/test_lacp_with_all_vlan_modes.py::test_lacp_all_vlan_modes 405.28
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_all_vlan_modes">Starting testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11185' coro=<test_lacp_all_vlan_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py:44> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.5, port 55070 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:49:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 && ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master bond_1 && ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 && ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond_1 vid 2 && bridge vlan add dev bond_1 vid 4 pvid untagged && bridge vlan add dev bond_2 vid 2 && bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: bridge vlan add dev bond_1 vid 2 && bridge vlan add dev bond_1 vid 4 pvid untagged && bridge vlan add dev bond_2 vid 2 && bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/1583/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:2']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/1583/ixnetwork/vport/3', '/api/v1/sessions/1583/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:3', '10.36.118.199:2:4']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd7e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 269687 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 1 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1 Rx 269689 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> tagged VLAN 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_0_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_1_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on LAG_2_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd5a20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 256228 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 2 Rx 256228 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2 Rx 3
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:56:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":233,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:56:02 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:5a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:5a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":234,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":235,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:02"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":236,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":2,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:03"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=199, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=24] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=199, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=199, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=26] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=199, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=199, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=28] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=199, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:56:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[basic] 212.35
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11225' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[basic]">Starting testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.5, port 53450 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:56:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:56:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "624" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "624" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:59:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=200, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=200, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[mandatory] 179.89
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11254' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[mandatory]">Starting testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.5, port 41962 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:59:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 06:59:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "628" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "10", "age": "0 day, 00:00:11", "chassis": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" } }, "port": { "id": { "type": "ifalias", "value": "Uplink to Spine 1" }, "ttl": "120" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:02:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=201, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=201, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=201, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=201, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[optional] 173.25
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11283' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[optional]">Starting testcase:test_lldp_received[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.5, port 59918 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:02:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:02:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_optional INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating custom traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "631" }, "rx": { "rx": "12" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "2" }, "delete_cnt": { "delete_cnt": "2" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "11", "age": "0 day, 00:00:11", "chassis": { "S2.cisco.com": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" }, "descr": "Cisco IOS Software, C3560 Software (C3560-ADVIPSERVICESK9-M), Version 12.2(44)SE, RELEASE SOFTWARE (fc1)", "mgmt-ip": "10.5.225.52", "mgmt-iface": "100000", "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "00:02:03:00:00:07" }, "descr": "GigabitEthernet8", "ttl": "120" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:05:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=202, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=202, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=202, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=202, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_received[ttl] 193.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11312' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[ttl]">Starting testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.5, port 47628 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:05:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:05:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "635" }, "rx": { "rx": "18" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "3" }, "delete_cnt": { "delete_cnt": "3" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "12", "age": "0 day, 00:00:10", "chassis": { "id": { "type": "mac", "value": "00:00:00:11:11:11" } }, "port": { "id": { "type": "mac", "value": "00:00:00:00:00:07" }, "ttl": "20" } } } } } INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=203, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:08:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=203, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=203, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=203, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=203, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_rx[disable] 181.64
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11343' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[disable]">Starting testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.5, port 33524 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:08:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:08:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:11:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=204, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=204, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=204, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=204, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_rx[port_down_up] 179.25
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11370' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[port_down_up]">Starting testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.5, port 54852 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:11:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:11:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=205, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=205, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=205, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=18] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "13", "age": "0 day, 00:00:11", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:14:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=205, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=205, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=205, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=24] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=205, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_receive.py::test_lldp_max_neighbours 175.81
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11403' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_max_neighbours">Starting testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.5, port 35274 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:14:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:14:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG infra1:Logger.py:156 32
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:17:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
Passed functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[basic] 100.62
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11432' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[basic]">Starting testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.5, port 56874 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:17:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:17:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "649" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "653" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:19:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=207, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=207, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=207, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=207, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=207, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=207, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=207, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=24] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=207, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[mandatory] 54.90
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11465' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[mandatory]">Starting testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.5, port 37368 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:19:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:19:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "656" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "localhost": { "id": { "type": "mac", "value": "ca:0c:df:1a:0c:cd" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.46", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG infra1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=208, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=208, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=20] Channel closed DEBUG infra1:Logger.py:156 07:20:11.289359 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:20:11.289359 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:20:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=208, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=208, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=208, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=208, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=208, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=208, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=208, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=208, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[optional] 49.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11502' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[optional]">Starting testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.5, port 32804 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:20:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:20:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "662" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "localhost": { "id": { "type": "mac", "value": "ca:0c:df:1a:0c:cd" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.46", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG infra1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=209, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=209, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=20] Channel closed DEBUG infra1:Logger.py:156 07:21:01.144557 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:21:01.144557 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:21:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=209, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=209, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=209, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=209, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=209, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=209, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=209, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=209, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx[disabled] 57.85
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11539' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[disabled]">Starting testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.5, port 50828 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:21:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:21:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "668" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "668" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:22:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx[port_down] 66.39
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11570' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[port_down]">Starting testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.5, port 42208 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:22:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:22:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "671" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "671" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "674" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:23:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=211, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=211, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=211, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=211, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=211, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=211, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=28] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx[interval] 61.18
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11607' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[interval]">Starting testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.5, port 37904 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:23:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:23:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "679" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "682" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } }
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:24:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_transmit.py::test_lldp_tx_hold 53.82
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11638' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx_hold">Starting testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.5, port 33948 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:24:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:24:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG infra1:Logger.py:156 07:25:00.209184 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:25:00.209184 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:25:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "500", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_tx_rx.py::test_lldp_bridge 174.70
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11670' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_bridge">Starting testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.5, port 55242 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:25:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:25:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "692" }, "rx": { "rx": "67" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=214, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=214, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=20] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "46", "age": "0 day, 00:00:10", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } INFO asyncssh:logging.py:92 [conn=214, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=22] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "746" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=214, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=24] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=214, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:01:49", "chassis": { "localhost": { "id": { "type": "mac", "value": "ca:0c:df:1a:0c:cd" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.46", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=214, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=25] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=214, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=26] Command: uname -n INFO asyncssh:logging.py:92 [conn=214, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=26] Channel closed DEBUG infra1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=214, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=27] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=214, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=28] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=214, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=28] Channel closed DEBUG infra1:Logger.py:156 07:27:53.832729 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:27:53.832729 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:27:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=31] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=214, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=32] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=214, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=33] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=214, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=34] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=214, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=34] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=214, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=214, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=36] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=214, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:27:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":237,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=42] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_tx_rx.py::test_lldp_enable_disable_ports 306.16
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11723' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_enable_disable_ports">Starting testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.5, port 40684 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:27:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:27:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "755" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "755" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "664" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "48", "age": "0 day, 00:00:17", "chassis": { "id": { "type": "mac", "value": "02:0d:5a:4b:79:80" } }, "port": { "id": { "type": "mac", "value": "02:f2:d9:14:cc:a2" }, "ttl": "160" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=24] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "48", "age": "0 day, 00:00:17", "chassis": { "id": { "type": "mac", "value": "02:0d:5a:4b:79:80" } }, "port": { "id": { "type": "mac", "value": "02:f2:d9:14:cc:a2" }, "ttl": "160" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=26] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "667" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=28] Command: lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=215, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=28] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "age": "0 day, 00:02:29", "chassis": { "localhost": { "id": { "type": "mac", "value": "ca:0c:df:1a:0c:cd" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.46", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:58" }, "descr": "swp34" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=29] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=215, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=215, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=30] Channel closed DEBUG infra1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=215, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=31] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=215, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=215, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=32] Channel closed DEBUG infra1:Logger.py:156 07:32:44.930569 90:3c:b3:8b:ef:58 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:58 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:32:44.930569 90:3c:b3:8b:ef:58 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:58 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=215, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=33] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=215, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=34] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=215, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=34] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "595" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=215, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=36] Command: lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=215, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=36] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=215, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=37] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=215, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=38] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=215, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=38] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "595" }, "rx": { "rx": "0" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=39] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=40] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=40] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "699" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=41] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=42] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=42] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "47", "age": "0 day, 00:00:32", "chassis": { "id": { "type": "mac", "value": "02:7c:bd:d2:a6:44" } }, "port": { "id": { "type": "mac", "value": "02:2a:25:fb:5b:82" }, "ttl": "189" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=43] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=44] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=44] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "47", "age": "0 day, 00:00:32", "chassis": { "id": { "type": "mac", "value": "02:7c:bd:d2:a6:44" } }, "port": { "id": { "type": "mac", "value": "02:2a:25:fb:5b:82" }, "ttl": "189" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=45] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=46] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=46] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "703" }, "rx": { "rx": "6" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=47] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=48] Command: lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=215, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=48] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "age": "0 day, 00:02:45", "chassis": { "localhost": { "id": { "type": "mac", "value": "ca:0c:df:1a:0c:cd" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.46", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:5a" }, "descr": "swp36" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=215, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=49] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=215, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=50] Command: uname -n INFO asyncssh:logging.py:92 [conn=215, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=50] Channel closed DEBUG infra1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=215, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=51] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=215, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=52] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=215, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=52] Channel closed DEBUG infra1:Logger.py:156 07:33:00.941865 90:3c:b3:8b:ef:5a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:5a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:33:00.941865 90:3c:b3:8b:ef:5a > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:5a Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=53] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=54] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:33:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=215, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=55] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=215, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=56] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=215, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=57] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=215, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=58] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=215, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=58] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=215, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=59] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=215, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=60] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=215, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=60] Channel closed DEBUG infra1:Logger.py:156
Passed functional/lldp/test_lldp_tx_rx.py::test_lldp_lag 231.18
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-11793' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_lag">Starting testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.5, port 39446 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:33:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG infra1:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG infra1:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon snmpd.service loaded active running Simple Network Management Protocol (SNMP) Daemon. ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 39 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } }
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:33:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/1583/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:1']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "764" }, "rx": { "rx": "73" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "38" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=21] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=216, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=216, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint bond1 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on bond1_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=216, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=23] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=24] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=24] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "49", "age": "0 day, 00:00:10", "chassis": { "id": { "type": "mac", "value": "02:1b:94:63:09:70" } }, "port": { "id": { "type": "ifname", "value": "FastEthernet/19" }, "ttl": "110" } } } } } INFO asyncssh:logging.py:92 [conn=216, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=25] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=26] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=26] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "809" }, "rx": { "rx": "79" }, "rx_discarded_cnt": { "rx_discarded_cnt": "0" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "39" }, "delete_cnt": { "delete_cnt": "38" } } } } } INFO asyncssh:logging.py:92 [conn=216, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=27] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=28] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=216, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=28] Channel closed DEBUG infra1:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:01:31", "chassis": { "localhost": { "id": { "type": "mac", "value": "ca:0c:df:1a:0c:cd" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64", "mgmt-ip": [ "10.36.118.46", "fe80::923c:b3ff:fe8b:ef34" ], "mgmt-iface": [ "5", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "90:3c:b3:8b:ef:57" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=216, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=29] Channel closed DEBUG infra1:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=216, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=216, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=30] Channel closed DEBUG infra1:Logger.py:156 localhost INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1... INFO asyncssh:logging.py:92 [conn=216, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=31] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=216, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=216, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=32] Channel closed DEBUG infra1:Logger.py:156 07:36:50.578348 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported, enabled], aggregation port ID 238 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 1] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra1 with rc 0 and out 07:36:50.578348 90:3c:b3:8b:ef:57 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 240: LLDP, length 226 Chassis ID TLV (1), length 7 Subtype MAC address (4): ca:0c:df:1a:0c:cd Port ID TLV (2), length 7 Subtype MAC address (3): 90:3c:b3:8b:ef:57 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 9: localhost System Description TLV (6), length 114 Debian GNU/Linux 9 (stretch) Linux 5.15.11-g0623069265cd-dirty #1 SMP PREEMPT Fri Jul 21 09:41:47 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 10.36.118.46 Interface Index Interface Numbering (2): 5 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::923c:b3ff:fe8b:ef34 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported, enabled], aggregation port ID 238 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 2 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:36:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=216, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=35] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=216, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=36] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=216, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=37] Channel closed DEBUG infra1:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=216, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=38] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=216, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=38] Channel closed DEBUG infra1:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "real", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=216, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=39] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=216, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=40] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=216, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=41] Channel closed DEBUG infra1:Logger.py:156 lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=216, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=42] Command: lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=216, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=43] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=44] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:36:54 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=216, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=216, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=216, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":238,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:01"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=216, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=216, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=48] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=216, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=48] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] 179.68
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-11855' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.5, port 54738 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:36:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 123.218.15.122 dst_ip 31.126.141.91 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 123.218.15.122 dst_ip 31.126.141.91 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"31.126.141.91","src_ip":"123.218.15.122"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_dst_ip_31.126.141.91_src_ip_123.218.15.122 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddd330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6619528 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3317 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:39:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:39:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":239,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:39:52 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=217, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=217, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=217, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=217, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=217, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=217, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=217, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=217, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=217, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=217, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=217, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=217, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=217, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=217, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=217, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=217, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=217, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=217, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=217, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=217, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=217, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=217, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=217, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=217, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=217, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=217, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=217, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=217, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=217, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=217, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=217, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=217, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=217, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=217, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=217, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=217, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=217, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=217, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=217, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=217, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=217, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=217, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=217, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=217, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=217, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=217, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=217, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=217, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=217, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=217, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=217, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=217, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=217, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=217, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=217, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=217, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=217, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=217, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=217, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=217, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=217, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=217, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=217, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=217, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=217, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=217, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=217, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=217, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=217, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=217, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=217, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=217, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=217, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=217, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=217, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=217, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=217, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=217, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=217, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=217, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=217, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=217, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=217, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=217, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=217, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=217, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=217, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=217, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=217, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=217, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=217, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=217, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=217, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=217, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=217, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=217, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=217, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=217, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=217, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=217, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=217, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=217, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=217, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=217, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=217, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=217, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=217, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=217, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=217, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=217, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=217, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=217, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=217, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=217, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=217, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=217, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=217, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] 174.45
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12018' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Local address: 172.17.0.5, port 45756 INFO asyncssh:logging.py:92 [conn=218] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=218] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=218] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:39:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=218, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=218, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=218, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=218, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=218, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=218, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=218, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:53:e1:b0:8d:3b dst_mac 02:69:70:b1:cf:32 vlan_id 2339 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=218, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:53:e1:b0:8d:3b dst_mac 02:69:70:b1:cf:32 vlan_id 2339 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=218, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=218, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=218, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2339,"dst_mac":"02:69:70:b1:cf:32","src_mac":"02:53:e1:b0:8d:3b"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2339_dst_mac_02:69:70:b1:cf:32_src_mac_02:53:e1:b0:8d:3b INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920848e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 7216676 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3512 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:42:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:42:46 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=218, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":240,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=218, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:42:46 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=218, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=218, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=218, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=218, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] 179.05
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12181' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Local address: 172.17.0.5, port 33228 INFO asyncssh:logging.py:92 [conn=219] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=219] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=219] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:42:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=219, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=219, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=219, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=219, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=219, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=219, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=219, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 11.190.61.53 dst_ip 68.10.26.70 ip_proto udp src_port 32226 dst_port 11188 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=219, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 11.190.61.53 dst_ip 68.10.26.70 ip_proto udp src_port 32226 dst_port 11188 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=219, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=219, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=219, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"68.10.26.70","src_ip":"11.190.61.53","dst_port":11188,"src_port":32226},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_68.10.26.70_src_ip_11.190.61.53_dst_port_11188_src_port_32226 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cab250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6960752 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3429 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:45:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:45:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=219, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":241,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=219, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:45:46 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=219, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=219, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=219, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=219, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=219, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=219, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=219, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=219, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=219, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=219, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=219, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=219, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=219, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=219, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=219, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=219, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=219, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=219, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=219, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=219, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=219, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=219, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=219, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=219, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=219, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=219, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=219, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=219, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=219, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=219, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=219, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=219, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=219, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=219, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=219, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=219, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=219, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=219, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=219, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=219, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=219, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=219, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=219, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=219, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=219, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=219, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=219, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=219, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=219, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=219, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=219, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=219, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=219, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=219, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=219, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=219, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=219, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=219, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=219, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=219, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=219, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=219, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=219, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=219, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=219, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=219, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=219, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=219, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=219, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=219, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=219, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=219, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=219, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=219, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=219, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=219, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=219, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=219, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=219, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=219, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=219, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=219, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=219, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=219, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=219, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=219, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=219, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=219, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=219, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=219, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=219, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=219, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=219, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=219, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=219, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=219, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=219, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=219, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=219, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=219, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=219, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=219, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=219, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=219, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=219, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=219, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=219, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=219, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=219, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=219, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=219, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=219, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] 178.68
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12344' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Local address: 172.17.0.5, port 51296 INFO asyncssh:logging.py:92 [conn=220] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=220] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=220] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:45:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=220, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=220, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=220, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=220, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=220, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 117.165.27.233 dst_ip 35.234.60.175 ip_proto tcp src_port 45293 dst_port 11014 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=220, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=10] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 117.165.27.233 dst_ip 35.234.60.175 ip_proto tcp src_port 45293 dst_port 11014 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=220, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"35.234.60.175","src_ip":"117.165.27.233","dst_port":11014,"src_port":45293},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_tcp_dst_ip_35.234.60.175_src_ip_117.165.27.233_dst_port_11014_src_port_45293 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d98e20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 6319023 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3221 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:48:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:48:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=220, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":242,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=220, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:48:44 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=220, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=220, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=220, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=220, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=220, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=220, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=220, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=220, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=220, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=220, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=220, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=220, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=220, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=220, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=220, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=220, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=220, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=220, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=220, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=220, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=220, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=220, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=220, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=220, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=220, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=220, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=220, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=220, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=220, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=220, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=220, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=220, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=220, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=220, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=220, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=220, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=220, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=220, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=220, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=220, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=220, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=220, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=220, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=220, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=220, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=220, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=220, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=220, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=220, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=220, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=220, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=220, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=220, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=220, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=220, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=220, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=220, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=220, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=220, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=220, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=220, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=220, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=220, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=220, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=220, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=220, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=220, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=220, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=220, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=220, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=220, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=220, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=220, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=220, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=220, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=220, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=220, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=220, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=220, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=220, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=220, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=220, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=220, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=220, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=220, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=220, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=220, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=220, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=220, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=220, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=220, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=220, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=220, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=220, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=220, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=220, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=220, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=220, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=220, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] 177.84
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12507' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Local address: 172.17.0.5, port 44344 INFO asyncssh:logging.py:92 [conn=221] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=221] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=221] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:48:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=221, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=221, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=221, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=221, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2127 ingress INFO asyncssh:logging.py:92 [conn=221, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=8] Command: tc qdisc add dev swp34 ingress_block 2127 ingress INFO asyncssh:logging.py:92 [conn=221, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2127 ingress protocol ipv4 flower skip_sw src_ip 58.58.80.219 dst_ip 17.198.115.143 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=221, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=10] Command: tc filter add block 2127 ingress protocol ipv4 flower skip_sw src_ip 58.58.80.219 dst_ip 17.198.115.143 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=221, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2127 ingress INFO asyncssh:logging.py:92 [conn=221, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=12] Command: tc -j filter show block 2127 ingress INFO asyncssh:logging.py:92 [conn=221, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"17.198.115.143","src_ip":"58.58.80.219"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_dst_ip_17.198.115.143_src_ip_58.58.80.219 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e04610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3302 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 6571414 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:51:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=221, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:51:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=221, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":243,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=221, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:51:42 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=221, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=221, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=221, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2127,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=221, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=221, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=221, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=221, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=221, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=221, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=221, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=221, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=221, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=221, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=221, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=221, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=221, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=221, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=221, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=221, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=221, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=221, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=221, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=221, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=221, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=221, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=221, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=221, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=221, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=221, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=221, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=221, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=221, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=221, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=221, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=221, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=221, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=221, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=221, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=221, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=221, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=221, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=221, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=221, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=221, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=221, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=221, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=221, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=221, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=221, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=221, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=221, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=221, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=221, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=221, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=221, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=221, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=221, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=221, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=221, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=221, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=221, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=221, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=221, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=221, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=221, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=221, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=221, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=221, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=221, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=221, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=221, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=221, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=221, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=221, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=221, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=221, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=221, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=221, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=221, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=221, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=221, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=221, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=221, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=221, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=221, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=221, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=221, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=221, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=221, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=221, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=221, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=221, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=221, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=221, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=221, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=221, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=221, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=221, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=221, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=221, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=221, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=221, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=221, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=221, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=221, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=221, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=221, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=221, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=221, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=221, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=221, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=221, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=221, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=221, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] 181.30
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12670' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Local address: 172.17.0.5, port 42462 INFO asyncssh:logging.py:92 [conn=222] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=222] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=222] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:51:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=222, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=222, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=222, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=222, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=222, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2894 ingress INFO asyncssh:logging.py:92 [conn=222, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=8] Command: tc qdisc add dev swp34 ingress_block 2894 ingress INFO asyncssh:logging.py:92 [conn=222, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2894 ingress protocol 0x8100 flower skip_sw src_mac 02:74:f7:c1:08:09 dst_mac 02:7e:02:2d:c0:07 vlan_id 1472 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=222, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=10] Command: tc filter add block 2894 ingress protocol 0x8100 flower skip_sw src_mac 02:74:f7:c1:08:09 dst_mac 02:7e:02:2d:c0:07 vlan_id 1472 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=222, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2894 ingress INFO asyncssh:logging.py:92 [conn=222, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=12] Command: tc -j filter show block 2894 ingress INFO asyncssh:logging.py:92 [conn=222, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1472,"dst_mac":"02:7e:02:2d:c0:07","src_mac":"02:74:f7:c1:08:09"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1472_dst_mac_02:7e:02:2d:c0:07_src_mac_02:74:f7:c1:08:09 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592022890>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3385 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 6827638 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:54:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:54:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=222, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":244,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=222, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:54:43 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=222, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2894,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=222, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=222, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=222, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=222, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=222, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=222, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=222, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=222, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=222, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=222, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=222, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] 176.03
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12833' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Local address: 172.17.0.5, port 45008 INFO asyncssh:logging.py:92 [conn=223] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=223] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=223] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:54:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=223, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=223, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=223, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=223, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=223, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 766 ingress INFO asyncssh:logging.py:92 [conn=223, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=8] Command: tc qdisc add dev swp34 ingress_block 766 ingress INFO asyncssh:logging.py:92 [conn=223, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 766 ingress protocol ipv4 flower skip_sw src_ip 111.1.145.222 dst_ip 23.252.30.63 ip_proto udp src_port 11862 dst_port 42891 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=10] Command: tc filter add block 766 ingress protocol ipv4 flower skip_sw src_ip 111.1.145.222 dst_ip 23.252.30.63 ip_proto udp src_port 11862 dst_port 42891 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=223, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 766 ingress INFO asyncssh:logging.py:92 [conn=223, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=12] Command: tc -j filter show block 766 ingress INFO asyncssh:logging.py:92 [conn=223, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"23.252.30.63","src_ip":"111.1.145.222","dst_port":42891,"src_port":11862},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_udp_dst_ip_23.252.30.63_src_ip_111.1.145.222_dst_port_42891_src_port_11862 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e04640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3481 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 7126109 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:57:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:57:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=223, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":245,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:57:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":766,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=223, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=223, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=223, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] 179.35
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-12996' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Local address: 172.17.0.5, port 53042 INFO asyncssh:logging.py:92 [conn=224] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=224] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=224] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 07:57:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=224, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=224, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=224, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=224, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 2031 ingress INFO asyncssh:logging.py:92 [conn=224, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=8] Command: tc qdisc add dev swp34 ingress_block 2031 ingress INFO asyncssh:logging.py:92 [conn=224, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 2031 ingress protocol ipv4 flower skip_sw src_ip 47.134.55.244 dst_ip 48.3.10.87 ip_proto tcp src_port 48106 dst_port 57024 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=224, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=10] Command: tc filter add block 2031 ingress protocol ipv4 flower skip_sw src_ip 47.134.55.244 dst_ip 48.3.10.87 ip_proto tcp src_port 48106 dst_port 57024 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=224, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 2031 ingress INFO asyncssh:logging.py:92 [conn=224, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=12] Command: tc -j filter show block 2031 ingress INFO asyncssh:logging.py:92 [conn=224, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"48.3.10.87","src_ip":"47.134.55.244","dst_port":57024,"src_port":48106},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_tcp_dst_ip_48.3.10.87_src_ip_47.134.55.244_dst_port_57024_src_port_48106 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddeb60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 3077 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 5874859 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:00:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=224, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:00:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=224, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":246,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=224, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:00:39 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=224, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2031,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=224, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=224, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=224, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop 282.23
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13159' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Local address: 172.17.0.5, port 60534 INFO asyncssh:logging.py:92 [conn=225] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=225] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=225] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:00:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=225, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=225, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=225, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=225, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=225, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=225, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=225, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=225, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=225, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=225, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=225, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e04160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 13510260 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 4623 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4623 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4623 INFO asyncssh:logging.py:92 [conn=225, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=16] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e074f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 17268945 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 6610 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 6610 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 6610 INFO asyncssh:logging.py:92 [conn=225, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=20] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=22] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=225, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3d060>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 31646878 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7155 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 7155 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 7154 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:05:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=225, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:05:21 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=225, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=225, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=225, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=225, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=225, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=225, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=225, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=225, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=225, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=225, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=225, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=225, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=225, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=225, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=225, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=225, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=225, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=225, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=225, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=225, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=225, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=225, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=225, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=225, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=225, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=225, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=225, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=225, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=225, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=225, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=225, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=225, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=225, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=225, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=225, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=225, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=225, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=225, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=225, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=225, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=225, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=225, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=225, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=225, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=225, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=225, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=225, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=225, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=225, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=225, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=225, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=225, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=225, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=225, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=225, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=225, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=225, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=225, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=225, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=225, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=225, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=225, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=225, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=225, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=225, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=116] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=225, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=116] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=225, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=225, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=225, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=225, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=225, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=225, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=225, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=225, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=225, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=225, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=225, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=225, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=225, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=225, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=225, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=225, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=225, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=225, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=225, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=225, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=225, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=225, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=225, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=225, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=225, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=148] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=225, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=225, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=150] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=225, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=225, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=152] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=225, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=225, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=154] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=225, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=225, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=156] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=225, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=157] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=158] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:05:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=225, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=159] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=160] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":247,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=225, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=225, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=162] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=225, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=162] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span 427.39
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13334' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Local address: 172.17.0.5, port 33376 INFO asyncssh:logging.py:92 [conn=226] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=226] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=226] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:05:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=226, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=226, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=226, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=226, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=226, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=226, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=226, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=226, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=10] Command: tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=226, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=226, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=226, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=226, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp34","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b7760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3495862 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 4274209 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 778348 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 778348 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the mirred port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9a2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3759034 Rx 3759034 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 3759034 Rx 4581243 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4581243 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4581243 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:2 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd42e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_swp33 SIP-DIP N/A Tx 2049987 Rx 2423839 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_swp33 SIP-DIP N/A Tx 2049987 Rx 469232 Loss 77.110 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_swp33 SIP-DIP N/A Tx 2049987 Rx 377620 Loss 81.579 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_swp34 SIP-DIP N/A Tx 2049987 Rx 2049987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_swp34 SIP-DIP N/A Tx 2049987 Rx 2049987 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_swp34 SIP-DIP N/A Tx 2049987 Rx 2049986 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:1 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:3 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 1] Verifying rate for the port 10.36.118.199:2:4 and stream stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=226, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:28 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=226, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=226, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=226, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=42] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=226, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=226, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=44] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=226, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=226, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=46] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=226, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=226, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=48] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=226, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=226, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=50] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=226, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=226, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=52] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=226, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=226, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=54] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=226, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=226, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=56] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=226, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=226, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=58] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=226, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=226, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=60] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=226, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=226, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=62] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=226, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=226, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=64] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=226, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=226, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=66] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=226, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=226, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=68] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=226, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=226, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=70] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=226, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=226, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=72] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=226, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=226, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=74] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=226, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=226, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=76] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=226, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=226, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=78] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=226, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=226, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=80] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=226, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=82] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=226, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=84] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=226, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=226, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=86] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=226, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=226, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=88] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=226, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=226, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=90] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=226, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=226, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=92] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=226, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=226, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=94] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=226, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=226, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=96] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=226, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=226, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=98] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=226, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=226, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=100] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=226, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=226, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=102] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=226, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=226, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=104] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=226, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=106] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=226, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=108] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=226, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=108] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=112] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=114] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=226, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=116] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=226, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=226, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=118] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=226, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=226, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=120] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=226, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=226, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=122] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=226, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=226, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=124] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=226, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=226, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=126] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=226, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=226, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=128] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=226, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=226, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=130] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=226, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=226, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=132] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=226, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=226, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=134] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=226, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=226, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=136] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=226, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=226, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=138] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=226, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=226, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=140] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=226, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=226, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=142] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=226, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=226, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=144] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=226, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=226, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=146] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=226, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=226, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=226, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=149] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=150] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=226, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=151] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=152] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":248,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=226, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=153] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=226, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=226, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=154] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded 3.30
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13501' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Local address: 172.17.0.5, port 40532 INFO asyncssh:logging.py:92 [conn=227] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=227] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=227] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=227, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=227, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=227, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=227, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=227, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=227, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=6] Command: ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=227, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=227, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=8] Command: ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=227, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=227, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=227, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=227, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9300 flower action pass INFO asyncssh:logging.py:92 [conn=227, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9300 flower action pass INFO asyncssh:logging.py:92 [conn=227, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=227, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=227, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9300"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:31 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=227, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=227, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=227, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"90:3c:b3:8b:ef:58","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":249,"ifname":"bond33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=227, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=227, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=227, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:32 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=227, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=227, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=227, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=227, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=227, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=227, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=227, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=227, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=227, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=227, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=227, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=227, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=227, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=227, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=227, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=227, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=227, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=227, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=227, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=227, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=227, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=227, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=227, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=227, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=227, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=227, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=227, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=227, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=227, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=227, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=227, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=227, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=227, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=227, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=227, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=227, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=227, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=227, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=227, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=227, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=227, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=227, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=227, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=227, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=227, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=227, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=227, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=227, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=227, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=227, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=227, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=227, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=227, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=227, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=227, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=227, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=227, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=227, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=227, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=227, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=227, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=227, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=227, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=227, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=227, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=227, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=227, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=227, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=227, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=227, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=227, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=227, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=227, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=227, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=227, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=227, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=227, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=227, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=227, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=227, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=227, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=227, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=227, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=227, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=227, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=227, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=227, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=227, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=146] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=227, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=148] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=227, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=227, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=150] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=227, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=227, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=152] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=227, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule 305.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13666' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Local address: 172.17.0.5, port 59632 INFO asyncssh:logging.py:92 [conn=228] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=228] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=228] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:12:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=228, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=228, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=228, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=228, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=228, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=228, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=228, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 100 flower src_mac 02:41:4d:26:ae:79 dst_mac 02:ec:63:4b:fb:27 src_ip 96.172.74.219 dst_ip 90.165.25.11 ip_proto udp src_port 63749 dst_port 7181 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=228, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=10] Command: tc filter add dev swp33 ingress protocol ip pref 100 flower src_mac 02:41:4d:26:ae:79 dst_mac 02:ec:63:4b:fb:27 src_ip 96.172.74.219 dst_ip 90.165.25.11 ip_proto udp src_port 63749 dst_port 7181 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=228, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 200 flower src_mac 02:58:03:b5:e0:ea dst_mac 02:3b:78:65:88:f2 src_ip 64.126.28.113 dst_ip 119.132.187.49 ip_proto udp src_port 54562 dst_port 55140 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=228, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 200 flower src_mac 02:58:03:b5:e0:ea dst_mac 02:3b:78:65:88:f2 src_ip 64.126.28.113 dst_ip 119.132.187.49 ip_proto udp src_port 54562 dst_port 55140 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=228, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 300 flower src_mac 02:84:15:7e:ba:76 dst_mac 02:0f:3f:29:ff:3f src_ip 67.230.131.201 dst_ip 22.252.95.136 ip_proto udp src_port 25569 dst_port 22779 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=228, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 300 flower src_mac 02:84:15:7e:ba:76 dst_mac 02:0f:3f:29:ff:3f src_ip 67.230.131.201 dst_ip 22.252.95.136 ip_proto udp src_port 25569 dst_port 22779 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=228, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=228, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=228, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ec:63:4b:fb:27","src_mac":"02:41:4d:26:ae:79","eth_type":"ipv4","ip_proto":"udp","dst_ip":"90.165.25.11","src_ip":"96.172.74.219","dst_port":7181,"src_port":63749},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3b:78:65:88:f2","src_mac":"02:58:03:b5:e0:ea","eth_type":"ipv4","ip_proto":"udp","dst_ip":"119.132.187.49","src_ip":"64.126.28.113","dst_port":55140,"src_port":54562},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:0f:3f:29:ff:3f","src_mac":"02:84:15:7e:ba:76","eth_type":"ipv4","ip_proto":"udp","dst_ip":"22.252.95.136","src_ip":"67.230.131.201","dst_port":22779,"src_port":25569},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ec:63:4b:fb:27_src_mac_02:41:4d:26:ae:79_eth_type_ipv4_ip_proto_udp_dst_ip_90.165.25.11_src_ip_96.172.74.219_dst_port_7181_src_port_63749 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3b:78:65:88:f2_src_mac_02:58:03:b5:e0:ea_eth_type_ipv4_ip_proto_udp_dst_ip_119.132.187.49_src_ip_64.126.28.113_dst_port_55140_src_port_54562 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:0f:3f:29:ff:3f_src_mac_02:84:15:7e:ba:76_eth_type_ipv4_ip_proto_udp_dst_ip_22.252.95.136_src_ip_67.230.131.201_dst_port_22779_src_port_25569 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d99900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:ec:63:4b:fb:27_src_mac_02:41:4d:26:ae:79_eth_type_ipv4_ip_proto_udp_dst_ip_90.165.25.11_src_ip_96.172.74.219_dst_port_7181_src_port_63749 Tx 3621341 Rx 3909 Frames Delta 3617432 Loss 99.892 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:3b:78:65:88:f2_src_mac_02:58:03:b5:e0:ea_eth_type_ipv4_ip_proto_udp_dst_ip_119.132.187.49_src_ip_64.126.28.113_dst_port_55140_src_port_54562 Tx 3621341 Rx 6252 Frames Delta 3615089 Loss 99.827 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:0f:3f:29:ff:3f_src_mac_02:84:15:7e:ba:76_eth_type_ipv4_ip_proto_udp_dst_ip_22.252.95.136_src_ip_67.230.131.201_dst_port_22779_src_port_25569 Tx 3621342 Rx 9376 Frames Delta 3611966 Loss 99.741 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:ec:63:4b:fb:27_src_mac_02:41:4d:26:ae:79_eth_type_ipv4_ip_proto_udp_dst_ip_90.165.25.11_src_ip_96.172.74.219_dst_port_7181_src_port_63749 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:3b:78:65:88:f2_src_mac_02:58:03:b5:e0:ea_eth_type_ipv4_ip_proto_udp_dst_ip_119.132.187.49_src_ip_64.126.28.113_dst_port_55140_src_port_54562 INFO DENT:Logger.py:84 [DENT infrastructure 1] Veryfing rate for the stream swp33_dst_mac_02:0f:3f:29:ff:3f_src_mac_02:84:15:7e:ba:76_eth_type_ipv4_ip_proto_udp_dst_ip_22.252.95.136_src_ip_67.230.131.201_dst_port_22779_src_port_25569 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:17:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=228, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:17:37 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=228, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=228, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=228, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=228, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=228, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=228, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=228, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=228, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=228, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=228, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=228, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=228, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=228, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=228, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=228, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=228, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=228, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=228, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=228, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=228, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=228, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=228, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=228, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=228, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=228, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=228, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=228, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=228, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=228, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=228, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=228, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=228, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=228, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=228, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=228, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=228, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=228, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=228, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=228, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=228, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=228, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=228, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=228, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=228, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=228, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=228, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=228, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=228, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=228, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=228, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=228, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=228, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=228, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=228, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=228, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=228, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=228, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=228, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=228, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=228, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=228, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=228, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=228, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=228, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=228, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=228, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=228, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=228, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=228, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=228, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=228, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=228, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=228, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=228, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=228, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=228, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=228, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=110] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=228, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=228, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=228, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=228, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=228, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=228, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=228, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=228, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=228, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=228, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=228, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=228, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=228, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=228, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=228, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=228, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=228, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=228, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=228, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=228, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=228, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=228, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=228, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=228, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=228, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=228, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=228, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=228, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=228, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=228, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=228, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=228, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=142] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=228, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=228, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=144] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=228, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=228, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=146] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=228, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=228, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=148] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=228, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=228, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=150] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=228, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=228, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=228, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=151] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=152] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=152] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:17:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=228, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=153] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=154] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=154] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":250,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=228, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=155] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=228, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=156] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=228, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=156] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] 271.93
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-13835' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Local address: 172.17.0.5, port 59202 INFO asyncssh:logging.py:92 [conn=229] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=229] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=229] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:17:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=229, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=229, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=229, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=229, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=229, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:bc:d3:be:9e:6c","src_mac":"02:17:35:54:c4:d8","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"107.153.181.52","src_ip":"84.160.85.214","dst_port":18000,"src_port":26997},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:d3:be:9e:6c_src_mac_02:17:35:54:c4:d8_eth_type_ipv4_ip_proto_tcp_dst_ip_107.153.181.52_src_ip_84.160.85.214_dst_port_18000_src_port_26997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e045b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 7986902 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 43012 INFO asyncssh:logging.py:92 [conn=229, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=20] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddf0d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 18768908 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 83519 INFO asyncssh:logging.py:92 [conn=229, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e053f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 28667264 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 117879 INFO asyncssh:logging.py:92 [conn=229, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=28] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e079d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 38607801 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 167687 INFO asyncssh:logging.py:92 [conn=229, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:17:35:54:c4:d8 dst_mac 02:bc:d3:be:9e:6c src_ip 84.160.85.214 dst_ip 107.153.181.52 ip_proto tcp src_port 26997 dst_port 18000 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=229, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9a5c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 48746401 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 205954 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:22:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:22:09 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=229, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=229, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=229, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=229, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=229, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=229, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=229, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=229, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=229, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=229, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=229, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=229, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=229, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=229, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=229, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=229, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=229, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=229, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=229, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=229, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=229, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=229, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=229, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=229, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=229, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=229, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=229, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=229, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=229, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=229, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=229, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=229, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=229, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=229, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=229, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=229, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=229, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=229, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=229, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=229, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=229, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=229, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=229, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=229, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=229, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=229, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=229, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=229, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=229, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=229, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=229, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=229, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=229, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=229, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=229, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=229, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=229, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=229, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=229, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=229, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=229, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=229, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=229, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=229, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=229, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=229, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=229, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=229, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=229, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=229, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=229, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=229, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=229, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=229, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=229, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=229, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=126] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=229, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=229, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=229, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=229, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=229, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=229, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=229, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=134] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=229, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=229, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=136] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=229, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=229, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=138] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=229, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=229, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=140] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=229, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=229, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=142] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=229, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=229, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=144] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=229, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=229, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=146] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=229, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=229, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=148] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=229, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=229, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=150] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=229, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=229, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=152] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=229, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=229, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=154] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=229, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=229, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=156] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=229, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=229, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=158] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=229, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=229, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=160] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=229, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=229, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=162] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=229, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=229, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=164] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=229, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=229, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=166] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=229, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=229, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=229, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=167] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=168] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=168] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:22:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=229, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=169] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=170] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=170] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":251,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=229, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=171] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=229, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=172] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=229, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=172] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] 294.95
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14020' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Local address: 172.17.0.5, port 40816 INFO asyncssh:logging.py:92 [conn=230] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=230] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=230] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:22:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=230, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=230, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=230, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:be:09:d3:a2:a1","src_mac":"02:c7:b1:0f:5c:2d","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"114.49.141.248","src_ip":"33.141.237.105","dst_port":46602,"src_port":46066},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:be:09:d3:a2:a1_src_mac_02:c7:b1:0f:5c:2d_eth_type_ipv4_ip_proto_tcp_dst_ip_114.49.141.248_src_ip_33.141.237.105_dst_port_46602_src_port_46066 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 7987216 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 40820 INFO asyncssh:logging.py:92 [conn=230, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=20] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d217b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 18125501 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 81475 INFO asyncssh:logging.py:92 [conn=230, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 28427069 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 121893 INFO asyncssh:logging.py:92 [conn=230, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=28] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e06590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 38961443 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 159082 INFO asyncssh:logging.py:92 [conn=230, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 48853103 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 197890 INFO asyncssh:logging.py:92 [conn=230, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=34] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=36] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:c7:b1:0f:5c:2d dst_mac 02:be:09:d3:a2:a1 src_ip 33.141.237.105 dst_ip 114.49.141.248 ip_proto tcp src_port 46066 dst_port 46602 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=230, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e05270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 58758445 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 233926 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:27:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:27:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=230, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=230, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=230, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=230, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=230, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=230, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=230, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=230, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=230, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=230, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=230, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=230, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=230, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=230, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=230, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=230, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=230, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=230, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=72] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=230, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=230, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=74] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=230, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=230, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=76] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=230, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=230, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=78] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=230, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=230, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=80] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=230, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=230, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=82] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=230, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=230, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=84] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=230, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=230, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=86] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=230, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=230, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=88] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=230, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=230, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=90] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=230, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=230, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=92] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=230, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=230, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=94] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=230, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=230, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=96] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=230, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=230, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=98] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=230, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=230, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=100] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=230, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=230, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=102] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=230, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=230, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=104] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=230, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=230, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=106] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=230, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=230, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=108] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=230, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=230, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=110] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=230, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=230, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=112] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=230, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=230, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=114] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=230, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=230, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=116] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=230, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=230, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=118] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=230, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=230, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=120] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=230, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=230, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=122] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=230, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=230, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=124] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=230, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=230, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=126] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=230, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=230, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=230, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=230, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=230, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=230, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=230, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=230, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=230, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=230, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=230, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=230, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=230, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=230, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=230, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=230, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=230, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=230, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=230, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=230, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=230, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=230, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=230, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=230, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=230, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=230, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=230, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=230, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=230, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=230, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=230, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=230, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=230, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=230, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=230, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=162] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=230, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=230, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=164] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=230, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=230, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=166] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=230, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=230, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=168] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=230, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=230, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=170] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=230, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=230, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=230, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=171] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=172] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=172] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:27:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=230, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=173] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=174] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=174] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":252,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=230, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=175] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=230, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=176] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=230, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=176] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] 313.51
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14209' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Local address: 172.17.0.5, port 56668 INFO asyncssh:logging.py:92 [conn=231] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=231] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=231] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:27:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=231, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=231, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=231, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=231, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=231, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=231, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cabd90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 14049746 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 4769 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4769 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4769 INFO asyncssh:logging.py:92 [conn=231, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=18] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=20] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9a110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 16875184 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7592 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 7591 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 7591 INFO asyncssh:logging.py:92 [conn=231, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=22] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=231, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e04e20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 22061310 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 10010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 10010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 10010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:32:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=231, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:32:18 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=231, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=231, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=231, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=231, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=231, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=231, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=231, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=231, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=231, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=231, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=231, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=231, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=231, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=231, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=231, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=231, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=231, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=231, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=231, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=231, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=231, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=231, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=231, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=231, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=231, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=231, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=231, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=231, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=231, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=231, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=231, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=231, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=231, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=231, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=231, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=231, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=231, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=231, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=231, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=231, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=231, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=231, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=231, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=231, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=231, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=231, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=231, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=231, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=231, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=231, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=231, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=231, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=231, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=231, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=231, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=231, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=231, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=231, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=231, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=231, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=231, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=231, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=231, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=231, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=231, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=231, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=231, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=231, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=231, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=231, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=231, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=231, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=231, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=231, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=231, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=231, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=118] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=231, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=231, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=231, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=231, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=231, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=231, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=124] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=231, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=231, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=126] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=231, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=231, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=128] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=231, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=231, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=130] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=231, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=231, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=132] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=231, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=231, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=134] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=231, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=231, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=136] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=231, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=231, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=138] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=231, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=231, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=140] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=231, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=231, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=142] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=231, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=231, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=144] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=231, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=231, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=146] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=231, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=231, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=148] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=231, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=231, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=150] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=231, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=231, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=152] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=231, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=231, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=154] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=231, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=231, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=156] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=231, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=231, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=158] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=231, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=231, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=231, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=159] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=160] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=160] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:32:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=231, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=162] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=162] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":253,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=231, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=163] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=231, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=164] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=231, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=164] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] 327.48
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14386' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Local address: 172.17.0.5, port 58282 INFO asyncssh:logging.py:92 [conn=232] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=232] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=232] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:32:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=232, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=232, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=232, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=232, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=232, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 1284 ingress && tc qdisc add dev swp35 ingress_block 1284 ingress && tc qdisc add dev swp36 ingress_block 1284 ingress INFO asyncssh:logging.py:92 [conn=232, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=8] Command: tc qdisc add dev swp34 ingress_block 1284 ingress && tc qdisc add dev swp35 ingress_block 1284 ingress && tc qdisc add dev swp36 ingress_block 1284 ingress INFO asyncssh:logging.py:92 [conn=232, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=10] Command: tc filter add block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1284 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=12] Command: tc filter add block 1284 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1284 ingress INFO asyncssh:logging.py:92 [conn=232, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=14] Command: tc -j filter show block 1284 ingress INFO asyncssh:logging.py:92 [conn=232, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=232, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1284 ingress INFO asyncssh:logging.py:92 [conn=232, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=16] Command: tc -j filter show block 1284 ingress INFO asyncssh:logging.py:92 [conn=232, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9ab30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 4392 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 13153585 Rx 2997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 13153585 Rx 3026 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 13153585 Rx 3033 INFO asyncssh:logging.py:92 [conn=232, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=18] Command: tc filter delete block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=20] Command: tc filter add block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 7136 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 16912884 Rx 5043 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 16912884 Rx 5080 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 16912884 Rx 5089 INFO asyncssh:logging.py:92 [conn=232, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=22] Command: tc filter delete block 1284 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1284 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=24] Command: tc filter add block 1284 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cab0a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 9511 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 22346414 Rx 6700 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 22346414 Rx 6745 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 22346414 Rx 6756 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:37:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:37:45 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=232, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1284,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":1284,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":1284,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=232, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=232, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=232, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=232, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=232, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=232, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=232, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=232, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=232, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=232, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=232, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=232, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=232, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=232, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=232, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=232, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=232, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=232, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=232, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=232, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=232, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=232, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=232, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=232, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=232, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=232, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=232, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=232, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=232, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=232, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=232, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=232, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=232, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=232, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=232, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=232, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=232, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=232, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=232, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=232, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=232, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=232, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=232, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=232, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=232, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=232, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=232, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=232, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=232, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=232, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=232, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=232, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=232, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=232, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=232, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=232, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=232, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=232, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=232, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=232, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=232, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=232, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=232, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=232, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=232, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=232, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=120] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=232, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=232, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=124] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=232, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=124] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=232, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=128] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=232, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=128] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=232, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=130] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=232, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=232, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=132] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=232, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=232, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=134] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=232, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=232, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=136] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=232, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=232, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=138] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=232, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=232, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=140] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=232, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=232, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=142] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=232, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=232, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=144] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=232, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=232, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=146] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=232, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=232, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=148] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=232, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=232, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=150] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=232, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=232, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=152] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=232, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=232, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=154] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=232, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=232, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=156] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=232, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=232, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=158] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=232, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=232, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=160] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=232, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=232, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=162] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=232, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=163] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=164] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=164] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:37:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=232, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=165] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=166] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=166] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":254,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=232, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=167] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=232, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=168] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=232, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=168] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] 289.36
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14567' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Local address: 172.17.0.5, port 34444 INFO asyncssh:logging.py:92 [conn=233] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=233] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=233] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:37:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=233, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=233, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=233, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=233, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=233, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=233, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=233, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=233, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd74f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 12869231 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 4451 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 4451 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 4451 INFO asyncssh:logging.py:92 [conn=233, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=233, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=16] Command: tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=233, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=233, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=233, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d21d50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 16422760 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 7460 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 7460 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 7460
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:42:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=233, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:42:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=233, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=233, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=233, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=233, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=233, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=233, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=233, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=233, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=233, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=233, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=233, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=233, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=233, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=233, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=233, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=233, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=233, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=233, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=233, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=233, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=233, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=233, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=233, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=233, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=233, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=233, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=233, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=233, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=233, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=233, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=233, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=233, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=233, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=233, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=233, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=233, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=233, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=233, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=233, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=233, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=233, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=233, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=233, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=233, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=233, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=233, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=233, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=233, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=233, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=233, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=233, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=233, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=233, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=233, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=233, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=233, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=233, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=233, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=233, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=233, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=233, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=233, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=112] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=233, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=233, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=233, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=233, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=233, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=233, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=233, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=233, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=233, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=233, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=233, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=233, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=233, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=233, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=233, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=233, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=233, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=233, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=233, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=233, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=233, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=233, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=233, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=233, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=233, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=233, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=233, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=233, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=233, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=233, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=233, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=233, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=233, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=152] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=233, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=153] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=154] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=154] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:42:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=233, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=155] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=156] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=156] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":255,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=233, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=157] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=233, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=158] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=233, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=158] Channel closed DEBUG infra1:Logger.py:156
Passed functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] 318.12
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14738' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Local address: 172.17.0.5, port 60376 INFO asyncssh:logging.py:92 [conn=234] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=234] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=234] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:42:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=234, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=234, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=234, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=234, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=234, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 ingress_block 1512 ingress && tc qdisc add dev swp35 ingress_block 1512 ingress && tc qdisc add dev swp36 ingress_block 1512 ingress INFO asyncssh:logging.py:92 [conn=234, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=8] Command: tc qdisc add dev swp34 ingress_block 1512 ingress && tc qdisc add dev swp35 ingress_block 1512 ingress && tc qdisc add dev swp36 ingress_block 1512 ingress INFO asyncssh:logging.py:92 [conn=234, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1512 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1512 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=234, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=10] Command: tc filter add block 1512 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1512 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=234, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1512 ingress INFO asyncssh:logging.py:92 [conn=234, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=12] Command: tc -j filter show block 1512 ingress INFO asyncssh:logging.py:92 [conn=234, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=234, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc -j filter show block 1512 ingress INFO asyncssh:logging.py:92 [conn=234, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=14] Command: tc -j filter show block 1512 ingress INFO asyncssh:logging.py:92 [conn=234, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d23790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 4531 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 13661225 Rx 3069 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 13661225 Rx 3129 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 13661225 Rx 3133 INFO asyncssh:logging.py:92 [conn=234, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc filter delete block 1512 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=234, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=16] Command: tc filter delete block 1512 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=234, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc filter add block 1512 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=234, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=18] Command: tc filter add block 1512 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=234, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3ecb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 7050 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 17397799 Rx 5141 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 17397799 Rx 5196 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 17397799 Rx 5205
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:47:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=234, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:47:53 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=234, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=234, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=234, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1512,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":1512,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":1512,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=234, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=234, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=234, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=234, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=234, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=234, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=234, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=234, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=234, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=234, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=234, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=234, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=234, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=234, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=234, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=234, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=234, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=234, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=234, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=234, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=234, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=234, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=234, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=234, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=234, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=234, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=234, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=234, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=234, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=234, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=234, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=234, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=234, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=234, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=234, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=234, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=234, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=234, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=234, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=234, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=234, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=234, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=234, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=234, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=234, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=234, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=234, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=234, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=234, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=234, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=234, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=234, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=234, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=234, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=234, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=234, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=234, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=234, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=234, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=234, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=234, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=234, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=234, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=234, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=234, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=234, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=234, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=234, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=234, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=234, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=234, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=234, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=234, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=234, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=234, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=234, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=234, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=234, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=234, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=234, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=118] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=234, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=118] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=234, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=234, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=234, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=122] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=234, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=122] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=234, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=234, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=234, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=234, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=234, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=234, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=234, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=234, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=234, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=234, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=234, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=234, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=234, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=234, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=234, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=234, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=234, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=234, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=234, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=234, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=234, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=234, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=234, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=234, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=234, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=148] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=234, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=234, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=150] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=234, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=234, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=152] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=234, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=234, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=154] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=234, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=234, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=156] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=234, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=234, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=234, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=157] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=158] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:47:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=234, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=159] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=160] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":256,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=234, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=161] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=234, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=162] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=234, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=162] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality 556.00
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14912' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Local address: 172.17.0.5, port 58086 INFO asyncssh:logging.py:92 [conn=235] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=235] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=235] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:47:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=235, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=235, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=235, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=235, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=235, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cbae30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 18746 Rx 18746 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 18746 Rx 18746 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 18746 Rx 18746 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 18746 Rx 18746 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb9240>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 18787 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 18787 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 18787 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 18787 Rx 18787 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb8eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 18825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 18825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 18825 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 18825 Rx 18825 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:57:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=235, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:57:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=235, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=235, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=235, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":257,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=235, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=16] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic 356.62
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14938' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Local address: 172.17.0.5, port 53558 INFO asyncssh:logging.py:92 [conn=236] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=236] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=236] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 08:57:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=236, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=236, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=236, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cbac50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 13985 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 13985 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 13985 Rx 13985 Loss 0.000 INFO asyncssh:logging.py:92 [conn=236, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=236, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=10] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=236, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cba590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 6992 Rx 6992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 6992 Rx 6992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 6992 Rx 6992 Loss 0.000 INFO asyncssh:logging.py:92 [conn=236, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=236, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=236, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e06ce0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 5823 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 5823 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 5823 Rx 5823 Loss 0.000 INFO asyncssh:logging.py:92 [conn=236, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=236, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=14] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=236, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 6942 Rx 6942 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 6942 Rx 6942 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 6942 Rx 6942 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:03:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=236, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:03:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=236, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":258,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=236, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses 617.61
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-14970' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Local address: 172.17.0.5, port 35440 INFO asyncssh:logging.py:92 [conn=237] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=237] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=237] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:03:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=237, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=237, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=237, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb96c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 75103 Rx 75103 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 75103 Rx 75103 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 75103 Rx 75103 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 75103 Rx 75103 Loss 0.000 INFO asyncssh:logging.py:92 [conn=237, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=10] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cbae00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 75012 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 75012 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 75012 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 75012 Rx 75012 Loss 0.000 INFO asyncssh:logging.py:92 [conn=237, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=12] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920b6680>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 74968 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 74968 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 74968 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 74968 Rx 74968 Loss 0.000 INFO asyncssh:logging.py:92 [conn=237, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=237, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=14] Channel closed DEBUG infra1:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:13:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=237, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:13:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=237, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":259,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=237, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control 291.29
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15002' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Local address: 172.17.0.5, port 42528 INFO asyncssh:logging.py:92 [conn=238] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=238] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=238] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:13:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=238, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=238, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=238, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=238, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cba6b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5145607 Rx 2204977 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2204978 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2204978 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 2541232 Rx 1314412 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb8910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 675952 Rx 173273 Loss 74.366 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 4429637 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 1445785 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_4 SIP-DIP N/A Tx 1497792 Rx 1307586 Loss 12.699 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_5 SIP-DIP N/A Tx 996139 Rx 864359 Loss 13.229 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_6 SIP-DIP N/A Tx 741560 Rx 635103 Loss 14.356 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=238, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=26] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:18:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=238, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:18:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=238, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":260,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=238, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control 278.99
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15046' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Local address: 172.17.0.5, port 33298 INFO asyncssh:logging.py:92 [conn=239] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=239] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=239] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:18:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=239, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=239, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=239, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=10] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=12] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=14] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=16] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592023340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1406350 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2588531 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1495328 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8592022230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 1645714 Rx 120841 Loss 92.657 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 1878065 Rx 1008447 Loss 46.304 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 538325 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_4 SIP-DIP N/A Tx 612713 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=239, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=26] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:22:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:22:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=239, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":261,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=239, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag 520.75
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15091' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Local address: 172.17.0.5, port 60592 INFO asyncssh:logging.py:92 [conn=240] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=240] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=240] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:22:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=240, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=240, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=240, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=240, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=240, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=240, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=240, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=8] Command: ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=240, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=240, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=16] Command: ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=240, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=240, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb9720>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 18800 Rx 18800 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 18800 Rx 18800 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb8370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 18718 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 18718 Rx 18718 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cba3b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 18789 Rx 18789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 18789 Rx 18789 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:31:35 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=240, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=240, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=240, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":262,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":263,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":264,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":81.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:58","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=240, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=240, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=240, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=240, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=240, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:31:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=240, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:31:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=240, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":264,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=240, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule 259.49
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15140' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Local address: 172.17.0.5, port 41260 INFO asyncssh:logging.py:92 [conn=241] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=241] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=241] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:31:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=241, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=241, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=241, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=241, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=10] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=241, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=241, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=12] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e06a10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridgeStream SIP-DIP N/A Tx 17782 Rx 17782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 17782 Rx 17782 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=241, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=241, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=14] Command: tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e078e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI bridgeStream SIP-DIP N/A Tx 18003 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=241, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:35:53 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=241, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=241, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=241, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=241, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=241, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=241, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=20] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=241, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=241, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=22] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=241, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=241, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=241, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=40] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=241, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=241, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=42] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=241, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=241, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=44] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=241, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=241, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=46] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=241, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=241, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=48] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=241, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=241, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=50] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=241, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=241, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=52] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=241, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=241, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=54] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=241, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=241, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=56] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=241, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=241, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=58] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=241, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=241, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=60] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=241, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=241, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=62] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=241, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=241, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=64] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=241, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=241, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=66] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=241, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=241, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=68] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=241, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=241, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=70] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=241, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=241, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=72] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=241, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=241, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=74] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=241, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=241, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=76] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=241, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=241, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=78] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=241, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=241, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=80] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=241, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=241, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=82] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=241, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=241, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=84] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=241, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=241, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=86] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=241, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=241, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=88] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=241, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=241, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=90] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=241, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=241, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=92] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=241, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=241, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=94] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=241, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=241, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=96] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=241, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=241, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=98] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=241, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=241, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=100] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=241, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=241, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=102] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=241, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=241, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=104] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=241, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=241, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=106] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=241, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=106] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=241, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=108] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=241, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=241, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=110] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=241, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=241, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=112] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=241, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=241, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=114] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=241, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=241, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=116] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=241, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=241, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=118] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=241, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=241, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=120] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=241, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=241, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=122] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=241, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=241, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=124] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=241, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=241, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=126] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=241, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=241, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=128] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=241, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=241, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=130] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=241, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=241, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=132] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=241, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=241, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=134] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=241, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=241, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=136] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=241, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=241, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=138] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=241, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=241, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=140] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=241, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=241, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=142] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=241, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=241, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=144] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=241, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=241, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=241, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=146] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=241, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=241, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=147] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=148] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=148] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:35:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=241, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=149] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=150] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:35:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=241, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=151] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=152] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":265,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=241, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=153] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=154] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=154] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control 248.29
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15306' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Local address: 172.17.0.5, port 41490 INFO asyncssh:logging.py:92 [conn=242] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=242] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=242] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:35:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=242, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=242, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=242, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=242, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=242, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=242, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=242, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d23670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2925455 Rx 2589186 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 2589186 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2589186 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 3210783 Rx 370684 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d21b10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 672069 Rx 83760 Loss 87.537 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 2281351 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 925215 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_4 SIP-DIP N/A Tx 660344 Rx 533384 Loss 19.226 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_5 SIP-DIP N/A Tx 1854550 Rx 1486039 Loss 19.871 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_6 SIP-DIP N/A Tx 1742036 Rx 1412925 Loss 18.892 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=242, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=242, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=242, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=242, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=242, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=26] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:40:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:40:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=242, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":266,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=242, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership 592.93
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15350' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Local address: 172.17.0.5, port 60410 INFO asyncssh:logging.py:92 [conn=243] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=243] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=243] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:40:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=243, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=243, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=243, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=243, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=243, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=10] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=243, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=12] Command: bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=243, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=14] Command: bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=243, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=243, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=243, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp34","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp35","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp36","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddd4b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_0 SIP-DIP N/A Tx 13745 Rx 13745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:4 TI stream_1 SIP-DIP N/A Tx 13745 Rx 13745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2 SIP-DIP N/A Tx 13745 Rx 13745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI stream_3 SIP-DIP N/A Tx 13745 Rx 13745 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d5f220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_0 SIP-DIP N/A Tx 13815 Rx 13815 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI stream_1 SIP-DIP N/A Tx 13815 Rx 13815 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2 SIP-DIP N/A Tx 13815 Rx 13815 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI stream_3 SIP-DIP N/A Tx 13815 Rx 13815 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d73010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_0 SIP-DIP N/A Tx 13761 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI stream_1 SIP-DIP N/A Tx 13761 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2 SIP-DIP N/A Tx 13761 Rx 13761 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI stream_3 SIP-DIP N/A Tx 13761 Rx 13761 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:49:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=243, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:49:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=243, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":267,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=243, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=243, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge 274.99
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15384' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete It took 0:00:00.032720 to verify ports presence. It took 0:00:00.094655 to set entities to 'UP' state.
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Local address: 172.17.0.5, port 40626 INFO asyncssh:logging.py:92 [conn=244] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=244] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=244] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:49:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=244, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=1] Channel closed DEBUG infra1:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=244, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=244, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=2] Channel closed DEBUG infra1:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether ca:0c:df:1a:0c:cd txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 108 bytes 9853 (9.6 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 108 bytes 9853 (9.6 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.46 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::923c:b3ff:fe8b:ef34 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:34 txqueuelen 2048 (Ethernet) RX packets 74771 bytes 7074874 (6.7 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 66287 bytes 11412867 (10.8 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:37 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:38 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:39 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3b txqueuelen 1000 (Ethernet) RX packets 468960951 bytes 43519240051 (40.5 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 699925324 bytes 57459504748 (53.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3c txqueuelen 1000 (Ethernet) RX packets 699925324 bytes 57459504748 (53.5 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 468960963 bytes 43519241587 (40.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3d txqueuelen 1000 (Ethernet) RX packets 658392587 bytes 55940041141 (52.0 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 705909687 bytes 59050313380 (54.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3e txqueuelen 1000 (Ethernet) RX packets 705909686 bytes 59050313252 (54.9 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 658392600 bytes 55940042805 (52.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:3f txqueuelen 1000 (Ethernet) RX packets 563967878 bytes 49754478272 (46.3 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 596745770 bytes 49092512594 (45.7 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:40 txqueuelen 1000 (Ethernet) RX packets 596745771 bytes 49092512722 (45.7 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 563967889 bytes 49754479680 (46.3 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:41 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:42 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:43 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:44 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:45 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:46 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:47 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:48 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:49 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:4f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:50 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:52 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:53 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:54 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:55 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:56 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef57 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:57 txqueuelen 1000 (Ethernet) RX packets 395801490 bytes 137240648921 (127.8 GiB) RX errors 0 dropped 28 overruns 0 frame 13760 TX packets 766934449 bytes 75355435745 (70.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef58 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:58 txqueuelen 1000 (Ethernet) RX packets 100365417 bytes 29626162041 (27.5 GiB) RX errors 0 dropped 24 overruns 0 frame 13759 TX packets 807737692 bytes 100926525252 (93.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef59 prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:59 txqueuelen 1000 (Ethernet) RX packets 65272836 bytes 21785830472 (20.2 GiB) RX errors 0 dropped 24 overruns 0 frame 1 TX packets 597163937 bytes 86685963396 (80.7 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::923c:b3ff:fe8b:ef5a prefixlen 64 scopeid 0x20<link> ether 90:3c:b3:8b:ef:5a txqueuelen 1000 (Ethernet) RX packets 56358821 bytes 19031961737 (17.7 GiB) RX errors 0 dropped 26 overruns 0 frame 0 TX packets 554936702 bytes 64444355731 (60.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:5f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:60 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:61 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:62 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:63 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:64 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:65 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:66 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:67 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:68 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:69 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 90:3c:b3:8b:ef:6a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=244, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=244, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=244, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":268,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=244, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=244, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85920e0be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1 SIP-DIP N/A Tx 13986 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_2 SIP-DIP N/A Tx 13986 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_3 SIP-DIP N/A Tx 13986 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:54:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:54:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=244, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":268,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=20] Channel closed DEBUG infra1:Logger.py:156
Passed functional/port_isolation/test_port_isolation_vlan_interfaces.py::test_port_isolation_vlan_interfaces 280.33
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_vlan_interfaces">Starting testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-15414' coro=<test_port_isolation_vlan_interfaces() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Local address: 172.17.0.5, port 46468 INFO asyncssh:logging.py:92 [conn=245] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=245] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=245] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:54:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=245, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=245, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=245, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=245, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=245, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=10] Command: bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddc820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI stream_1_swp1->swp4 SIP-DIP N/A Tx 18799 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI stream_1_swp1->swp3 SIP-DIP N/A Tx 18799 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI stream_1_swp1->swp2 SIP-DIP N/A Tx 18799 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI stream_2_swp3->swp4 SIP-DIP N/A Tx 18799 Rx 18799 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI stream_2_swp3->swp2 SIP-DIP N/A Tx 18799 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI stream_2_swp3->swp1 SIP-DIP N/A Tx 18799 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:59:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:59:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=245, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":269,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=245, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] 390.97
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-15443' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Local address: 172.17.0.5, port 37796 INFO asyncssh:logging.py:92 [conn=246] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=246] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=246] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:59:13 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 09:59:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=246, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=246, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=246, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3075 && bridge vlan add dev swp34 vid 3075 && bridge vlan add dev swp35 vid 3075 INFO asyncssh:logging.py:92 [conn=246, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=10] Command: bridge vlan add dev swp33 vid 3075 && bridge vlan add dev swp34 vid 3075 && bridge vlan add dev swp35 vid 3075 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=12] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=246, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=14] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=246, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3075, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3075, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3075, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11474561,"packets":66801,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1260336,"packets":10957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1337295,"packets":11530,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1738747,"packets":15238,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7138183,"packets":29076,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2162702,"packets":17564,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2067446,"packets":17380,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3410,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7804,"packets":44,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1937865,"packets":16423,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11478975,"packets":66826,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1260336,"packets":10957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1337295,"packets":11530,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1743035,"packets":15260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7138309,"packets":29079,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2163216,"packets":17566,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2067960,"packets":17382,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3924,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1710054400,"packets":3339950,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2565398016,"packets":5010543,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8872,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1938345,"packets":16425,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddf310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1669975 Rx 1669975 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1669975 Rx 1669975 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 3339950 Rx 2462930 Loss 26.258 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 3339950 Rx 2547613 Loss 23.723 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11483851,"packets":66856,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1260336,"packets":10957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1337295,"packets":11530,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1747235,"packets":15282,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7138985,"packets":29087,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2163800,"packets":17569,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2068474,"packets":17384,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4438,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1710054400,"packets":3339950,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2565398016,"packets":5010543,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10452,"packets":60,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1938825,"packets":16427,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11488275,"packets":66884,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1260336,"packets":10957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1341117,"packets":11553,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1747753,"packets":15285,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7139069,"packets":29089,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2164314,"packets":17571,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2068988,"packets":17386,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4952,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1626815488,"packets":3177374,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3336870912,"packets":6517326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3379113472,"packets":6599831,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11520,"packets":64,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1939305,"packets":16429,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddf700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1588688 Rx 1588688 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1588688 Rx 1588688 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 3177374 Rx 804858 Loss 74.669 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 3177374 Rx 784430 Loss 75.312 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1588687 Rx 1588687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1588687 Rx 1588687 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=246, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=25] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=246, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=26] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:05:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=246, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":270,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=246, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:05:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:05:41 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=246, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=246, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=246, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=246, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=246, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=246, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=246, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=246, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=246, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=246, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=246, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=246, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=246, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=246, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=246, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=246, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=246, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=246, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=246, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=246, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=246, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=246, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=246, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=246, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=246, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=246, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=246, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=246, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=246, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=246, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=246, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=246, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=246, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=246, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=246, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=246, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=246, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=246, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=246, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=246, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=246, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=246, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=246, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=246, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=246, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=246, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=246, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=246, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=246, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=246, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=246, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=246, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=246, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=246, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=246, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=246, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=246, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=246, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=246, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=246, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=246, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=246, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=246, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=246, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=246, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=246, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=246, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=246, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=246, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=246, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=246, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=246, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=246, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=246, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=246, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=246, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=246, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=246, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=246, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=128] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=130] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=132] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=134] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=136] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=138] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=138] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=140] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=140] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=142] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=142] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=144] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=246, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=246, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=144] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=246, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=246, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=146] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=246, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=246, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=148] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=246, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=246, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=150] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=246, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=246, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=152] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=246, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=246, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=154] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=246, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=246, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=156] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=246, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=246, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=158] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=246, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=246, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=160] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=246, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=246, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=162] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=246, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=246, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=164] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=246, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=246, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=166] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=246, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=246, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=168] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=246, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=246, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=170] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=246, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=246, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=172] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=246, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=246, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=174] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=246, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=246, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=176] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=246, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=246, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=246, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=178] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=246, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=246, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] 385.30
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-15636' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Local address: 172.17.0.5, port 55778 INFO asyncssh:logging.py:92 [conn=247] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=247] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=247] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:05:44 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:05:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=247, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=247, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=247, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 2:0 7:1 22:2 30:3 11:4 32:5 51:6 14:7&& dcb app add dev swp34 dscp-prio 2:0 7:1 22:2 30:3 11:4 32:5 51:6 14:7 INFO asyncssh:logging.py:92 [conn=247, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=8] Command: dcb app add dev swp33 dscp-prio 2:0 7:1 22:2 30:3 11:4 32:5 51:6 14:7&& dcb app add dev swp34 dscp-prio 2:0 7:1 22:2 30:3 11:4 32:5 51:6 14:7 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=247, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=247, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[2,0],[7,1],[11,4],[14,7],[22,2],[30,3],[32,5],[51,6]]} INFO asyncssh:logging.py:92 [conn=247, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=247, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=247, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[2,0],[7,1],[11,4],[14,7],[22,2],[30,3],[32,5],[51,6]]} INFO asyncssh:logging.py:92 [conn=247, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=14] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=247, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=16] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=247, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11624592,"packets":68157,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1266097,"packets":11010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1385309,"packets":11957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1759491,"packets":15380,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7213695,"packets":29810,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2167628,"packets":17597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2072152,"packets":17411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2636,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6006,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":690,"packets":7,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1940985,"packets":16436,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11628730,"packets":68180,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1266097,"packets":11010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1385309,"packets":11957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1762291,"packets":15398,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7215033,"packets":29815,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2168178,"packets":17600,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2072702,"packets":17414,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3186,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2441669120,"packets":4768885,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7166,"packets":55,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1627575986,"packets":3178865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1941465,"packets":16438,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e05cf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1589429 Rx 1589429 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1589429 Rx 1589429 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 3178857 Rx 2331986 Loss 26.641 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 3178857 Rx 2436899 Loss 23.340 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11633978,"packets":68212,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1266097,"packets":11010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1385309,"packets":11957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1766647,"packets":15420,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7215925,"packets":29825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2168898,"packets":17603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2073422,"packets":17417,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3906,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2441669120,"packets":4768885,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9178,"packets":69,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1627575986,"packets":3178865,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1941945,"packets":16440,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11638214,"packets":68236,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1266097,"packets":11010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1385309,"packets":11957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1770799,"packets":15442,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7216009,"packets":29827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2169378,"packets":17605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2073662,"packets":17418,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4146,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1709772800,"packets":3339400,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3296872448,"packets":6439204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9678,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3337348786,"packets":6518265,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1942425,"packets":16442,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd7d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1669700 Rx 1669700 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1669700 Rx 1669700 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 3339400 Rx 773074 Loss 76.850 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 3339400 Rx 897245 Loss 73.132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1669700 Rx 1669700 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:3 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1669700 Rx 1669700 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=247, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=27] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=247, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=28] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=247, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:12:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=247, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":271,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=247, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=35] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=36] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:12:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:12:06 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=247, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=247, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=247, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=247, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=247, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=247, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=247, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=247, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=247, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=247, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=62] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=247, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=247, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=64] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=247, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=247, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=66] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=247, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=247, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=68] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=247, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=247, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=70] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=247, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=247, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=72] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=247, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=247, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=74] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=247, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=247, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=76] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=247, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=247, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=78] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=247, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=247, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=80] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=247, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=247, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=82] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=247, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=247, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=84] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=247, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=247, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=86] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=247, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=247, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=88] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=247, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=247, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=90] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=247, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=247, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=92] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=247, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=247, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=94] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=247, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=247, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=96] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=247, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=247, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=98] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=247, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=247, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=100] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=247, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=247, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=102] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=247, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=247, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=104] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=247, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=247, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=106] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=247, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=247, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=108] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=247, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=247, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=110] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=247, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=247, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=112] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=247, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=247, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=114] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=247, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=247, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=116] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=247, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=247, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=118] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=247, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=247, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=120] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=247, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=247, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=122] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=247, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=247, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=124] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=247, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=247, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=126] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=247, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=247, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=247, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=247, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=247, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=132] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=134] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=136] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=138] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=138] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=140] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=140] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=142] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=142] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=144] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=144] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=146] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=247, chan=146] Received exit status 1 INFO asyncssh:logging.py:92 [conn=247, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=146] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=247, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=247, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=148] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=247, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=247, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=150] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=247, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=247, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=152] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=247, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=247, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=154] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=247, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=247, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=156] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=247, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=247, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=158] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=247, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=247, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=160] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=247, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=247, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=162] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=247, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=247, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=164] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=247, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=247, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=166] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=247, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=247, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=168] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=247, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=247, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=170] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=247, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=247, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=172] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=247, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=247, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=174] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=247, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=247, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=176] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=247, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=247, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=178] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=247, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=247, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=179] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=247, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=180] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=247, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=247, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=180] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_default_prio.py::test_qos_default_prio 847.18
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-15831' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Local address: 172.17.0.5, port 51672 INFO asyncssh:logging.py:92 [conn=248] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=248] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=248] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:12:09 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:12:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=248, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1529 pvid untagged && bridge vlan add dev swp34 vid 1529 pvid untagged && bridge vlan add dev swp35 vid 1529 pvid && bridge vlan add dev swp36 vid 1529 pvid INFO asyncssh:logging.py:92 [conn=248, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=8] Command: bridge vlan add dev swp33 vid 1529 pvid untagged && bridge vlan add dev swp34 vid 1529 pvid untagged && bridge vlan add dev swp35 vid 1529 pvid && bridge vlan add dev swp36 vid 1529 pvid INFO asyncssh:logging.py:92 [conn=248, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 50:0 36:1 58:2 49:3 47:4 20:5 7:6 42:7 INFO asyncssh:logging.py:92 [conn=248, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=10] Command: dcb app add dev swp33 dscp-prio 50:0 36:1 58:2 49:3 47:4 20:5 7:6 42:7 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=248, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=12] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=248, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[7,6],[20,5],[36,1],[42,7],[47,4],[49,3],[50,0],[58,2]]} INFO asyncssh:logging.py:92 [conn=248, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=14] Command: tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=248, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=16] Command: tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=248, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for learn INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11775653,"packets":69516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1284766,"packets":11181,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1425067,"packets":12332,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7243431,"packets":30086,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4815,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11098,"packets":60,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4285,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9998,"packets":56,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4285,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10318,"packets":61,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4550,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10868,"packets":63,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11780447,"packets":69543,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1289476,"packets":11206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1425067,"packets":12332,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7243515,"packets":30088,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5080,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63872,"packets":164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4550,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9069364,"packets":17751,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529512,"packets":8850,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4550,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9069684,"packets":17756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529512,"packets":8850,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4815,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9070234,"packets":17758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529512,"packets":8850,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591f3e110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8847 Rx 8847 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8846 Rx 8846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO asyncssh:logging.py:92 [conn=248, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=23] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=248, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=24] Command: dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=248, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11786195,"packets":69579,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1295224,"packets":11242,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1425067,"packets":12332,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7243515,"packets":30088,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5080,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63872,"packets":164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4550,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9069364,"packets":17751,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529512,"packets":8850,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4550,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9069684,"packets":17756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529512,"packets":8850,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4815,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529664,"packets":8847,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9070234,"packets":17758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529512,"packets":8850,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4529152,"packets":8846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11791443,"packets":69609,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1299374,"packets":11263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1425067,"packets":12332,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7244613,"packets":30097,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5610,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117196,"packets":270,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5080,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13587840,"packets":26578,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13563752,"packets":26495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5080,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13588160,"packets":26583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13563752,"packets":26495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5345,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13588710,"packets":26585,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13563240,"packets":26494,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cbadd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO asyncssh:logging.py:92 [conn=248, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=29] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=30] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=31] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 50:0 36:1 58:2 49:3 47:4 20:5 7:6 42:7 INFO asyncssh:logging.py:92 [conn=248, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=32] Command: dcb app add dev swp33 dscp-prio 50:0 36:1 58:2 49:3 47:4 20:5 7:6 42:7 INFO asyncssh:logging.py:92 [conn=248, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=33] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=248, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=34] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=248, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=34] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[7,6],[20,5],[36,1],[42,7],[47,4],[49,3],[50,0],[58,2]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11801889,"packets":69686,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1305782,"packets":11313,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1425543,"packets":12334,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7248175,"packets":30122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6935,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":120714,"packets":292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6405,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13591358,"packets":26600,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13563752,"packets":26495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6405,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13591934,"packets":26609,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13563752,"packets":26495,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6670,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9047040,"packets":17670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13592484,"packets":26611,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13563240,"packets":26494,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9046528,"packets":17669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11807223,"packets":69715,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1308874,"packets":11335,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1426019,"packets":12336,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7249941,"packets":30127,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7200,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":175024,"packets":399,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6670,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":124832612,"packets":243869,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":27469160,"packets":53654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6670,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":124832164,"packets":243876,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":27467624,"packets":53651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6935,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":124832714,"packets":243878,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":27467112,"packets":53650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 35 Rx 35 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 35 Rx 35 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 35 Rx 35 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 81476 Rx 81476 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 81475 Rx 81475 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 81475 Rx 81475 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 81476 Rx 81476 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 81475 Rx 81475 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 81475 Rx 81475 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9052 Rx 9052 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 9053 Rx 9053 Loss 0.000 INFO asyncssh:logging.py:92 [conn=248, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=39] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 5&& dcb app add dev swp34 default-prio 5&& dcb app add dev swp35 default-prio 5&& dcb app add dev swp36 default-prio 5 INFO asyncssh:logging.py:92 [conn=248, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=40] Command: dcb app add dev swp33 default-prio 5&& dcb app add dev swp34 default-prio 5&& dcb app add dev swp35 default-prio 5&& dcb app add dev swp36 default-prio 5 INFO asyncssh:logging.py:92 [conn=248, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=41] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=42] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=42] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=248, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=43] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=44] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=248, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=45] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=46] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=46] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=248, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=47] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=48] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[5]} INFO asyncssh:logging.py:92 [conn=248, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11818607,"packets":69807,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1320216,"packets":11426,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1426019,"packets":12336,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7249983,"packets":30128,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7465,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":175574,"packets":401,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6935,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":124833162,"packets":243871,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":27469160,"packets":53654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6935,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":124832714,"packets":243878,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":27467624,"packets":53651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7200,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22952448,"packets":44829,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":124833264,"packets":243880,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":27467112,"packets":53650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":22951936,"packets":44828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11823755,"packets":69835,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1324254,"packets":11445,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1426495,"packets":12338,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7250617,"packets":30135,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7995,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":176674,"packets":405,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52224,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7465,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":138383318,"packets":270338,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":41016680,"packets":80114,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":131336192,"packets":256516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7465,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":138382870,"packets":270345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":41015144,"packets":80111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":131336192,"packets":256516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7730,"packets":32,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":138383420,"packets":270347,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":41014632,"packets":80110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":131335168,"packets":256514,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e05930>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79384 Rx 79384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79384 Rx 79384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79383 Rx 79383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79384 Rx 79384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79384 Rx 79384 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79383 Rx 79383 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO asyncssh:logging.py:92 [conn=248, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=53] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=248, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=54] Command: dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=248, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=55] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=56] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=56] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=248, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=57] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=58] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=58] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=248, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=59] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=60] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=60] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=248, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=61] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=62] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=62] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5]} INFO asyncssh:logging.py:92 [conn=248, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11835615,"packets":69931,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1334038,"packets":11533,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1426733,"packets":12339,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7252455,"packets":30142,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7995,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":177224,"packets":407,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52224,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7730,"packets":32,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":138383868,"packets":270340,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":41016680,"packets":80114,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":131336192,"packets":256516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7730,"packets":32,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":138383420,"packets":270347,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":41015144,"packets":80111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":131336192,"packets":256516,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7995,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36499456,"packets":71288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":36501504,"packets":71292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":138383970,"packets":270349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":41014632,"packets":80110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":131335168,"packets":256514,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=66] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11840221,"packets":69954,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1338364,"packets":11554,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1426971,"packets":12340,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7252497,"packets":30143,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8525,"packets":35,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":177774,"packets":409,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104448,"packets":204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7995,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":151921186,"packets":296781,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":54551912,"packets":106550,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239619072,"packets":468006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7995,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":151920738,"packets":296788,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":54550376,"packets":106547,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239619072,"packets":468006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8260,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":151921288,"packets":296790,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":54549864,"packets":106546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239618048,"packets":468004,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd69b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79309 Rx 79309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79309 Rx 79309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79309 Rx 79309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79309 Rx 79309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79309 Rx 79309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79309 Rx 79309 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8812 Rx 8812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8813 Rx 8813 Loss 0.000 INFO asyncssh:logging.py:92 [conn=248, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=67] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 default-prio 6&& dcb app add dev swp34 default-prio 6&& dcb app add dev swp35 default-prio 6&& dcb app add dev swp36 default-prio 6 INFO asyncssh:logging.py:92 [conn=248, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=68] Command: dcb app add dev swp33 default-prio 6&& dcb app add dev swp34 default-prio 6&& dcb app add dev swp35 default-prio 6&& dcb app add dev swp36 default-prio 6 INFO asyncssh:logging.py:92 [conn=248, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=69] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=70] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=70] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=248, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=71] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=72] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=72] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=248, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=73] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=74] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=248, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=75] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=76] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=248, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=76] Channel closed DEBUG infra1:Logger.py:156 {"default_prio":[4,5,6]} INFO asyncssh:logging.py:92 [conn=248, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11851511,"packets":70049,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1342544,"packets":11580,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1427209,"packets":12341,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822389,"packets":15917,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7259369,"packets":30211,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8790,"packets":36,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":178324,"packets":411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104448,"packets":204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8260,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":151921736,"packets":296783,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":54551912,"packets":106550,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239619072,"packets":468006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8260,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":151921288,"packets":296790,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":54550376,"packets":106547,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239619072,"packets":468006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8525,"packets":35,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50034688,"packets":97724,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50036736,"packets":97728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":151921838,"packets":296792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":54549864,"packets":106546,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239618048,"packets":468004,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=80] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11856605,"packets":70080,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1343020,"packets":11582,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1427209,"packets":12341,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822475,"packets":15918,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7263901,"packets":30239,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9320,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52224,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":179424,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104448,"packets":204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8790,"packets":36,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":158423552,"packets":309421,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":165471892,"packets":323250,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68099432,"packets":133010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253168128,"packets":494469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8790,"packets":36,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":158420992,"packets":309416,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":165471444,"packets":323257,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68097896,"packets":133007,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253168128,"packets":494469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9055,"packets":37,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":158420992,"packets":309416,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":165471994,"packets":323259,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68097384,"packets":133006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253167104,"packets":494467,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d23400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79387 Rx 79387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79386 Rx 79386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79386 Rx 79386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79387 Rx 79387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79386 Rx 79386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79386 Rx 79386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8820 Rx 8820 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8821 Rx 8821 Loss 0.000 INFO asyncssh:logging.py:92 [conn=248, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=81] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=82] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=83] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=248, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=84] Command: dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=248, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=84] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=248, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=85] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=248, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=86] Command: dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=248, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=86] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=248, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=87] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=248, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=88] Command: dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=248, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=88] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=248, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=89] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=90] Command: dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=90] Channel closed DEBUG infra1:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=248, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=92] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11868061,"packets":70174,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1345574,"packets":11605,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1430341,"packets":12371,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822475,"packets":15918,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7269671,"packets":30280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9320,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52224,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":179424,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104448,"packets":204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8790,"packets":36,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":158423552,"packets":309421,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":165471892,"packets":323250,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68099432,"packets":133010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253168128,"packets":494469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":8790,"packets":36,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":158420992,"packets":309416,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":165471444,"packets":323257,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68097896,"packets":133007,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253168128,"packets":494469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9055,"packets":37,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":158420992,"packets":309416,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":165471994,"packets":323259,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68097384,"packets":133006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253167104,"packets":494467,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=94] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":11871893,"packets":70196,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1345812,"packets":11606,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1430341,"packets":12371,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1822475,"packets":15918,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7273265,"packets":30301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9850,"packets":40,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52224,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":232748,"packets":521,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104448,"packets":204,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9320,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104238080,"packets":203590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":199075840,"packets":388820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":287429856,"packets":561451,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68099432,"packets":133010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253168128,"packets":494469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9320,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104237568,"packets":203589,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":199072768,"packets":388814,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":287427872,"packets":561455,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68097896,"packets":133007,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253168128,"packets":494469,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":9585,"packets":39,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104235520,"packets":203585,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":199072768,"packets":388814,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63583744,"packets":124187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":63585792,"packets":124191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":287428422,"packets":561457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":68097384,"packets":133006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":253167104,"packets":494467,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591caa200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI learn #2 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI learn #1 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI learn SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 34 Rx 34 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79399 Rx 79399 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79398 Rx 79398 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79398 Rx 79398 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 79399 Rx 79399 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 79398 Rx 79398 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 79398 Rx 79398 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 8823 Rx 8823 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 8822 Rx 8822 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=248, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=95] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=96] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=248, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=97] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=98] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:26:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=248, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=99] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=100] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":272,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=248, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=101] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=102] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=103] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=104] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:26:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=105] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=106] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=106] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:26:13 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=248, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=108] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=248, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=108] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=248, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=248, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=110] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=248, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=248, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=112] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=248, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=128] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=248, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=248, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=248, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=130] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=248, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=248, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=132] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=248, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=248, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=134] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=248, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=248, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=136] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=248, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=248, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=138] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=248, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=248, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=140] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=248, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=248, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=142] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=248, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=248, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=144] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=248, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=248, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=146] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=248, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=248, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=148] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=248, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=248, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=150] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=248, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=248, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=152] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=248, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=248, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=154] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=248, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=248, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=156] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=248, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=248, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=158] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=248, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=248, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=160] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=248, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=248, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=162] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=248, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=248, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=164] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=248, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=248, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=166] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=248, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=248, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=168] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=248, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=248, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=170] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=248, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=248, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=172] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=248, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=248, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=174] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=248, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=248, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=176] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=248, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=248, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=178] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=248, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=179] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=248, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=180] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=248, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=180] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=181] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=248, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=182] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=248, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=182] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=183] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=248, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=184] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=248, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=184] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=248, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=186] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=248, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=186] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=248, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=188] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=248, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=188] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=248, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=190] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=248, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=248, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=192] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=248, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=248, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=194] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=248, chan=194] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=194] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=196] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=196] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=198] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=198] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=199] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=200] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=200] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=200] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=201] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=202] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=202] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=202] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=203] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=204] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=204] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=205] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=206] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=206] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=207] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=208] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=208] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=209] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=210] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=248, chan=210] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=210] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=211] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=248, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=212] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=248, chan=212] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=212] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=213] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=214] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=214] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=215] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=216] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=216] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=217] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=218] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=218] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=219] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=220] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=220] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=220] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=221] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=222] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=222] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=222] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=223] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=224] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=224] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=224] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=225] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=226] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=226] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=226] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=227] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=228] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=248, chan=228] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=228] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=229] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=248, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=230] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=248, chan=230] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=230] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=231] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=232] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=232] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=232] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=233] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=234] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=234] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=234] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=235] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=236] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=236] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=236] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=237] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=238] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=238] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=238] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=239] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=240] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=240] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=240] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=241] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=242] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=242] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=242] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=243] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=244] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=244] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=244] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=245] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=246] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=248, chan=246] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=246] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=247] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=248, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=248] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=248, chan=248] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=248] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=249] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=250] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=250] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=250] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=251] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=252] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=252] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=252] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=253] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=254] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=254] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=254] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=255] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=256] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=256] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=256] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=257] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=258] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=258] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=258] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=259] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=260] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=260] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=260] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=261] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=262] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=262] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=262] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=263] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=264] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=248, chan=264] Received exit status 1 INFO asyncssh:logging.py:92 [conn=248, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=264] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=248, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=265] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=248, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=266] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=248, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=266] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=267] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=248, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=268] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=248, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=268] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=269] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=248, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=270] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=248, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=270] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=271] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=248, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=272] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=248, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=272] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=273] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=248, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=274] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=248, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=274] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=275] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=248, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=276] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=248, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=276] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=277] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=248, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=278] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=248, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=278] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=279] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=248, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=280] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=248, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=280] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=281] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=248, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=282] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=248, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=282] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=283] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=248, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=284] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=248, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=284] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=285] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=248, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=286] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=248, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=286] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=287] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=248, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=288] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=248, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=288] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=289] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=248, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=290] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=248, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=290] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=291] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=248, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=292] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=248, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=292] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=293] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=248, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=294] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=248, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=294] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=248, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=295] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=248, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=296] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=248, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=248, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=296] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking 323.62
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16142' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Local address: 172.17.0.5, port 46448 INFO asyncssh:logging.py:92 [conn=249] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=249] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=249] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:26:16 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:26:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=249, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=249, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 48:0 41:1 2:2 47:3 18:4 44:5 52:6 63:7&& dcb app add dev swp34 dscp-prio 7:0 63:1 39:2 51:3 4:4 55:5 28:6 12:7 INFO asyncssh:logging.py:92 [conn=249, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=8] Command: dcb app add dev swp33 dscp-prio 48:0 41:1 2:2 47:3 18:4 44:5 52:6 63:7&& dcb app add dev swp34 dscp-prio 7:0 63:1 39:2 51:3 4:4 55:5 28:6 12:7 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=249, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=249, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[2,2],[18,4],[41,1],[44,5],[47,3],[48,0],[52,6],[63,7]]} INFO asyncssh:logging.py:92 [conn=249, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=11] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=249, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=249, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[4,4],[7,0],[12,7],[28,6],[39,2],[51,3],[55,5],[63,1]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [48,41,2,47,18,44,52,63] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:1_1.1.1.1/24 to 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [7,63,39,51,4,55,28,12] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:2_1.1.1.2/24 to 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ca17e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI dscp [48 41 2 47 18 44 52 63] SIP-DIP 1.1.1.1-1.1.1.2 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI dscp [7 63 39 51 4 55 28 12] SIP-DIP 1.1.1.2-1.1.1.1 Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 39 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 4 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 63 | Rx 165 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 55 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 51 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 7 | Rx 165 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 28 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [48 41 2 47 18 44 52 63] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 12 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 18 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 48 | Rx 165 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 63 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 52 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 2 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 47 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 164 Rx 164 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 44 | Rx 164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [7 63 39 51 4 55 28 12] Tx 165 Rx 165 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 41 | Rx 165 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 165 | 48 | swp34 | 165 | 7 | 0 | 7 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 165 | 41 | swp34 | 165 | 63 | 1 | 63 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 164 | 2 | swp34 | 164 | 39 | 2 | 39 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 164 | 47 | swp34 | 164 | 51 | 3 | 51 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 164 | 18 | swp34 | 164 | 4 | 4 | 4 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 164 | 44 | swp34 | 164 | 55 | 5 | 55 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 164 | 52 | swp34 | 164 | 28 | 6 | 28 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 164 | 63 | swp34 | 164 | 12 | 7 | 12 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 165 | 7 | swp33 | 165 | 48 | 0 | 48 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 165 | 63 | swp33 | 165 | 41 | 1 | 41 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 164 | 39 | swp33 | 164 | 2 | 2 | 2 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 164 | 51 | swp33 | 164 | 47 | 3 | 47 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 164 | 4 | swp33 | 164 | 18 | 4 | 18 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 164 | 55 | swp33 | 164 | 44 | 5 | 44 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 164 | 28 | swp33 | 164 | 52 | 6 | 52 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 164 | 12 | swp33 | 164 | 63 | 7 | 63 | True | False
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=249, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=13] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=249, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=14] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:31:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=249, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":273,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=249, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:31:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=249, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:31:37 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=249, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=249, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=249, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=249, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=249, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=249, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=249, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=249, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=249, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=249, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=249, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=249, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=249, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=249, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=249, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=249, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=249, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=249, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=249, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=249, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=249, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=249, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=249, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=249, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=249, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=249, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=249, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=249, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=249, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=249, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=249, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=249, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=249, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=249, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=249, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=249, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=249, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=249, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=249, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=249, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=249, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=249, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=249, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=249, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=249, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=249, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=249, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=249, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=249, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=249, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=249, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=249, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=249, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=249, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=249, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=249, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=249, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=249, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=249, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=249, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=249, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=249, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=249, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=249, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=249, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=249, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=249, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=249, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=249, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=249, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=249, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=249, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=249, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=249, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=249, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=249, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=249, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=249, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=249, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=249, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=249, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=249, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=249, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=249, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=249, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=249, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=249, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=249, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=249, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=249, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=249, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=249, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=249, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=249, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=249, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=249, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=249, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=249, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=249, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=249, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=249, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=249, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=249, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=249, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=249, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=249, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=249, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=249, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=249, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=249, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=249, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=249, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=249, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=249, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=249, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=249, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_shaper.py::test_qos_shaper[L2] 229.39
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16307' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Local address: 172.17.0.5, port 57338 INFO asyncssh:logging.py:92 [conn=250] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=250] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=250] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:31:40 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:31:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=250, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=250, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=250, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=250, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 288 && bridge vlan add dev swp34 vid 288 INFO asyncssh:logging.py:92 [conn=250, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=10] Command: bridge vlan add dev swp33 vid 288 && bridge vlan add dev swp34 vid 288 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=250, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=250, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 288, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 288, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12158539,"packets":72904,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1422992,"packets":12339,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1508531,"packets":13120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1827793,"packets":15943,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7399223,"packets":31502,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6518,"packets":43,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2120,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4356,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3600,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3600,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12162623,"packets":72926,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1423468,"packets":12341,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1508531,"packets":13120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1827793,"packets":15943,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7402831,"packets":31522,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7030,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2632,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50156032,"packets":97961,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50156032,"packets":97961,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50156032,"packets":97961,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50156032,"packets":97961,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50156032,"packets":97961,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50161452,"packets":97987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50155880,"packets":97964,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":50156032,"packets":97961,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3840,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3840,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e05cf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97961 Rx 97961 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 97960 Rx 97960 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=250, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=250, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=250, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=250, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=250, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=250, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=250, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=250, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=250, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=250, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=250, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=250, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=250, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=250, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=250, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=250, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=250, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=250, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=250, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=250, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=250, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=250, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=250, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=250, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=250, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=250, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=250, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=250, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=250, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=250, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=250, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=250, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=250, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=250, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=250, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=250, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=250, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=250, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=250, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=250, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=250, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=250, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=250, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=250, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=250, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=250, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=250, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=250, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=250, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=250, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=250, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=250, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=250, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=250, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=250, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=250, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=250, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=250, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=250, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=250, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=250, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=250, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=250, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=250, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=250, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=250, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=250, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=250, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=250, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=250, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=250, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=250, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=250, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=250, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=112] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=112] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=112] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=114] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=114] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=114] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=116] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=118] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=250, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=250, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=250, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=250, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=250, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=250, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=250, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=250, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=250, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=250, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=250, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=250, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=250, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=250, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=250, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=250, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=250, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=250, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=250, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=250, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=250, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=250, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=250, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=250, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=250, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=250, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=250, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=250, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=250, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=156] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=250, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=250, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=158] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=250, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=250, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=160] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=250, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=250, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=162] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=250, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=250, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=164] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=250, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=250, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=166] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=250, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=166] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 119Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 116Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 83Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 64Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 105Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 56Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 58Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=250, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=168] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 119Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 116Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 83Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 64Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 105Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 56Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 58Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=250, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=168] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=170] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=170] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":14500000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":8000000,"burst":1048576,"limit":1048576}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=250, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=172] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=172] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12276075,"packets":74000,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1433632,"packets":12441,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1522649,"packets":13257,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1850645,"packets":16157,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7469149,"packets":32145,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7030,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":14500000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":8000000,"burst":1048576,"limit":1048576},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3840,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3840,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=174] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=174] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12280337,"packets":74025,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1433870,"packets":12442,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1522649,"packets":13257,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1854273,"packets":16177,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7469545,"packets":32149,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7542,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":256,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0},"bytes":47814144,"packets":93387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":14500000,"burst":1048567,"lat":0},"bytes":47814656,"packets":93388,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0},"bytes":47814144,"packets":93387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":8000000,"burst":1048576,"limit":1048576},"bytes":47814144,"packets":93387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":47814144,"packets":93387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0},"bytes":47815188,"packets":93390,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0},"bytes":47814144,"packets":93387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0},"bytes":47814144,"packets":93387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4320,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4320,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cabd90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93388 Rx 93388 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93388 Rx 93388 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93387 Rx 93387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93387 Rx 93387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93387 Rx 93387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93387 Rx 93387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93387 Rx 93387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 93387 Rx 93387 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=250, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=175] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=250, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=176] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=250, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=176] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=177] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=178] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=178] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:35:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=250, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=179] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=180] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=180] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":274,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=250, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=181] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=250, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=182] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=250, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=182] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=183] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=184] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=184] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:35:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=250, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=185] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=186] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=186] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:35:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=250, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=188] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=250, chan=188] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=188] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":14500000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7000000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":8000000,"burst":1048576,"limit":1048576}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=250, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=250, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=190] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=250, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=250, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=192] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=250, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=194] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=196] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=198] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=199] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=200] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=200] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=201] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=202] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=202] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=203] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=204] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=204] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=205] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=206] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=206] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=207] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=208] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=250, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=208] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=250, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=209] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=250, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=210] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=250, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=210] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=211] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=250, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=212] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=250, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=212] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=213] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=250, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=214] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=250, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=214] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=215] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=250, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=216] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=250, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=216] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=217] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=250, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=218] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=250, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=218] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=219] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=250, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=220] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=250, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=220] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=221] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=250, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=222] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=250, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=222] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=223] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=250, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=224] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=250, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=224] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=225] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=250, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=226] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=250, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=226] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=227] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=250, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=228] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=250, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=228] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=229] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=250, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=230] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=250, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=230] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=231] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=250, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=232] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=250, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=232] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=233] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=250, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=234] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=250, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=234] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=235] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=250, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=236] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=250, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=236] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=237] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=250, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=238] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=250, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=238] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=239] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=250, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=240] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=250, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=240] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=241] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=250, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=242] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=250, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=242] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=243] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=250, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=244] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=250, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=244] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=245] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=250, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=246] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=250, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=246] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=247] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=250, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=248] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=250, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=248] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=249] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=250, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=250] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=250, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=250] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=251] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=250, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=252] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=250, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=252] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=253] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=250, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=254] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=250, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=254] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=255] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=250, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=256] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=250, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=256] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=257] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=250, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=258] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=250, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=258] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=259] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=250, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=260] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=250, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=260] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=261] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=250, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=262] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=250, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=262] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=263] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=250, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=264] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=250, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=264] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=265] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=250, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=266] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=250, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=266] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=267] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=250, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=268] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=250, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=268] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=269] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=250, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=270] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=250, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=270] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=271] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=250, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=272] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=250, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=272] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=273] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=250, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=274] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=250, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=274] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=275] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=250, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=276] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=250, chan=276] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=276] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=277] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=278] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=278] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=278] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=279] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=280] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=280] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=280] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=281] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=282] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=282] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=282] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=283] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=284] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=284] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=284] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=285] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=286] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=286] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=286] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=287] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=288] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=288] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=288] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=289] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=290] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=290] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=290] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=291] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=292] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=250, chan=292] Received exit status 1 INFO asyncssh:logging.py:92 [conn=250, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=292] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=250, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=293] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=250, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=294] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=250, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=294] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=295] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=250, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=296] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=250, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=296] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=297] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=250, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=298] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=250, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=298] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=299] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=250, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=300] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=250, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=300] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=301] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=250, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=302] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=250, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=302] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=303] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=250, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=304] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=250, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=304] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=305] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=250, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=306] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=250, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=306] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=307] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=250, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=308] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=250, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=308] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=309] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=250, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=310] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=250, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=310] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=311] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=311] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=311] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=311] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=250, chan=312] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=312] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=250, chan=312] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=312] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=312] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=313] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=313] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=313] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=313] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=313] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=250, chan=314] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=314] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=250, chan=314] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=314] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=314] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=315] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=315] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=315] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=315] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=315] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=250, chan=316] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=316] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=250, chan=316] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=316] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=316] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=317] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=317] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=317] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=317] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=317] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=250, chan=318] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=318] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=250, chan=318] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=318] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=318] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=319] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=319] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=319] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=319] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=319] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=250, chan=320] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=320] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=250, chan=320] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=320] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=320] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=321] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=321] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=321] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=321] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=321] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=250, chan=322] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=322] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=250, chan=322] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=322] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=322] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=323] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=323] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=323] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=323] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=323] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=250, chan=324] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=324] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=250, chan=324] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=324] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=324] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=325] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=325] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=325] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=325] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=325] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=250, chan=326] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=326] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=250, chan=326] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=326] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=326] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=250, chan=327] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=327] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=327] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=327] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=327] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=250, chan=328] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=328] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=250, chan=328] Received exit status 2 INFO asyncssh:logging.py:92 [conn=250, chan=328] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=328] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_shaper.py::test_qos_shaper[L3] 224.15
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16650' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=329] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Local address: 172.17.0.5, port 48762 INFO asyncssh:logging.py:92 [conn=251] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=251] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=251] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:35:29 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:35:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=251, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=251, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=251, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=251, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 44:0 51:1 22:2 53:3 37:4 58:5 1:6 4:7 INFO asyncssh:logging.py:92 [conn=251, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=8] Command: dcb app add dev swp33 dscp-prio 44:0 51:1 22:2 53:3 37:4 58:5 1:6 4:7 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=251, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=251, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[1,6],[4,7],[22,2],[37,4],[44,0],[51,1],[53,3],[58,5]]} INFO asyncssh:logging.py:92 [conn=251, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=251, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=251, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12414310,"packets":75278,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1474335,"packets":12813,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1524515,"packets":13272,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1862303,"packets":16238,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7553157,"packets":32955,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10376,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2250,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4282,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5280,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5280,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12419240,"packets":75309,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1478351,"packets":12835,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1524753,"packets":13273,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1862345,"packets":16239,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7553791,"packets":32962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10686,"packets":73,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2800,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49333248,"packets":96354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49333248,"packets":96354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49333248,"packets":96354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49333248,"packets":96354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49333248,"packets":96354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49338690,"packets":96393,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49334048,"packets":96362,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":49333248,"packets":96354,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5760,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5760,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dde050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96354 Rx 96354 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=251, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=251, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=251, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=251, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=24] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=251, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=251, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=26] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=251, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=251, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=251, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=251, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=251, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=251, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=251, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=251, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=251, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=251, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=251, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=251, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=251, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=251, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=251, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=251, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=251, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=251, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=251, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=251, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=251, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=251, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=251, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=251, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=251, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=251, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=251, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=251, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=251, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=251, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=251, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=251, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=251, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=251, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=251, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=251, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=251, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=251, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=251, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=251, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=251, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=251, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=251, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=251, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=251, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=251, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=251, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=251, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=251, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=251, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=251, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=251, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=251, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=251, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=251, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=251, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=251, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=251, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=251, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=251, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=251, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=251, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=251, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=251, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=251, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=251, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=251, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=251, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=110] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=112] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=112] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=112] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=114] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=114] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=114] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=116] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=118] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=120] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=251, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=251, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=251, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=251, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=251, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=251, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=251, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=251, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=251, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=251, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=251, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=251, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=251, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=251, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=251, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=251, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=251, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=251, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=251, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=251, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=251, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=251, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=251, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=251, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=251, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=251, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=251, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=251, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=251, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=156] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=251, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=251, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=158] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=251, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=251, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=160] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=251, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=251, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=162] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=251, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=251, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=164] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=251, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=251, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=166] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=251, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=166] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 66Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 60Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 60Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 55Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 88Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 95Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 58Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=251, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=168] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 66Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 60Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 60Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 55Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 88Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 95Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 58Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=251, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=168] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=170] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=170] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":8250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11875000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":6875000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=251, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=172] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=172] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12533318,"packets":76386,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1498731,"packets":13005,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1524753,"packets":13273,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1891097,"packets":16511,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7618737,"packets":33597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10686,"packets":73,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":8250000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11875000,"burst":1048574,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":6875000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5760,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5760,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=174] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=174] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":12537510,"packets":76410,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1498731,"packets":13005,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1525229,"packets":13275,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1894697,"packets":16531,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7618853,"packets":33599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":53551,"packets":560,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":38392,"packets":355,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":45602,"packets":462,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":46445,"packets":470,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":40271,"packets":415,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":36883,"packets":326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":11166,"packets":75,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":480,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0},"bytes":49319424,"packets":96327,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":8250000,"burst":1048575,"lat":0},"bytes":49319424,"packets":96327,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11875000,"burst":1048574,"lat":0},"bytes":49318912,"packets":96326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":6875000,"burst":1048575,"lat":0},"bytes":49319424,"packets":96327,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0},"bytes":49319424,"packets":96327,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":49320424,"packets":96331,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0},"bytes":49318912,"packets":96326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0},"bytes":49318912,"packets":96326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6000,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6000,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9e2c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96326 Rx 96326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96326 Rx 96326 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96327 Rx 96327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96327 Rx 96327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96327 Rx 96327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96327 Rx 96327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96327 Rx 96327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 96326 Rx 96326 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=251, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=175] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=251, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=176] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=251, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=176] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=177] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=178] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=178] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:39:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=251, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=179] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=180] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=180] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":275,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=251, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=181] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=182] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=251, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=182] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=183] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=184] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=184] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:39:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=251, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=185] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=186] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=186] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:39:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=251, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=188] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=251, chan=188] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=188] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":8250000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":11875000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":6875000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7500000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":7250000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":11000000,"burst":1048575,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=251, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=251, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=190] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=251, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=251, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=192] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=251, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=193] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=194] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=195] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=196] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=197] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=198] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=199] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=200] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=200] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=201] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=202] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=202] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=203] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=204] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=204] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=205] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=206] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=206] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=207] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=208] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=251, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=208] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=251, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=209] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=251, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=210] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=251, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=210] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=211] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=251, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=212] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=251, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=212] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=213] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=251, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=214] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=251, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=214] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=215] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=251, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=216] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=251, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=216] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=217] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=251, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=218] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=251, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=218] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=219] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=251, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=220] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=251, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=220] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=221] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=251, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=222] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=251, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=222] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=223] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=251, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=224] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=251, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=224] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=225] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=251, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=226] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=251, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=226] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=227] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=251, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=228] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=251, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=228] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=229] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=251, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=230] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=251, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=230] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=231] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=251, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=232] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=251, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=232] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=233] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=251, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=234] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=251, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=234] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=235] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=251, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=236] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=251, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=236] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=237] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=251, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=238] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=251, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=238] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=239] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=251, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=240] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=251, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=240] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=241] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=251, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=242] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=251, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=242] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=243] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=251, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=244] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=251, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=244] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=245] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=251, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=246] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=251, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=246] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=247] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=251, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=248] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=251, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=248] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=249] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=251, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=250] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=251, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=250] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=251] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=251, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=252] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=251, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=252] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=253] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=251, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=254] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=251, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=254] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=255] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=251, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=256] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=251, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=256] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=257] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=251, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=258] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=251, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=258] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=259] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=251, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=260] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=251, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=260] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=261] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=251, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=262] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=251, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=262] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=263] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=251, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=264] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=251, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=264] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=265] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=251, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=266] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=251, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=266] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=267] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=251, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=268] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=251, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=268] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=269] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=251, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=270] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=251, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=270] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=271] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=251, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=272] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=251, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=272] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=273] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=251, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=274] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=251, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=274] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=275] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=251, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=276] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=251, chan=276] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=276] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=277] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=278] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=278] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=278] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=279] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=280] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=280] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=280] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=281] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=282] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=282] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=282] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=283] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=284] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=284] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=284] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=285] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=286] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=286] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=286] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=287] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=288] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=288] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=288] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=289] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=290] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=290] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=290] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=291] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=292] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=251, chan=292] Received exit status 1 INFO asyncssh:logging.py:92 [conn=251, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=292] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=251, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=293] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=251, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=294] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=251, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=294] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=295] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=251, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=296] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=251, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=296] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=297] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=251, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=298] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=251, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=298] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=299] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=251, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=300] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=251, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=300] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=301] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=251, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=302] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=251, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=302] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=303] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=251, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=304] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=251, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=304] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=305] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=251, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=306] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=251, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=306] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=307] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=251, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=308] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=251, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=308] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=309] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=251, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=310] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=251, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=310] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=311] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=311] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=311] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=311] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=251, chan=312] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=312] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=251, chan=312] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=312] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=312] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=313] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=313] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=313] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=313] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=313] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=251, chan=314] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=314] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=251, chan=314] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=314] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=314] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=315] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=315] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=315] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=315] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=315] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=251, chan=316] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=316] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=251, chan=316] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=316] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=316] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=317] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=317] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=317] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=317] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=317] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=251, chan=318] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=318] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=251, chan=318] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=318] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=318] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=319] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=319] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=319] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=319] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=319] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=251, chan=320] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=320] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=251, chan=320] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=320] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=320] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=321] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=321] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=321] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=321] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=321] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=251, chan=322] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=322] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=251, chan=322] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=322] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=322] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=323] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=323] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=323] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=323] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=323] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=251, chan=324] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=324] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=251, chan=324] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=324] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=324] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=325] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=325] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=325] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=325] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=325] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=251, chan=326] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=326] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=251, chan=326] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=326] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=326] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=251, chan=327] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=327] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=327] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=327] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=327] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=251, chan=328] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=328] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=251, chan=328] Received exit status 2 INFO asyncssh:logging.py:92 [conn=251, chan=328] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=328] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] 174.98
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-16993' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=329] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Local address: 172.17.0.5, port 53136 INFO asyncssh:logging.py:92 [conn=252] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=252] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=252] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:39:13 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:39:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=252, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=252, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=252, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=252, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2907 && bridge vlan add dev swp34 vid 2907 INFO asyncssh:logging.py:92 [conn=252, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=10] Command: bridge vlan add dev swp33 vid 2907 && bridge vlan add dev swp34 vid 2907 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=252, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=252, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=252, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=252, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 2907, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 2907, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e07e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289037 Rx 289037 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289037 Rx 289037 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289037 Rx 289037 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289037 Rx 289037 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289036 Rx 289036 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289036 Rx 289036 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289036 Rx 289036 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289036 Rx 289036 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 32.80 | True INFO asyncssh:logging.py:92 [conn=252, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=252, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2639,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986944,"packets":289037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986944,"packets":289037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986432,"packets":289036,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986432,"packets":289036,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986944,"packets":289037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147992378,"packets":289063,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986792,"packets":289040,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147986432,"packets":289036,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 147992378 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 147986944 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 147986944 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 147986944 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 147986432 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 147986432 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 147986432 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 147986792 | 34.42 | 34.42 | 0.0 | 32.80 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=252, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=252, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:42:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=252, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":276,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=252, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:42:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=252, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:42:06 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=252, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=252, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=252, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=252, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=252, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=252, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=252, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=252, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=252, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=252, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=252, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=252, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=252, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=56] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=252, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=252, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=252, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=252, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=60] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=252, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=252, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=62] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=252, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=252, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=64] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=252, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=252, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=66] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=252, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=252, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=68] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=252, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=252, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=70] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=252, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=252, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=72] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=252, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=252, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=74] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=252, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=252, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=76] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=252, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=252, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=78] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=252, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=252, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=80] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=252, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=252, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=82] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=252, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=252, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=84] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=252, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=252, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=86] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=252, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=252, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=88] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=252, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=252, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=90] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=252, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=252, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=92] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=252, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=252, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=94] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=252, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=252, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=96] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=252, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=252, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=98] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=252, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=252, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=100] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=252, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=252, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=102] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=252, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=252, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=104] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=252, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=252, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=106] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=252, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=252, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=108] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=252, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=252, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=110] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=252, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=252, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=112] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=252, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=252, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=114] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=252, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=252, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=116] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=252, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=252, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=252, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=252, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=252, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=136] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=252, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=252, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=252, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=252, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=138] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=252, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=252, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=140] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=252, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=252, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=142] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=252, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=252, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=144] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=252, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=252, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=146] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=252, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=252, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=148] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=252, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=252, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=150] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=252, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=252, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=152] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=252, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=252, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=154] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=252, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=252, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=156] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=252, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=252, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=158] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=252, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=252, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=160] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=252, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=252, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=162] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=252, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=252, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=164] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=252, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=252, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=166] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=252, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=252, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=168] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=252, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=252, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=170] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=252, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=252, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=252, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=172] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=252, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=252, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] 182.65
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17180' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Local address: 172.17.0.5, port 60994 INFO asyncssh:logging.py:92 [conn=253] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=253] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=253] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:42:08 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:42:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=253, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=253, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=253, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=253, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 54:0 41:1 1:2 51:3 59:4 5:5 13:6 3:7 INFO asyncssh:logging.py:92 [conn=253, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=8] Command: dcb app add dev swp33 dscp-prio 54:0 41:1 1:2 51:3 59:4 5:5 13:6 3:7 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=253, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=253, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[1,2],[3,7],[5,5],[13,6],[41,1],[51,3],[54,0],[59,4]]} INFO asyncssh:logging.py:92 [conn=253, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=253, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=253, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=253, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=253, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9bfa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289933 Rx 289933 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 54 | 0 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 41 | 1 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 2 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 51 | 3 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 59 | 4 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 13 | 6 | 34.42 | 0.00 | 32.91 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 7 | 34.42 | 0.00 | 32.91 | True INFO asyncssh:logging.py:92 [conn=253, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=253, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2800,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148445696,"packets":289933,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148445696,"packets":289933,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148445696,"packets":289933,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148445696,"packets":289933,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148445696,"packets":289933,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148451138,"packets":289972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148446496,"packets":289941,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":148445696,"packets":289933,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 148451138 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 148445696 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 148445696 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 148445696 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 148445696 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 148445696 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 148445696 | 34.42 | 34.42 | 0.0 | 32.91 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 148446496 | 34.42 | 34.42 | 0.0 | 32.91 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=253, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=253, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:45:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=253, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":277,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=253, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=253, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=253, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:45:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=253, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:45:08 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=253, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=253, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=253, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=253, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=253, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=253, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=253, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=253, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=253, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=253, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=253, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=253, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=253, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=56] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=253, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=253, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=253, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=253, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=60] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=253, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=253, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=62] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=253, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=253, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=64] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=253, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=253, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=66] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=253, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=253, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=68] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=253, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=253, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=70] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=253, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=253, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=72] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=253, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=253, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=74] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=253, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=253, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=76] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=253, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=253, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=78] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=253, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=253, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=80] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=253, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=253, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=82] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=253, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=253, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=84] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=253, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=253, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=86] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=253, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=253, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=88] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=253, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=253, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=90] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=253, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=253, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=92] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=253, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=253, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=94] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=253, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=253, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=96] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=253, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=253, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=98] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=253, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=253, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=100] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=253, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=253, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=102] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=253, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=253, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=104] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=253, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=253, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=106] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=253, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=253, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=108] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=253, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=253, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=110] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=253, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=253, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=112] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=253, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=253, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=114] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=253, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=253, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=116] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=253, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=253, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=253, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=253, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=253, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=136] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=253, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=253, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=253, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=253, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=138] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=253, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=253, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=140] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=253, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=253, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=142] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=253, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=253, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=144] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=253, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=253, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=146] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=253, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=253, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=148] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=253, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=253, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=150] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=253, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=253, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=152] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=253, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=253, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=154] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=253, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=253, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=156] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=253, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=253, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=158] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=253, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=253, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=160] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=253, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=253, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=162] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=253, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=253, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=164] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=253, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=253, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=166] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=253, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=253, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=168] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=253, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=253, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=170] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=253, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=253, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=253, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=172] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=253, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=253, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] 175.47
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17367' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Local address: 172.17.0.5, port 38210 INFO asyncssh:logging.py:92 [conn=254] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=254] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=254] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:45:11 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:45:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=254, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=254, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=254, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=254, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=254, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 3098 && bridge vlan add dev swp34 vid 3098 INFO asyncssh:logging.py:92 [conn=254, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=10] Command: bridge vlan add dev swp33 vid 3098 && bridge vlan add dev swp34 vid 3098 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 9 9 8 7 5 5 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 9 9 8 7 5 5 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=254, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=254, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=254, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=254, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,8,7,5,5,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3098, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3098, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddefe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288584 Rx 288584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288584 Rx 288584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288584 Rx 288584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288583 Rx 288583 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288583 Rx 288583 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288583 Rx 288583 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288583 Rx 288583 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 288583 Rx 288583 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 32.75 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 32.75 | True INFO asyncssh:logging.py:92 [conn=254, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=254, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=254, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,8,7,5,5,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2639,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147754496,"packets":288583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147755008,"packets":288584,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147754496,"packets":288583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147754496,"packets":288583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147755008,"packets":288584,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147760442,"packets":288610,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147754856,"packets":288587,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147754496,"packets":288583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 147760442 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 147755008 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 147755008 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 147754496 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 147754496 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 147754496 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 147754496 | 34.42 | 34.42 | 0.0 | 32.75 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 147754856 | 34.42 | 34.42 | 0.0 | 32.75 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=254, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=254, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=254, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:48:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=254, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=254, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":278,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=254, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=254, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=254, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:48:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=254, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:48:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=254, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=254, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=254, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,9,9,8,7,5,5,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=254, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=254, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=254, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=254, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=254, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=254, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=254, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=254, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=254, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=254, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=56] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=254, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=254, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=254, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=254, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=60] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=254, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=254, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=62] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=254, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=254, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=64] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=254, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=254, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=66] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=254, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=254, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=68] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=254, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=254, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=70] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=254, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=254, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=72] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=254, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=254, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=74] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=254, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=254, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=76] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=254, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=254, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=78] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=254, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=254, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=80] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=254, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=254, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=82] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=254, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=254, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=84] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=254, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=254, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=86] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=254, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=254, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=88] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=254, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=254, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=90] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=254, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=254, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=92] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=254, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=254, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=94] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=254, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=254, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=96] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=254, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=254, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=98] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=254, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=254, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=100] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=254, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=254, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=102] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=254, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=254, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=104] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=254, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=254, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=106] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=254, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=254, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=108] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=254, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=254, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=110] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=254, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=254, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=112] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=254, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=254, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=114] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=254, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=254, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=116] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=254, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=254, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=254, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=254, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=254, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=136] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=254, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=254, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=254, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=254, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=138] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=254, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=254, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=140] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=254, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=254, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=142] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=254, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=254, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=144] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=254, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=254, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=146] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=254, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=254, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=148] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=254, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=254, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=150] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=254, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=254, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=152] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=254, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=254, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=154] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=254, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=254, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=156] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=254, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=254, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=158] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=254, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=254, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=160] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=254, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=254, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=162] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=254, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=254, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=164] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=254, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=254, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=166] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=254, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=254, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=168] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=254, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=254, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=170] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=254, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=254, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=254, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=172] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=254, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=254, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] 172.30
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-17554' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Local address: 172.17.0.5, port 58926 INFO asyncssh:logging.py:92 [conn=255] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=255] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=255] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:48:07 UTC 2023
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=1] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=2] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:48:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=255, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=255, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=7] Channel closed DEBUG infra1:Logger.py:156 dcb app add dev swp33 dscp-prio 5:0 63:1 51:2 9:3 15:4 18:5 30:6 35:7 INFO asyncssh:logging.py:92 [conn=255, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=8] Command: dcb app add dev swp33 dscp-prio 5:0 63:1 51:2 9:3 15:4 18:5 30:6 35:7 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=9] Channel closed DEBUG infra1:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=255, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=255, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"dscp_prio":[[5,0],[9,3],[15,4],[18,5],[30,6],[35,7],[51,2],[63,1]]} INFO asyncssh:logging.py:92 [conn=255, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 9 8 5 5 3 2 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 9 8 5 5 3 2 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=255, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=255, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=255, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=255, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,8,5,5,3,2,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d986a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289034 Rx 289034 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289033 Rx 289033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289033 Rx 289033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289033 Rx 289033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289033 Rx 289033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289033 Rx 289033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289033 Rx 289033 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 289034 Rx 289034 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 0 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 63 | 1 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 51 | 2 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 9 | 3 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 15 | 4 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 18 | 5 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 30 | 6 | 34.42 | 0.00 | 32.80 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 35 | 7 | 34.42 | 0.00 | 32.80 | True INFO asyncssh:logging.py:92 [conn=255, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=17] Channel closed DEBUG infra1:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=255, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,8,5,5,3,2,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2896,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147984896,"packets":289033,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147985408,"packets":289034,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147984896,"packets":289033,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147984896,"packets":289033,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147984896,"packets":289033,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147990876,"packets":289072,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147985916,"packets":289043,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":147984896,"packets":289033,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 1] 8 | 0 | 147990876 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 7 | 1 | 147985408 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 6 | 2 | 147984896 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 5 | 3 | 147984896 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 4 | 4 | 147984896 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 3 | 5 | 147984896 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 2 | 6 | 147984896 | 34.42 | 34.42 | 0.0 | 32.80 | True INFO DENT:Logger.py:84 [DENT infrastructure 1] 1 | 7 | 147985916 | 34.42 | 34.42 | 0.0 | 32.80 | True
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=255, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=19] Channel closed DEBUG infra1:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=255, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=255, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:50:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=255, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":279,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=255, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:50:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=255, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:50:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=255, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=255, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=255, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[9,8,5,5,3,2,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=255, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=255, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=255, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=255, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=255, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=255, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=255, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=255, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=54] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=255, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=255, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=56] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=255, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=255, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=58] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=255, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=255, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=60] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=255, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=255, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=62] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=255, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=255, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=64] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=255, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=255, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=66] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=255, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=255, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=68] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=255, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=255, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=70] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=255, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=255, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=72] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=255, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=255, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=74] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=255, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=255, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=76] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=255, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=255, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=78] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=255, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=255, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=80] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=255, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=255, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=82] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=255, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=255, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=84] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=255, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=255, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=86] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=255, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=255, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=88] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=255, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=255, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=90] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=255, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=255, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=92] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=255, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=255, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=94] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=255, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=255, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=96] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=255, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=255, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=98] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=255, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=255, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=100] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=255, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=255, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=102] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=255, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=255, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=104] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=255, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=255, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=106] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=255, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=255, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=108] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=255, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=255, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=110] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=255, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=255, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=112] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=255, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=255, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=114] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=255, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=255, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=116] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=255, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=255, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=255, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=255, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=255, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=120] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=122] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=124] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=126] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=128] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=130] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=132] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=134] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=136] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=255, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=255, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=136] Channel closed DEBUG infra1:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=255, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=255, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=138] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=255, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=255, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=140] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=255, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=255, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=142] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=255, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=255, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=144] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=255, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=255, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=146] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=255, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=255, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=148] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=255, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=255, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=150] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=255, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=255, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=152] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=255, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=255, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=154] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=255, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=255, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=156] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=255, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=255, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=158] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=255, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=255, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=160] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=255, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=255, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=162] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=255, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=255, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=164] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=255, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=255, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=166] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=255, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=255, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=168] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=255, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=255, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=170] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=255, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=255, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=255, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=172] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=255, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=255, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership 269.32
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17741' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Local address: 172.17.0.5, port 49264 INFO asyncssh:logging.py:92 [conn=256] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=256] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=256] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:50:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=256, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=256, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=256, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=256, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=256, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=256, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=256, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=256, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=256, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=256, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=256, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=256, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=256, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=256, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ca0280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2236982 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 4660013 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=256, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=256, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=256, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=256, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=256, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=60] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:55:27 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=256, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=256, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=256, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":280,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":281,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":282,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":32.44,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=256, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=256, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=256, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=256, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=256, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=70] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:55:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=256, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=72] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:55:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=256, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=256, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":282,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=256, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=256, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=256, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=76] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership 280.16
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17830' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Local address: 172.17.0.5, port 57854 INFO asyncssh:logging.py:92 [conn=257] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=257] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=257] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 10:55:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=257, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=257, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=257, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=257, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=257, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=257, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=257, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=257, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=257, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=257, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=257, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591693d90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 2471750 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1195728 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=257, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=257, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=257, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=257, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=257, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=60] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:00:07 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=257, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=257, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=257, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":283,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":284,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":285,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":21.53,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=257, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=257, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=257, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=257, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=257, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=70] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:00:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=257, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=72] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:00:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=257, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":285,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=257, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=76] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic 221.89
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17918' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Local address: 172.17.0.5, port 44878 INFO asyncssh:logging.py:92 [conn=258] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=258] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=258] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:00:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=258, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=258, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=258, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=258, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=258, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=258, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=258, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ca0460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 3125324 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 3060246 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3060269 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3060269 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=258, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=258, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=258, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=258, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=258, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=22] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:03:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=258, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:03:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=258, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":286,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=258, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates 348.69
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-17958' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Local address: 172.17.0.5, port 34060 INFO asyncssh:logging.py:92 [conn=259] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=259] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=259] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:03:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=259, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=259, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=259, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=259, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=259, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=8] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=10] Command: bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1680 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1680 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1680}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2952 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2952 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2952}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3919 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3919 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=22] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=22] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3919}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4597 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4597 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=26] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=26] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4597}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1042 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=28] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1042 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=30] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=30] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1042}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5235 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=32] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5235 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=34] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=34] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5235}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cfe20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 113973 Rx 0 Frames Delta 113973 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 479685 Rx 0 Frames Delta 479685 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 103195 Rx 10036 Frames Delta 93159 Loss 90.275 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 140584 Rx 0 Frames Delta 140584 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 187748 Rx 0 Frames Delta 187748 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 71036 Rx 11850 Frames Delta 59186 Loss 83.318 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 158157 Rx 0 Frames Delta 158157 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 151305 Rx 0 Frames Delta 151305 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 83704 Rx 18135 Frames Delta 65569 Loss 78.334 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 88994 Rx 0 Frames Delta 88994 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 84596 Rx 0 Frames Delta 84596 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 180006 Rx 45051 Frames Delta 134955 Loss 74.973 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 59797 Rx 3467 Frames Delta 56330 Loss 94.202 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 114571 Rx 0 Frames Delta 114571 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 96361 Rx 0 Frames Delta 96361 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 220462 Rx 62607 Frames Delta 157855 Loss 71.602 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 69124 Rx 0 Frames Delta 69124 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 65543 Rx 0 Frames Delta 65543 Loss 100.000 INFO asyncssh:logging.py:92 [conn=259, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1680 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1680 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=38] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=38] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1680}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2952 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=40] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2952 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=42] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=42] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2952}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3919 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=44] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3919 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=46] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=46] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3919}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4597 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=48] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4597 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=50] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=50] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4597}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1042 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=52] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1042 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=54] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1042}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5235 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=56] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5235 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=58] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=58] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5235}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591692620>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 260839 Rx 0 Frames Delta 260839 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 1097817 Rx 0 Frames Delta 1097817 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 236174 Rx 22959 Frames Delta 213215 Loss 90.279 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 321744 Rx 0 Frames Delta 321744 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 429684 Rx 0 Frames Delta 429684 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 162574 Rx 27105 Frames Delta 135469 Loss 83.328 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 361962 Rx 0 Frames Delta 361962 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 346279 Rx 0 Frames Delta 346279 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 191566 Rx 41504 Frames Delta 150062 Loss 78.334 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 203673 Rx 0 Frames Delta 203673 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 193608 Rx 0 Frames Delta 193608 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 411965 Rx 103018 Frames Delta 308947 Loss 74.994 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 136852 Rx 7953 Frames Delta 128899 Loss 94.189 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 262209 Rx 0 Frames Delta 262209 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 220533 Rx 0 Frames Delta 220533 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 504553 Rx 143235 Frames Delta 361318 Loss 71.612 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 158197 Rx 0 Frames Delta 158197 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 150002 Rx 0 Frames Delta 150002 Loss 100.000 INFO asyncssh:logging.py:92 [conn=259, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1680 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1680 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=61] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=62] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=62] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1680}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=63] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2952 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=64] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2952 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=65] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=66] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=66] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2952}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=67] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3919 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=68] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3919 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=69] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=70] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=70] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3919}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=71] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4597 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=72] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4597 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=73] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=74] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4597}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=75] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1042 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=76] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1042 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=77] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=78] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=78] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1042}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=79] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5235 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=80] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5235 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=80] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=81] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=82] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=259, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=82] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5235}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9a350>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 407706 Rx 0 Frames Delta 407706 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 1715949 Rx 0 Frames Delta 1715949 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 369153 Rx 35877 Frames Delta 333276 Loss 90.281 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 502903 Rx 0 Frames Delta 502903 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 671619 Rx 0 Frames Delta 671619 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 254112 Rx 42354 Frames Delta 211758 Loss 83.333 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 565766 Rx 0 Frames Delta 565766 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 541253 Rx 0 Frames Delta 541253 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 299428 Rx 64867 Frames Delta 234561 Loss 78.336 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 318352 Rx 0 Frames Delta 318352 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 302619 Rx 0 Frames Delta 302619 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 643923 Rx 161047 Frames Delta 482876 Loss 74.990 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 213906 Rx 12436 Frames Delta 201470 Loss 94.186 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 409846 Rx 0 Frames Delta 409846 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 344705 Rx 0 Frames Delta 344705 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 788644 Rx 223827 Frames Delta 564817 Loss 71.619 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 247271 Rx 0 Frames Delta 247271 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 234462 Rx 0 Frames Delta 234462 Loss 100.000 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=259, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=83] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=259, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=84] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=259, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=84] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1680}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3919}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2952}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4597}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1042}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5235}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=85] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=86] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=87] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=88] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=88] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=89] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=90] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cba8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 554573 Rx 0 Frames Delta 554573 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 2334081 Rx 0 Frames Delta 2334081 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 502131 Rx 130086 Frames Delta 372045 Loss 74.093 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 684063 Rx 0 Frames Delta 684063 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 913555 Rx 0 Frames Delta 913555 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 345650 Rx 108885 Frames Delta 236765 Loss 68.498 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 769570 Rx 0 Frames Delta 769570 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 736227 Rx 0 Frames Delta 736227 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 407290 Rx 145238 Frames Delta 262052 Loss 64.340 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 433031 Rx 0 Frames Delta 433031 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 411631 Rx 0 Frames Delta 411631 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 875882 Rx 336780 Frames Delta 539102 Loss 61.550 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 290961 Rx 65664 Frames Delta 225297 Loss 77.432 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 557484 Rx 0 Frames Delta 557484 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 468878 Rx 0 Frames Delta 468878 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 1072734 Rx 441597 Frames Delta 631137 Loss 58.834 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 336345 Rx 0 Frames Delta 336345 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 318921 Rx 0 Frames Delta 318921 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=259, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=91] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=259, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=92] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=259, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=92] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=259, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=93] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=94] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=94] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=95] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=96] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=96] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=97] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=98] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=259, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=98] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=99] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=100] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:09:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=259, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=101] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=102] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=102] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:09:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=259, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=103] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=104] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=104] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":287,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=259, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=105] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=106] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=106] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules 335.57
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-18075' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Local address: 172.17.0.5, port 50634 INFO asyncssh:logging.py:92 [conn=260] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=260] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=260] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:09:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=260, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=260, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=260, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=260, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=260, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=260, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:09:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=260, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=260, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=260, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=260, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=260, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=260, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=16] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=260, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=18] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=260, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=260, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=260, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=22] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=260, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=22] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=260, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=23] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=260, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=24] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=260, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=26] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=28] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=30] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=260, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=260, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=260, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=32] Channel closed DEBUG infra1:Logger.py:156 4041 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=260, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=260, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=34] Command: tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=260, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=260, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=260, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=260, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=260, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=260, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=40] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=260, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=42] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=44] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=46] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=260, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cbb4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1977978 Rx 20969 Frames Delta 1957009 Loss 98.940 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1977978 Rx 21054 Frames Delta 1956924 Loss 98.936 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 494495 Rx 22326 Frames Delta 472169 Loss 95.485 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 494495 Rx 494494 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 494494 Rx 494494 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 494494 Rx 494493 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=260, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=260, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=260, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=260, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=52] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=52] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=260, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=54] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=260, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=55] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=260, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=260, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=57] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=58] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:15:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=260, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=260, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=260, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=60] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=260, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=260, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=260, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=260, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=260, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=260, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=260, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=260, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=82] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=260, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=260, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=84] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=260, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=260, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=86] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=260, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=260, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=88] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=260, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=260, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=90] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=260, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=260, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=92] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=260, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=260, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=94] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=260, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=260, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=96] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=260, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=260, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=98] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=260, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=260, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=100] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=260, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=260, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=102] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=260, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=260, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=104] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=260, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=260, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=106] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=260, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=260, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=108] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=260, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=260, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=110] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=260, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=260, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=112] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=260, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=260, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=114] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=260, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=260, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=116] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=260, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=260, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=118] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=260, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=260, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=120] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=260, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=260, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=122] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=260, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=260, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=124] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=260, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=260, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=126] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=260, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=260, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=128] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=260, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=260, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=130] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=260, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=260, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=132] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=260, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=260, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=134] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=260, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=260, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=136] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=260, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=260, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=138] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=260, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=260, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=140] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=260, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=260, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=142] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=260, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=260, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=144] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=260, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=260, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=146] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=260, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=260, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=148] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=260, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=148] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=260, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=150] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=260, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=260, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=152] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=260, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=152] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=260, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=154] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=260, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=260, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=156] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=260, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=156] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=260, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=158] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=260, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=260, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=160] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=260, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=260, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=162] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=260, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=260, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=164] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=260, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=260, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=166] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=260, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=260, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=168] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=260, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=260, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=170] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=260, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=171] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=260, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=172] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=260, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=172] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=173] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=260, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=174] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=260, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=174] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=175] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=260, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=176] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=260, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=176] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=177] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=260, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=178] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=260, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=178] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=179] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=260, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=180] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=260, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=180] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=181] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=260, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=182] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=260, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=182] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=183] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=260, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=184] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=260, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=184] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=185] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=260, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=186] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=260, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=186] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=187] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=260, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=188] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=260, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=188] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=189] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=260, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=190] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=260, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=190] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=260, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=191] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=260, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=192] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=260, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=260, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=192] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=193] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=194] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=194] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=194] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:15:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=260, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=195] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=196] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=196] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=196] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:15:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=260, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=197] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=198] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=198] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=198] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":288,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=260, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=199] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=200] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=200] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=200] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule 283.05
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18290' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Local address: 172.17.0.5, port 42352 INFO asyncssh:logging.py:92 [conn=261] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=261] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=261] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:15:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=261, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=261, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1700 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1700 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=261, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=261, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1700}]}]}} INFO asyncssh:logging.py:92 [conn=261, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3930 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3930 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=261, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=261, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3930}]}]}} INFO asyncssh:logging.py:92 [conn=261, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5224 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=261, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=261, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5224}]}]}} INFO asyncssh:logging.py:92 [conn=261, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=261, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=20] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=261, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=261, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=22] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=261, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cdcc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 794560 Rx 764328 Frames Delta 30232 Loss 3.805 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 794559 Rx 77888 Frames Delta 716671 Loss 90.197 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 794559 Rx 103533 Frames Delta 691026 Loss 86.970 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=261, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=261, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=261, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=24] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5224}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1700}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3930}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=261, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=28] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ca8880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1817287 Rx 1782236 Frames Delta 35051 Loss 1.929 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1817287 Rx 774858 Frames Delta 1042429 Loss 57.362 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1817286 Rx 815975 Frames Delta 1001311 Loss 55.099 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=261, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=261, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=32] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=261, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=261, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=34] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=38] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=261, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=38] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=261, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:19:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=261, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=261, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=261, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=261, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=261, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=261, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=261, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=261, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=261, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=261, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=261, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=261, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=261, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=261, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=261, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=261, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=261, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=261, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=261, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=72] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=261, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=261, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=74] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=261, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=261, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=76] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=261, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=261, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=78] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=261, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=261, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=80] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=261, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=261, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=82] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=261, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=261, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=84] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=261, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=261, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=86] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=261, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=261, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=88] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=261, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=261, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=90] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=261, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=261, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=92] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=261, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=261, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=94] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=261, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=261, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=96] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=261, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=261, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=98] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=261, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=261, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=100] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=261, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=261, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=102] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=261, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=261, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=104] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=261, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=261, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=106] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=261, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=261, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=108] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=261, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=261, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=110] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=261, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=261, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=112] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=261, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=261, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=114] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=261, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=114] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=261, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=116] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=261, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=261, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=118] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=261, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=261, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=120] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=261, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=261, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=122] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=261, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=261, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=124] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=261, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=261, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=126] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=261, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=261, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=261, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=261, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=261, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=130] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=261, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=261, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=261, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=261, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=261, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=261, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=261, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=261, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=261, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=261, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=261, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=261, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=261, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=261, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=261, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=261, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=261, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=261, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=261, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=261, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=261, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=261, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=153] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=261, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=261, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=154] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=155] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=261, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=261, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=156] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=157] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=261, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=261, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=158] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=159] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=261, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=261, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=160] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=161] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=261, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=162] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=261, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=162] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=163] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=261, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=164] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=261, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=164] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=165] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=261, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=166] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=261, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=166] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=167] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=261, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=168] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=261, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=168] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=261, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=169] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=261, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=170] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=261, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=261, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=170] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=171] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=172] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=172] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:19:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=261, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=173] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=174] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=174] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:19:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=261, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=175] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=176] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=176] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":289,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=261, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=177] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=178] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=178] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership 263.66
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18481' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Local address: 172.17.0.5, port 56774 INFO asyncssh:logging.py:92 [conn=262] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=262] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=262] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:19:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=262, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=262, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=262, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=262, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=262, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=262, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=262, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=262, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=262, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=262, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=262, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=262, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=262, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=262, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=262, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=262, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=262, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=262, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=262, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=262, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916932e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1183508 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 1564277 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=262, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=262, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=262, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=262, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=262, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=60] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:24:20 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=262, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=262, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=262, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":290,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":291,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":292,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":38.16,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=262, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=262, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=262, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=262, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=262, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=70] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:24:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=262, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=72] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:24:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=262, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":292,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=262, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=76] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_packets.py::test_storm_control_packets 662.42
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-18569' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Local address: 172.17.0.5, port 49048 INFO asyncssh:logging.py:92 [conn=263] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=263] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=263] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:24:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=263, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=1] Channel closed DEBUG infra1:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=263, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=3] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=263, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=263, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=5] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=263, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=263, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=6] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:24:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=263, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=263, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=263, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=263, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=14] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=16] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=16] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=263, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=18] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=20] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=263, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=24] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=24] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=263, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=263, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=26] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=263, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=26] Channel closed DEBUG infra1:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=263, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=263, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=28] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=263, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 1] [{'infra1': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::923c:b3ff:fe8b:ef57","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=263, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=29] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=263, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=263, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=30] Channel closed DEBUG infra1:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=263, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=31] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=263, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=263, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=32] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=263, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=33] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=263, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=263, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=34] Channel closed DEBUG infra1:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 200 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=263, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=35] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=263, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=263, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=36] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=263, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=37] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=263, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=263, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=38] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=263, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=39] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=263, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=263, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=40] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=263, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=41] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=263, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=263, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=42] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=263, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=43] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=263, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=263, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=44] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=263, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=46] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=48] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=263, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=52] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=263, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=56] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=263, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=56] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=263, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=57] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=263, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=263, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=58] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=263, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=59] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=263, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=263, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=60] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=263, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=61] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=263, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=263, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=62] Channel closed DEBUG infra1:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 206 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=263, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=63] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=263, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=263, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=64] Channel closed DEBUG infra1:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=263, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=65] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=263, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=263, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=66] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=263, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=67] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=263, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=263, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=68] Channel closed DEBUG infra1:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=263, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=69] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=263, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=263, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=70] Channel closed DEBUG infra1:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 100 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=263, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=71] Channel closed DEBUG infra1:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=263, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=263, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=72] Channel closed DEBUG infra1:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 1] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=263, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=73] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=263, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=263, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=74] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=263, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=75] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=76] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=76] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=77] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=78] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=78] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=79] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=80] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=263, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=80] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=263, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=81] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=263, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=263, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=82] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=83] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=84] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:35:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=263, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=85] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=263, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=86] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=263, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=86] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=87] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=263, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=263, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=88] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=263, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=89] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=263, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=90] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=263, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=90] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=91] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=92] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:35:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic 243.04
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18673' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Local address: 172.17.0.5, port 34712 INFO asyncssh:logging.py:92 [conn=264] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=264] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=264] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:35:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=264, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=264, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=264, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=264, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=264, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=264, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ca2800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 403750 Rx 171653 Frames Delta 232097 Loss 57.485 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 653953 Rx 653952 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1266836 Rx 1266834 Frames Delta 2 Loss 0.000 INFO asyncssh:logging.py:92 [conn=264, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=264, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=264, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=264, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=264, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=264, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cf2b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 923380 Rx 595800 Frames Delta 327580 Loss 35.476 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1495599 Rx 1357848 Frames Delta 137751 Loss 9.210 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 2897270 Rx 2897269 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=264, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=264, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=264, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=264, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=24] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=264, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=26] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:39:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=264, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:39:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=264, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":293,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=264, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=264, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=264, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic 286.32
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18717' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=265] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=265] Local address: 172.17.0.5, port 49854 INFO asyncssh:logging.py:92 [conn=265] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=265] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=265] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:39:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=265, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=265, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=265, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=265, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=265, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=265, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591693be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 535130 Rx 316119 Frames Delta 219011 Loss 40.927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 536774 Rx 536773 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 939835 Rx 939833 Frames Delta 2 Loss 0.000 INFO asyncssh:logging.py:92 [conn=265, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=265, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=265, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=265, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=265, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=265, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591bfcb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1223906 Rx 915290 Frames Delta 308616 Loss 25.216 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1227664 Rx 1227663 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 2149512 Rx 1492467 Frames Delta 657045 Loss 30.567 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=265, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=265, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=265, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=20] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=265, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=26] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=28] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=32] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=34] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=36] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=265, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=36] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=37] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=38] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:44:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=265, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:44:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=265, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":294,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=265, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=265, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=265, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=44] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership 270.33
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18772' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=266] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=266] Local address: 172.17.0.5, port 55850 INFO asyncssh:logging.py:92 [conn=266] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=266] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=266] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:44:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=266, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=266, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=266, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=266, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=266, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=266, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=266, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=266, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=266, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=266, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=266, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=266, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=266, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=266, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=266, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=266, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=266, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=266, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=266, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=266, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=266, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=27] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=28] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=29] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=31] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=32] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=33] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=35] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=36] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=37] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=39] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=40] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=41] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=43] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=44] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=45] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=47] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=48] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=49] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=51] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=266, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=52] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cc6d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 5952797 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 5369397 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=266, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=53] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=266, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=266, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=54] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=266, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=55] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=57] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=59] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=266, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=60] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:48:42 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=266, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=266, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=266, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:57","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":295,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":296,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"90:3c:b3:8b:ef:59","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":297,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":31.35,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:57","root_id":"8000.90:3c:b3:8b:ef:57","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=266, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=266, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=266, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=67] Channel closed DEBUG infra1:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=266, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=266, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=69] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=70] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:48:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=266, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=71] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=72] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:48:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=266, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=73] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=74] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":297,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=266, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=75] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=266, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=266, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=76] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic 228.09
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18860' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=267] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=267] Local address: 172.17.0.5, port 59182 INFO asyncssh:logging.py:92 [conn=267] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=267] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=267] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:48:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=267, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=267, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=267, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=267, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=267, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=267, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=267, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd6f20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4845819 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 941234 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 941254 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 941255 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=267, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=267, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=267, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=267, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=267, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=22] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:52:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=267, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:52:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=267, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":298,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=267, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic 194.85
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18900' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=268] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=268] Local address: 172.17.0.5, port 33066 INFO asyncssh:logging.py:92 [conn=268] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=268] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=268] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:52:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=268, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=268, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=268, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=268, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=268, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=7] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=268, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=268, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=8] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=268, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=268, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=268, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=12] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ddec50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1157749 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 1117367 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 2295905 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 2295903 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=268, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=268, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=268, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=268, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=15] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=268, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=22] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:55:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=268, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:55:46 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=268, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":299,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=268, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic 202.59
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-18940' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=269] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=269] Local address: 172.17.0.5, port 58570 INFO asyncssh:logging.py:92 [conn=269] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=269] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=269] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:55:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=269, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=269, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=269, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=269, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=9] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=269, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=10] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=269, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=10] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=269, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=11] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=12] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=13] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=269, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=14] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=269, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=14] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cff40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 1728955 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 1728956 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3052958 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3052958 INFO asyncssh:logging.py:92 [conn=269, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=269, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=269, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591caa230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 0 Rx 2756060 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 3569863 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 3620576 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 3620576 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=269, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=17] Channel closed DEBUG infra1:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=269, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=269, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=18] Channel closed DEBUG infra1:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=269, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=19] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=21] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=23] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=25] Channel closed DEBUG infra1:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=269, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=26] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:59:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=269, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:59:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=269, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":300,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=269, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_config.py::test_stp_bpdu_guard 157.02
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-18984' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_guard">Starting testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=270] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=270] Local address: 172.17.0.5, port 60916 INFO asyncssh:logging.py:92 [conn=270] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=270] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=270] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:59:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=270, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=270, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=270, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=270, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=270, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=4] Channel closed DEBUG infra1:Logger.py:156 1281
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 11:59:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=270, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=270, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=270, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:c4:22:82:4a:84 INFO asyncssh:logging.py:92 [conn=270, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:c4:22:82:4a:84 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 guard on INFO asyncssh:logging.py:92 [conn=270, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=12] Command: bridge link set dev swp33 guard on INFO asyncssh:logging.py:92 [conn=270, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge -j link show dev swp33 INFO asyncssh:logging.py:92 [conn=270, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=14] Command: bridge -j link show dev swp33 INFO asyncssh:logging.py:92 [conn=270, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"master":"br0","state":"disabled","priority":32,"cost":4}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=270, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=15] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=270, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=270, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:01:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:01:46 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=270, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":301,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:c4:22:82:4a:84","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=270, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=24] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_config.py::test_stp_forward_delay 138.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19023' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_forward_delay">Starting testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=271] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=271] Local address: 172.17.0.5, port 56962 INFO asyncssh:logging.py:92 [conn=271] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=271] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=271] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:01:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=271, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=271, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=271, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=271, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=271, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:01:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=271, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=271, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=8] Command: ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=271, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=271, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=10] Command: ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=271, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=271, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=12] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 3 == 1 + where 3 = len(['br0', 'br1', 'br2']) INFO asyncssh:logging.py:92 [conn=271, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=14] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.86,"message_age_timer":0.00,"forward_delay_timer":7.31,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.87,"forward_delay_timer":7.26,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.88,"message_age_timer":0.00,"forward_delay_timer":7.11,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.87,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.87,"forward_delay_timer":7.21,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.86,"message_age_timer":0.00,"forward_delay_timer":7.17,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":289.98,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":289.98,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.86,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":289.98,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=271, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=16] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.79,"message_age_timer":0.00,"forward_delay_timer":12.46,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.82,"forward_delay_timer":12.46,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.82,"message_age_timer":0.00,"forward_delay_timer":12.21,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.82,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.82,"forward_delay_timer":12.20,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.79,"message_age_timer":0.00,"forward_delay_timer":12.21,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.91,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.92,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.79,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.92,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=271, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=18] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":2.39,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.74,"forward_delay_timer":2.39,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.74,"message_age_timer":0.00,"forward_delay_timer":2.14,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.73,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.73,"forward_delay_timer":2.13,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":2.13,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.72,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=271, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=20] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.65,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.69,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.68,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.68,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.69,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.65,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.77,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.65,"tcn_timer":0.00,"topology_change_timer":27.44,"gc_timer":259.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 40s INFO asyncssh:logging.py:92 [conn=271, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=22] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.60,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.64,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.62,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.63,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.64,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.60,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.72,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.72,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.60,"tcn_timer":0.00,"topology_change_timer":27.39,"gc_timer":259.73,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=271, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=271, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=24] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=271, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=271, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=26] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.50,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.53,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.54,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.54,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.50,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":34.96,"gc_timer":259.62,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.63,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.50,"tcn_timer":0.00,"topology_change_timer":27.29,"gc_timer":259.63,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=271, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=28] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":9.47,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.46,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.44,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.46,"tcn_timer":0.00,"topology_change_timer":24.90,"gc_timer":249.56,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":249.56,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.44,"tcn_timer":0.00,"topology_change_timer":17.23,"gc_timer":249.57,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=271, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=30] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.41,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.38,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.40,"tcn_timer":0.00,"topology_change_timer":14.84,"gc_timer":239.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":239.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.38,"tcn_timer":0.00,"topology_change_timer":7.17,"gc_timer":239.51,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=271, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=32] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.35,"message_age_timer":0.00,"forward_delay_timer":6.28,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.34,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.32,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.44,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.45,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.32,"tcn_timer":0.00,"topology_change_timer":26.36,"gc_timer":229.45,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'listening' == 'forwarding' - forwarding + listening INFO asyncssh:logging.py:92 [conn=271, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=34] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.29,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.28,"message_age_timer":0.00,"forward_delay_timer":11.32,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.29,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.26,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.38,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.26,"tcn_timer":0.00,"topology_change_timer":16.30,"gc_timer":219.39,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=271, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=36] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.21,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.22,"message_age_timer":0.00,"forward_delay_timer":1.26,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.22,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.20,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.20,"tcn_timer":0.00,"topology_change_timer":6.23,"gc_timer":209.32,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=271, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=38] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.16,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.16,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.17,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.14,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.14,"tcn_timer":0.00,"topology_change_timer":26.32,"gc_timer":199.26,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 60s INFO asyncssh:logging.py:92 [conn=271, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=271, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=40] Command: ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=271, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 40.0 interval = 5 INFO asyncssh:logging.py:92 [conn=271, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=42] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.08,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.07,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.08,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.05,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.17,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.17,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.05,"tcn_timer":0.00,"topology_change_timer":26.23,"gc_timer":199.18,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected only 1 blocked port assert 0 == 1 + where 0 = len([]) INFO asyncssh:logging.py:92 [conn=271, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=44] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.97,"message_age_timer":0.00,"forward_delay_timer":12.36,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.98,"forward_delay_timer":12.34,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":17.99,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.98,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.96,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":194.08,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":194.08,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":33.01,"gc_timer":194.09,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=271, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=46] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.29,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.92,"forward_delay_timer":7.27,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.91,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.92,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":189.02,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":189.02,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.90,"tcn_timer":0.00,"topology_change_timer":27.95,"gc_timer":189.03,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=271, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=47] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=48] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=48] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.84,"message_age_timer":0.00,"forward_delay_timer":2.24,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.88,"forward_delay_timer":2.21,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.87,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.87,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.88,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.84,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":183.96,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":183.97,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.84,"tcn_timer":0.00,"topology_change_timer":22.90,"gc_timer":183.97,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=271, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=49] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=50] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.30,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.80,"forward_delay_timer":12.31,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.80,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.80,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":178.89,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":178.90,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.77,"tcn_timer":0.00,"topology_change_timer":17.82,"gc_timer":178.90,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=271, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=51] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=52] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.71,"message_age_timer":0.00,"forward_delay_timer":7.24,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.73,"forward_delay_timer":7.25,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.74,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.72,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.73,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.71,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.83,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.71,"tcn_timer":0.00,"topology_change_timer":12.76,"gc_timer":173.84,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=271, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=54] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.18,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.66,"forward_delay_timer":2.18,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.66,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":18.66,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.77,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.77,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.65,"tcn_timer":0.00,"topology_change_timer":7.70,"gc_timer":168.78,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=271, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=56] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=271, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.62,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.62,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.62,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.62,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.00,"message_age_timer":19.62,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","hold_timer":0.59,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.71,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.72,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.90:3c:b3:8b:ef:3b","root_id":"8000.90:3c:b3:8b:ef:3b","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.59,"tcn_timer":0.00,"topology_change_timer":32.25,"gc_timer":163.72,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 35s
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=271, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=57] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=271, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=271, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=60] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:04:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=271, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:04:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=271, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":302,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":303,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":304,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=271, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=271, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=66] Command: ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=271, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=66] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_config.py::test_stp_max_age 336.04
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19104' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_max_age">Starting testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=272] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=272] Local address: 172.17.0.5, port 49844 INFO asyncssh:logging.py:92 [conn=272] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=272] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=272] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:04:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=272, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=272, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=272, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=272, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=272, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:04:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=272, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=272, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=272, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 22:d4:07:87:2a:18 INFO asyncssh:logging.py:92 [conn=272, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 22:d4:07:87:2a:18 INFO asyncssh:logging.py:92 [conn=272, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=272, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=12] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=272, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:f7:3c:9a:ac:ad","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":18.50,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:80:28:64:2a:38","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":18.50,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":4,"bridge_id":"8000.22:d4:7:87:2a:18","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.24,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":305,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:d4:07:87:2a:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:d4:7:87:2a:18","root_id":"8000.22:d4:7:87:2a:18","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.68,"topology_change_timer":0.00,"gc_timer":97.45,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 30 interval = 5 INFO asyncssh:logging.py:92 [conn=272, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=14] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:80:28:64:2a:38","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":12.39,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=272, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=16] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:80:28:64:2a:38","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":7.36,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=272, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=18] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:80:28:64:2a:38","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":2.32,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=272, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=20] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:d4:7:87:2a:18","root_id":"8000.22:d4:7:87:2a:18","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":13.93,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 15s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=272, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=22] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=272, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:f7:3c:9a:ac:ad","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":4.45,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:80:28:64:2a:38","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.00,"message_age_timer":4.45,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":4,"bridge_id":"8000.22:d4:7:87:2a:18","root_id":"8000.2:f7:3c:9a:ac:ad","hold_timer":0.29,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":1,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":305,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:d4:07:87:2a:18","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":600,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:d4:7:87:2a:18","root_id":"8000.22:d4:7:87:2a:18","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.64,"topology_change_timer":0.00,"gc_timer":286.39,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Start polling timeout = 15.0 interval = 2 INFO asyncssh:logging.py:92 [conn=272, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=24] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=272, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:d4:7:87:2a:18","root_id":"8000.22:d4:7:87:2a:18","hold_timer":0.20,"message_age_timer":0.00,"forward_delay_timer":13.48,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 1] Poll successful after 0s
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=272, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=25] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=272, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=26] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=272, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:09:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:09:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=272, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":305,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:d4:07:87:2a:18","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=272, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=34] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_config.py::test_stp_root_guard 193.27
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19153' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_guard">Starting testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=273] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=273] Local address: 172.17.0.5, port 35324 INFO asyncssh:logging.py:92 [conn=273] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=273] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=273] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:09:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=273, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=273, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=273, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=273, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=273, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:09:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=273, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=273, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:50:e1:49:ec:b0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:50:e1:49:ec:b0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=273, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=273, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=12] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=273, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":306,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:50:e1:49:ec:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:50:e1:49:ec:b0","root_id":"8000.22:50:e1:49:ec:b0","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":1.02,"topology_change_timer":0.00,"gc_timer":153.50,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=273, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 root_block on INFO asyncssh:logging.py:92 [conn=273, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=14] Command: bridge link set dev swp33 root_block on INFO asyncssh:logging.py:92 [conn=273, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=273, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=16] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=273, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":306,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:50:e1:49:ec:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:50:e1:49:ec:b0","root_id":"8000.22:50:e1:49:ec:b0","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":113.40,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=273, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=17] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=273, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=18] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=273, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=19] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=20] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:12:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=273, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=21] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=22] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:12:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=273, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=24] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":306,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:50:e1:49:ec:b0","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=273, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=26] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_convergence.py::test_stp_topology_convergence_with_down_link[stp] 231.42
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19194' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_topology_convergence_with_down_link[stp]">Starting testcase:test_stp_topology_convergence_with_down_link[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=274] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=274] Local address: 172.17.0.5, port 47640 INFO asyncssh:logging.py:92 [conn=274] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=274] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=274] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:12:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=274, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=274, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=274, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=274, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=274, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:12:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=274, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=274, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=274, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=274, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=274, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=274, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=274, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=274, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=274, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=274, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=274, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=274, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=274, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=24] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=274, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=274, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=26] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=274, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=274, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=274, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=28] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=274, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"1","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=274, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=30] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"1","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=274, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=274, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=32] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=274, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=274, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=34] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=274, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=274, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=274, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=36] Command: ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=274, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=274, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=38] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=274, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=274, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=274, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=40] Command: ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=274, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=274, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=274, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=42] Command: ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=274, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=274, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=44] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=274, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=274, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=46] Command: ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=274, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_topology_convergence_with_down_link[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py INFO asyncssh:logging.py:92 [conn=274, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=47] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=274, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=48] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=274, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:16:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=274, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=51] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=52] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:16:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=274, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=54] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":307,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":308,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":309,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=274, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=56] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=274, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=56] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_convergence.py::test_stp_topology_convergence_with_down_link[rstp] 185.26
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19265' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_topology_convergence_with_down_link[rstp]">Starting testcase:test_stp_topology_convergence_with_down_link[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=275] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=275] Local address: 172.17.0.5, port 59154 INFO asyncssh:logging.py:92 [conn=275] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=275] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=275] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:16:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=275, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=275, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=275, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=275, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=275, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:16:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=275, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=275, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=275, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=275, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=275, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=275, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=275, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=275, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=275, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=275, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=275, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=275, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=275, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=275, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=24] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=275, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=275, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=26] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=275, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"10","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=275, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=275, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=28] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=275, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"13","num-rx-bpdu":"4","num-rx-bpdu-filtered":"0","num-tx-tcn":"6","num-rx-tcn":"1","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=275, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=30] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3C","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3C","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"1","num-rx-tcn":"6","num-transition-fwd":"1","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=275, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=275, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=32] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=275, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=275, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=34] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=275, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=275, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=275, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=36] Command: ip link set dev swp8 down && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=275, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=275, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=38] Command: ip -j -d link show swp10 INFO asyncssh:logging.py:92 [conn=275, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3e","root_id":"8000.90:3c:b3:8b:ef:3e","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=275, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=39] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=275, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=40] Command: ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=275, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=275, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=41] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=275, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=42] Command: ip link set dev swp33 master bridge_2 INFO asyncssh:logging.py:92 [conn=275, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=42] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=275, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=44] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=275, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=275, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=46] Command: ip -j -d link show swp33 INFO asyncssh:logging.py:92 [conn=275, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bridge_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.90:3c:b3:8b:ef:3c","root_id":"8000.90:3c:b3:8b:ef:3c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_topology_convergence_with_down_link[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_convergence.py INFO asyncssh:logging.py:92 [conn=275, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=47] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=275, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=48] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=275, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=49] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=50] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:19:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=275, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=51] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=52] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:19:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=275, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=275, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=54] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=275, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":310,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":311,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":312,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=275, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=56] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=275, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=56] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_loopback.py::test_stp_loopback_detection[stp] 365.13
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19336' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_loopback_detection[stp]">Starting testcase:test_stp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=276] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=276] Local address: 172.17.0.5, port 45428 INFO asyncssh:logging.py:92 [conn=276] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=276] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=276] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:19:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=276, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=276, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=276, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=276, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=276, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:19:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=276, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=276, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=8] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=276, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=276, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=10] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=276, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=12] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=276, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=276, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=276, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=276, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=16] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=276, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=16] Channel closed DEBUG infra1:Logger.py:156 Hello World INFO asyncssh:logging.py:92 [conn=276, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=276, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=18] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=276, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9b100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 1342189 Rx 12800683 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 12800539 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 12800540 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 12800532 INFO asyncssh:logging.py:92 [conn=276, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=276, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=20] Command: ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=276, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=22] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=276, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=24] Command: mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=276, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=26] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=276, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=28] Command: mstpctl setforcevers bridge_1 stp INFO asyncssh:logging.py:92 [conn=276, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=30] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.005","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.005","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp6","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.008","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.005","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.006","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.006","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.009","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.006","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.007","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp10","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.00A","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"3","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp33","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916ce110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 4305682 Rx 14512888 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 15977232 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 15976970 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 15976266
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py INFO asyncssh:logging.py:92 [conn=276, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=31] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=276, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=32] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=276, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:25:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=276, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":313,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=276, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=38] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=276, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:25:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/stp/test_stp_loopback.py::test_stp_loopback_detection[rstp] 330.43
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19391' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_loopback_detection[rstp]">Starting testcase:test_stp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=277] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=277] Local address: 172.17.0.5, port 60390 INFO asyncssh:logging.py:92 [conn=277] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=277] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=277] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:25:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=277, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=277, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=277, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=277, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=277, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:25:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=277, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=277, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=8] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=277, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=277, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=10] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down && ip link set dev bridge_1 down INFO asyncssh:logging.py:92 [conn=277, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=12] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 && ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 && ip link set dev swp9 master bridge_1 && ip link set dev swp6 master bridge_1 && ip link set dev swp8 master bridge_1 && ip link set dev swp10 master bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=277, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up && ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=277, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:2_1.1.1.3/24', '10.36.118.199:2:3_1.1.1.4/24', '10.36.118.199:2:4_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=277, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=277, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=16] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=277, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=16] Channel closed DEBUG infra1:Logger.py:156 Hello World INFO asyncssh:logging.py:92 [conn=277, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=17] Channel closed DEBUG infra1:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=277, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=18] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=277, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=18] Channel closed DEBUG infra1:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591ca2710>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 692184 Rx 8410749 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 8410522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 8410536 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 8410551 INFO asyncssh:logging.py:92 [conn=277, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=277, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=20] Command: ip link set dev bridge_1 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=277, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=22] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=277, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=24] Command: mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=277, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=26] Command: mstpctl addbridge bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=277, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=28] Command: mstpctl setforcevers bridge_1 rstp INFO asyncssh:logging.py:92 [conn=277, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=30] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.005","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.005","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp6","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.008","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.005","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.006","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.006","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.009","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.006","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.007","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"1","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp10","bridge":"bridge_1","enabled":"yes","role":"Backup","port-id":"8.00A","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.007","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp33","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-external-cost":"0","dsgn-regional-root":"8.000.90:3C:B3:8B:EF:3B","dsgn-internal-cost":"0","designated-bridge":"8.000.90:3C:B3:8B:EF:3B","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cbaa40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:1 Tx 2249792 Rx 9711793 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:2 Tx 0 Rx 10985503 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:3 Tx 0 Rx 10985179 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:4 Tx 0 Rx 10983687
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_loopback.py INFO asyncssh:logging.py:92 [conn=277, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=31] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=277, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=32] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=277, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:31:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=277, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=277, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=277, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":314,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=277, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=38] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=277, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:31:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}]
Passed functional/stp/test_stp_ports.py::test_stp_blocked_ports[stp] 294.96
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19446' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_blocked_ports[stp]">Starting testcase:test_stp_blocked_ports[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=278] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=278] Local address: 172.17.0.5, port 37678 INFO asyncssh:logging.py:92 [conn=278] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=278] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=278] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:31:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=278, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=278, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=278, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=278, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=278, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:31:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=278, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=278, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=278, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=278, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=278, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=278, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=278, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=278, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=278, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=278, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=278, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=278, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=278, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=278, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=278, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=278, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=278, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:4B:37:3A:A1","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:4B:37:3A:A1","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:4B:37:3A:A1","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"61","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:4B:37:3A:A1","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:70:04:CA:BF","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:70:04:CA:BF","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"60","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:4B:37:3A:A1","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"80","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:4B:37:3A:A1","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"78","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591bfdde0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2927419 Rx 2927418 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2927419 Rx 4045 Loss 99.862 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2927418 Rx 2927417 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_blocked_ports[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py INFO asyncssh:logging.py:92 [conn=278, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=23] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=278, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=24] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=278, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:36:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=278, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:36:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=278, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":315,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=278, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=278, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=278, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=32] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_ports.py::test_stp_blocked_ports[rstp] 284.96
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19493' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_blocked_ports[rstp]">Starting testcase:test_stp_blocked_ports[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=279] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=279] Local address: 172.17.0.5, port 52600 INFO asyncssh:logging.py:92 [conn=279] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=279] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=279] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:36:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=279, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=279, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=279, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=279, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=279, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:36:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=279, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=279, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=279, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=279, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=279, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=279, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=279, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=279, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=279, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=279, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=279, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=279, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=279, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=279, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=279, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=279, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=279, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:73:7B:59:A7","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:73:7B:59:A7","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:73:7B:59:A7","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"89","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:73:7B:59:A7","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:42:65:B6:89","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:42:65:B6:89","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"86","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:73:7B:59:A7","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"73","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:73:7B:59:A7","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"71","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591692ef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 20 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 20 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 1463566 Rx 1463565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 1463566 Rx 524 Loss 99.964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 1463566 Rx 1463564 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_blocked_ports[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_ports.py INFO asyncssh:logging.py:92 [conn=279, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=23] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=279, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=24] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=279, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:40:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=279, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=27] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=28] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:41:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=279, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":316,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=279, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=31] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=279, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=279, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=32] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[stp] 338.78
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19540' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[stp]">Starting testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=280] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=280] Local address: 172.17.0.5, port 57050 INFO asyncssh:logging.py:92 [conn=280] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=280] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=280] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:41:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=280, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=280, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=280, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=280, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=280, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:41:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=280, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=280, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=280, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:0a:48:59:02 INFO asyncssh:logging.py:92 [conn=280, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:0a:48:59:02 INFO asyncssh:logging.py:92 [conn=280, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=280, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=280, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=280, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=280, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=16] Command: mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=280, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=280, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=17] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=280, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=18] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=280, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=18] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:67:CC:9E:B5","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:67:CC:9E:B5","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"49","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:16:74:4A:57","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:16:74:4A:57","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"48","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"5","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:0A:48:59:02","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:0A:48:59:02","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"67","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb9e10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2928699 Rx 2928698 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2928699 Rx 3215 Loss 99.890 INFO DENT:Logger.py:84 [DENT infrastructure 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:2:2 INFO asyncssh:logging.py:92 [conn=280, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=19] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportbpdufilter br0 swp34 yes INFO asyncssh:logging.py:92 [conn=280, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=20] Command: mstpctl setportbpdufilter br0 swp34 yes INFO asyncssh:logging.py:92 [conn=280, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=280, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=280, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=280, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:67:CC:9E:B5","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:67:CC:9E:B5","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"52","num-rx-bpdu":"86","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:0A:48:59:02","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:0A:48:59:02","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"yes","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"48","num-rx-bpdu":"86","num-rx-bpdu-filtered":"40","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"5","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:0A:48:59:02","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:0A:48:59:02","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"89","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916ced70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 82 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 82 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 6004871 Rx 6004870 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 6004871 Rx 163902 Loss 97.271 INFO DENT:Logger.py:84 [DENT infrastructure 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:2 INFO asyncssh:logging.py:92 [conn=280, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=280, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=24] Command: mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=280, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=280, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=280, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=280, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:67:CC:9E:B5","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:67:CC:9E:B5","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"66","num-rx-bpdu":"129","num-rx-bpdu-filtered":"0","num-tx-tcn":"35","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:16:74:4A:57","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:16:74:4A:57","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"49","num-rx-bpdu":"129","num-rx-bpdu-filtered":"0","num-tx-tcn":"19","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"6","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:67:CC:9E:B5","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:0A:48:59:02","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:0A:48:59:02","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"110","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"35","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591cb90c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 124 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 124 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 9081043 Rx 9081042 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 9081043 Rx 680955 Loss 92.501 INFO DENT:Logger.py:84 [DENT infrastructure 1] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:1 INFO DENT:Logger.py:84 [DENT infrastructure 1] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:2:2
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=280, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=280, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=280, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:46:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=280, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:46:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=280, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":317,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:0a:48:59:02","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=280, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=280, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=280, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_rstp_config.py::test_stp_hello_time[stp] 141.04
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19630' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[stp]">Starting testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=282] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=282] Local address: 172.17.0.5, port 58422 INFO asyncssh:logging.py:92 [conn=282] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=282] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=282] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:48:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=282, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=282, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=282, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=282, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=282, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:48:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=282, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=282, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=282, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=282, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=282, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=282, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=282, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=282, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=282, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=282, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=16] Channel closed DEBUG infra1:Logger.py:156 12:48:45.172404 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:47.172405 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:49.172407 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:51.172408 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:53.172407 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:55.172404 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:57.172405 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:48:59.172409 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:01.172400 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:03.172404 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:05.172405 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:07.172401 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:09.172398 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:11.172406 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 14 packets captured 14 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=282, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=17] Channel closed DEBUG infra1:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=282, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=282, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=282, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=282, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=282, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=20] Channel closed DEBUG infra1:Logger.py:156 12:49:54.172413 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:55.172406 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:56.172492 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:57.172407 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:58.172492 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:49:59.172408 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:00.172496 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:01.172406 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:02.172487 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:03.172403 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:04.172479 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:05.172409 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:06.172467 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:07.172393 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:08.172479 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:09.172401 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:10.172478 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:11.172405 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:12.172484 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:13.172409 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:14.172496 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:15.172402 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:16.172487 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:17.172404 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:18.172485 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:19.172403 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:20.172483 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:21.172414 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 12:50:22.172497 STP 802.1d, Config, Flags [none], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 29 packets captured 30 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=282, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=282, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=282, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:50:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}] INFO asyncssh:logging.py:92 [conn=282, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:50:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=282, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":319,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=282, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=282, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=282, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_rstp_config.py::test_stp_hello_time[rstp] 101.22
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19675' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[rstp]">Starting testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=283] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=283] Local address: 172.17.0.5, port 47896 INFO asyncssh:logging.py:92 [conn=283] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=283] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=283] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:50:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=283, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=283, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=283, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=283, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=283, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:50:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=283, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=283, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=283, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=283, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=283, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=283, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=283, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=283, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=15] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=283, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=283, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=16] Channel closed DEBUG infra1:Logger.py:156 12:50:45.172408 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:47.172410 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:49.172404 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:51.172408 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:53.172406 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:55.172409 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:57.172402 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:50:59.172407 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:01.172404 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:03.172410 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:05.172409 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:07.172397 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:09.172402 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:11.172413 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:13.172409 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=283, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=17] Channel closed DEBUG infra1:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=283, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=283, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 1] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra1... INFO asyncssh:logging.py:92 [conn=283, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=19] Channel closed DEBUG infra1:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=283, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=283, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=20] Channel closed DEBUG infra1:Logger.py:156 12:51:35.172407 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:36.172494 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:37.172406 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:38.172527 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:39.172400 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:40.172482 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:41.172409 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:42.172490 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:43.172404 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:44.172490 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:45.172406 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:46.172480 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:47.172409 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:48.172495 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:49.172403 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:50.172487 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:51.172406 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:52.172485 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:53.172408 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:54.172496 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:55.172405 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:56.172491 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:57.172406 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:58.172488 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:51:59.172408 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:52:00.172493 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:52:01.172409 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:52:02.172487 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 12:52:03.172405 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.90:3c:b3:8b:ef:57.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 29 packets captured 30 packets received by filter 0 packets dropped by kernel
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=283, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=21] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=283, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=283, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:52:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Unstable State attempting to stop traffic. Increase timeout to allow previous operation to complete.\n'}}] INFO asyncssh:logging.py:92 [conn=283, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:52:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=283, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":320,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=283, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=283, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=283, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=30] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[stp] 82.35
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19720' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[stp]">Starting testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=284] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=284] Local address: 172.17.0.5, port 51806 INFO asyncssh:logging.py:92 [conn=284] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=284] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=284] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:52:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=284, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=284, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=284, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=284, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=284, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=284, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:52:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=284, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=284, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=284, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=284, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=284, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=284, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=284, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=284, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=22] Command: ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=284, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=284, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=24] Command: ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=284, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=284, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=26] Command: ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=284, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=284, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=284, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=284, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=284, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=284, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=284, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=284, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=284, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=284, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=284, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=284, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=40] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"3.000.22:67:05:4B:CC:25","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"3.000.22:67:05:4B:CC:25","root-port":"swp6 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp9","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=284, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=42] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"4.000.00:97:03:21:D9:68","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"4.000.00:97:03:21:D9:68","root-port":"swp8 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp8"}] INFO asyncssh:logging.py:92 [conn=284, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=44] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=284, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=46] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"21","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=284, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=284, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=48] Command: mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=284, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=284, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"1.000.00:97:03:21:D9:68","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"1.000.00:97:03:21:D9:68","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"swp8","last-topology-change-port":"swp10"}] INFO asyncssh:logging.py:92 [conn=284, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=52] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"swp7 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"2","topology-change":"yes","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=284, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=54] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=284, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"41","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"38","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"19","num-rx-tcn":"6","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=284, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=56] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=284, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"41","num-rx-bpdu":"5","num-rx-bpdu-filtered":"0","num-tx-tcn":"22","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"23","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"5","num-rx-tcn":"20","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=284, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=57] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=284, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=284, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=284, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=60] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:53:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Unstable State attempting to stop traffic. Increase timeout to allow previous operation to complete.\n'}}] INFO asyncssh:logging.py:92 [conn=284, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=284, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:53:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=284, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=284, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=284, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":321,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":322,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":323,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=284, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=284, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=284, chan=66] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=284, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=284, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=284, chan=66] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[rstp] 42.47
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19801' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[rstp]">Starting testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=284, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=285] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=285] Local address: 172.17.0.5, port 50628 INFO asyncssh:logging.py:92 [conn=285] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=285] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=285] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:53:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=285, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=285, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=285, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=285, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=285, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=285, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:53:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=285, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=285, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=285, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=285, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=285, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=285, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=285, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=285, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=22] Command: ip link set dev bridge_1 address 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=285, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=285, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=24] Command: ip link set dev bridge_2 address 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=285, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=285, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=26] Command: ip link set dev bridge_3 address 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=285, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=285, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=285, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=285, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=285, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=285, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=285, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=32] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=285, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=285, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=285, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=285, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=38] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=285, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=40] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=40] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"3.000.22:67:05:4B:CC:25","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"3.000.22:67:05:4B:CC:25","root-port":"swp6 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"swp6","last-topology-change-port":"swp9"}] INFO asyncssh:logging.py:92 [conn=285, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=42] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"4.000.00:97:03:21:D9:68","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"4.000.00:97:03:21:D9:68","root-port":"swp8 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp8"}] INFO asyncssh:logging.py:92 [conn=285, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=43] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=44] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp8","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp10","bridge":"bridge_3","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"12","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=285, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=45] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=46] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=46] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"0","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"2.000.44:DD:D2:85:22:A4","dsgn-external-cost":"20000","dsgn-regional-root":"3.000.22:67:05:4B:CC:25","dsgn-internal-cost":"0","designated-bridge":"3.000.22:67:05:4B:CC:25","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=285, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=285, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=48] Command: mstpctl settreeprio bridge_3 0 1 INFO asyncssh:logging.py:92 [conn=285, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=285, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=50] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"1.000.00:97:03:21:D9:68","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"1.000.00:97:03:21:D9:68","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"2","topology-change":"no","topology-change-port":"swp10","last-topology-change-port":"swp8"}] INFO asyncssh:logging.py:92 [conn=285, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=52] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"1.000.00:97:03:21:D9:68","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"swp7 (#2)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"16","topology-change-count":"2","topology-change":"no","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=285, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=53] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=54] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=285, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=54] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp9","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"13","num-rx-bpdu":"14","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=285, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=55] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=56] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=285, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=56] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp5","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"20000","dsgn-regional-root":"2.000.44:DD:D2:85:22:A4","dsgn-internal-cost":"0","designated-bridge":"2.000.44:DD:D2:85:22:A4","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"6","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp7","bridge":"bridge_1","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"1.000.00:97:03:21:D9:68","dsgn-external-cost":"0","dsgn-regional-root":"1.000.00:97:03:21:D9:68","dsgn-internal-cost":"0","designated-bridge":"1.000.00:97:03:21:D9:68","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"12","num-rx-bpdu":"15","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"5","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=285, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=57] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=285, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=285, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=285, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=59] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=60] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:54:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Unstable State attempting to stop traffic. Increase timeout to allow previous operation to complete.\n'}}] INFO asyncssh:logging.py:92 [conn=285, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=61] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=285, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=62] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:54:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=285, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=285, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=285, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=64] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":324,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":325,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":326,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=285, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=285, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=285, chan=66] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=285, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=285, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=285, chan=66] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_select_root_port[stp] 81.65
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19882' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[stp]">Starting testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=285, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=286] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=286] Local address: 172.17.0.5, port 38002 INFO asyncssh:logging.py:92 [conn=286] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=286] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=286] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:54:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=286, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=286, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=286, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=286, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=286, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=286, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:54:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=286, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=286, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=286, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=286, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=286, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=286, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=286, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=286, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=286, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=286, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=20] Command: ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=286, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=286, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=22] Command: ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=286, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=286, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=286, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=286, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=286, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=286, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=286, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=286, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"1","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=286, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=286, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=286, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=286, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=286, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"yes","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=286, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=37] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=286, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=286, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=286, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:55:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Unstable State attempting to stop traffic. Increase timeout to allow previous operation to complete.\n'}}] INFO asyncssh:logging.py:92 [conn=286, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=286, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:55:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=286, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=286, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=286, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":327,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":328,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=286, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=286, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=286, chan=46] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=286, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=286, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=286, chan=46] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_select_root_port[rstp] 41.90
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-19943' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[rstp]">Starting testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=286, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=287] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=287] Local address: 172.17.0.5, port 59924 INFO asyncssh:logging.py:92 [conn=287] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=287] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=287] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:55:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=287, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=287, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=287, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=287, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=287, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=287, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:55:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=287, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=287, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=287, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=9] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=11] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=287, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=287, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=287, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=287, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=287, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=287, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=287, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=20] Command: ip link set dev bridge_1 address 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=287, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=287, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=22] Command: ip link set dev bridge_2 address 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=287, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=287, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=287, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=287, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=287, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=287, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=287, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=287, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=30] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=287, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=287, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=33] Channel closed DEBUG infra1:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=287, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=287, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=287, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=35] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=287, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=37] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=287, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=287, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=287, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=39] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=40] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:56:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Unstable State attempting to stop traffic. Increase timeout to allow previous operation to complete.\n'}}] INFO asyncssh:logging.py:92 [conn=287, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=41] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=287, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=42] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:56:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=287, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=287, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=287, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=44] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":329,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":330,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=287, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=287, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=287, chan=46] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=287, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=287, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=287, chan=46] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_root_bridge_based_on_mac[stp] 253.93
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20004' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_bridge_based_on_mac[stp]">Starting testcase:test_stp_root_bridge_based_on_mac[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=287, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=288] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=288] Local address: 172.17.0.5, port 45698 INFO asyncssh:logging.py:92 [conn=288] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=288] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=288] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:56:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=288, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=288, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=288, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=288, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=288, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=288, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 12:56:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=288, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=288, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=288, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=288, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=288, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=288, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=12] Command: ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=288, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=288, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=288, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=288, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=288, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=288, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=288, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=288, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=288, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=288, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=288, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=22] Command: mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=288, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"br0","enabled":"yes","bridge-id":"8.000.66:DA:78:12:DC:68","designated-root":"8.000.00:44:D0:9D:3D:2D","regional-root":"8.000.66:DA:78:12:DC:68","root-port":"swp33 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"80","topology-change-count":"3","topology-change":"no","topology-change-port":"swp35","last-topology-change-port":"swp36"}] INFO asyncssh:logging.py:92 [conn=288, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 00:22:ad:8a:ed:61 INFO asyncssh:logging.py:92 [conn=288, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=24] Command: ip link set dev br0 address 00:22:ad:8a:ed:61 INFO asyncssh:logging.py:92 [conn=288, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=288, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=288, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=26] Command: mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=288, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"br0","enabled":"yes","bridge-id":"8.000.00:22:AD:8A:ED:61","designated-root":"8.000.00:22:AD:8A:ED:61","regional-root":"8.000.00:22:AD:8A:ED:61","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"80","topology-change-count":"3","topology-change":"no","topology-change-port":"swp35","last-topology-change-port":"swp36"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_bridge_based_on_mac[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=288, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=288, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=288, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=288, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:00:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=288, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=288, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:00:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=288, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=288, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=288, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":331,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:22:ad:8a:ed:61","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=288, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=288, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=288, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=288, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=288, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=288, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=288, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_root_bridge_based_on_mac[rstp] 303.94
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20055' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_bridge_based_on_mac[rstp]">Starting testcase:test_stp_root_bridge_based_on_mac[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=288, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=289] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=289] Local address: 172.17.0.5, port 55752 INFO asyncssh:logging.py:92 [conn=289] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=289] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=289] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:00:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=289, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=289, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=289, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=289, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=289, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=289, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:00:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=289, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=289, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=289, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=289, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=289, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=289, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=12] Command: ip link set dev br0 address 66:DA:78:12:DC:68 INFO asyncssh:logging.py:92 [conn=289, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=289, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=289, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=289, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=289, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=289, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=289, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=289, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=289, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=289, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=289, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=22] Command: mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=289, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"br0","enabled":"yes","bridge-id":"8.000.66:DA:78:12:DC:68","designated-root":"8.000.00:44:5B:75:BE:AF","regional-root":"8.000.66:DA:78:12:DC:68","root-port":"swp33 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"39","topology-change-count":"2","topology-change":"no","topology-change-port":"swp36","last-topology-change-port":"swp33"}] INFO asyncssh:logging.py:92 [conn=289, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 00:22:92:39:c3:38 INFO asyncssh:logging.py:92 [conn=289, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=24] Command: ip link set dev br0 address 00:22:92:39:c3:38 INFO asyncssh:logging.py:92 [conn=289, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=289, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=289, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=26] Command: mstpctl -f json showbridge br0 INFO asyncssh:logging.py:92 [conn=289, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"bridge":"br0","enabled":"yes","bridge-id":"8.000.00:22:92:39:C3:38","designated-root":"8.000.00:22:92:39:C3:38","regional-root":"8.000.00:22:92:39:C3:38","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"39","topology-change-count":"2","topology-change":"no","topology-change-port":"swp36","last-topology-change-port":"swp33"}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_bridge_based_on_mac[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=289, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=289, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=289, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=289, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:05:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=289, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=289, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:05:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=289, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=289, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=289, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":332,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:22:92:39:c3:38","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=289, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=289, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=289, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=289, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=289, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=289, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=289, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_select_root_port_on_cost[stp] 402.89
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20106' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port_on_cost[stp]">Starting testcase:test_stp_select_root_port_on_cost[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=289, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=290] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=290] Local address: 172.17.0.5, port 37524 INFO asyncssh:logging.py:92 [conn=290] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=290] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=290] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:05:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=290, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=290, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=290, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=290, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=290, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=290, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:05:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=290, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=290, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=290, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=290, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=290, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=290, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=290, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=290, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=290, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=290, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=290, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=290, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=290, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=290, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=290, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=290, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=290, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=290, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:C8:12:96:C6","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:C8:12:96:C6","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:C8:12:96:C6","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"64","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:C8:12:96:C6","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:CF:DE:4B:4D","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:CF:DE:4B:4D","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"62","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:C8:12:96:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"81","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:C8:12:96:C6","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"79","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591e05870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2928472 Rx 2928470 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2928471 Rx 4142 Loss 99.859 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2928471 Rx 2928470 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=290, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost br0 swp34 1 INFO asyncssh:logging.py:92 [conn=290, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=24] Command: mstpctl setportpathcost br0 swp34 1 INFO asyncssh:logging.py:92 [conn=290, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=290, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=290, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=290, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"85","num-rx-bpdu":"48","num-rx-bpdu-filtered":"0","num-tx-tcn":"24","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1","internal-port-cost":"20000","admin-external-cost":"1","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"84","num-rx-bpdu":"48","num-rx-bpdu-filtered":"0","num-tx-tcn":"25","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"107","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"24","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"105","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"24","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cc460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2928464 Rx 3754 Loss 99.872 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2928464 Rx 2928462 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2928463 Rx 2928462 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port_on_cost[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=290, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=290, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=290, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=290, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:12:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=290, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=290, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:12:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=290, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=290, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=290, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":333,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=290, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=290, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=290, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=290, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=290, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=290, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=290, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_select_root.py::test_stp_select_root_port_on_cost[rstp] 336.00
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20157' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port_on_cost[rstp]">Starting testcase:test_stp_select_root_port_on_cost[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=290, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=291] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=291] Local address: 172.17.0.5, port 49214 INFO asyncssh:logging.py:92 [conn=291] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=291] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=291] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:12:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=291, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=291, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=291, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=291, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=291, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=291, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:12:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=291, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=291, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=291, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=291, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=291, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=291, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=291, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=291, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=291, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=291, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=291, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=291, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=291, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=291, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=291, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=291, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=291, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=291, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:1D:B0:4A:ED","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:1D:B0:4A:ED","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:1D:B0:4A:ED","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"88","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:1D:B0:4A:ED","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:D1:F0:FE:C3","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:D1:F0:FE:C3","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"85","num-rx-bpdu":"23","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:1D:B0:4A:ED","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"72","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:1D:B0:4A:ED","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"70","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591dd4310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 18 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 18 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 1317061 Rx 1317060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 1317061 Rx 662 Loss 99.950 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 1317061 Rx 1317060 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=291, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setportpathcost br0 swp34 16 INFO asyncssh:logging.py:92 [conn=291, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=24] Command: mstpctl setportpathcost br0 swp34 16 INFO asyncssh:logging.py:92 [conn=291, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=291, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=291, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=291, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"102","num-rx-bpdu":"25","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"16","internal-port-cost":"20000","admin-external-cost":"16","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"99","num-rx-bpdu":"25","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"88","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:98","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"86","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f859210e6e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 20 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 20 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 1463595 Rx 543 Loss 99.963 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 1463595 Rx 1463594 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 1463595 Rx 1463593 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port_on_cost[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=291, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=27] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=291, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=291, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=291, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=29] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=30] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:17:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=291, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=291, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:17:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=291, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=291, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=291, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=34] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":334,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=291, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=291, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=291, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=291, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=291, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=291, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=291, chan=36] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_with_traffic.py::test_stp_traffic_during_mode_change[stp] 472.47
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20208' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_traffic_during_mode_change[stp]">Starting testcase:test_stp_traffic_during_mode_change[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=291, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=292] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=292] Local address: 172.17.0.5, port 56222 INFO asyncssh:logging.py:92 [conn=292] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=292] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=292] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:17:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=292, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=292, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=292, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=292, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=292, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=292, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:17:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=292, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=292, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=292, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=292, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=292, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=292, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=292, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=292, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=292, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=292, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=16] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=292, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=292, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=292, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=292, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=292, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=292, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=292, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=292, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:9B:7A:DC:E9","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:9B:7A:DC:E9","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"67","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:4A:0C:91:9F:DB","dsgn-internal-cost":"0","designated-bridge":"8.000.22:4A:0C:91:9F:DB","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"65","num-rx-bpdu":"44","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"85","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"84","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9cbe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 80 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 80 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5857359 Rx 5857358 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5857359 Rx 4292 Loss 99.927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 5857359 Rx 5857357 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 5857359 Rx 5857358 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 5857359 Rx 4292 Loss 99.927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 5857359 Rx 5857357 Loss 0.000 INFO asyncssh:logging.py:92 [conn=292, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=292, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=24] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=292, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=292, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=292, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=292, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:9B:7A:DC:E9","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:9B:7A:DC:E9","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"72","num-rx-bpdu":"127","num-rx-bpdu-filtered":"0","num-tx-tcn":"20","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:4A:0C:91:9F:DB","dsgn-internal-cost":"0","designated-bridge":"8.000.22:4A:0C:91:9F:DB","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"69","num-rx-bpdu":"127","num-rx-bpdu-filtered":"0","num-tx-tcn":"20","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"5","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"129","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:9B:7A:DC:E9","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"127","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cca60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 stp SIP-DIP Tx 164 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 stp SIP-DIP Tx 164 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 12009703 Rx 11817919 Loss 1.597 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 12009703 Rx 4292 Loss 99.964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 12009703 Rx 11819160 Loss 1.587 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 12009703 Rx 11738186 Loss 2.261 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 12009703 Rx 4292 Loss 99.964 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 12009703 Rx 11819161 Loss 1.587 INFO asyncssh:logging.py:92 [conn=292, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=292, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=28] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=292, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=28] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_traffic_during_mode_change[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=292, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=29] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=292, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=30] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=292, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=292, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:25:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=292, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=292, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:25:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=292, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=292, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=292, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":335,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=292, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=292, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=292, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=292, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=292, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=292, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=292, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_with_traffic.py::test_stp_traffic_during_mode_change[rstp] 376.71
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20261' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_traffic_during_mode_change[rstp]">Starting testcase:test_stp_traffic_during_mode_change[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=292, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=293] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=293] Local address: 172.17.0.5, port 44690 INFO asyncssh:logging.py:92 [conn=293] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=293] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=293] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:25:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=293, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=293, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=293, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=293, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=293, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=293, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:25:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=293, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=293, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=293, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=293, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=293, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=293, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=12] Command: ip link set dev br0 address 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=293, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=293, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=293, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=293, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=293, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=293, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=293, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=293, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=293, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=293, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=293, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=293, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:FA:4A:56:72","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:FA:4A:56:72","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"93","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:48:C3:A5:F5:44","dsgn-internal-cost":"0","designated-bridge":"8.000.22:48:C3:A5:F5:44","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"91","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"77","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"75","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916ceb90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2912827 Rx 2912693 Loss 0.005 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2912827 Rx 1191 Loss 99.959 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2912827 Rx 2912825 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 2912827 Rx 2870893 Loss 1.440 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 2912827 Rx 1191 Loss 99.959 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 2912827 Rx 2912825 Loss 0.000 INFO asyncssh:logging.py:92 [conn=293, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=23] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=293, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=24] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=293, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=293, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=25] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=293, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=293, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:FA:4A:56:72","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:FA:4A:56:72","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"137","num-rx-bpdu":"66","num-rx-bpdu-filtered":"0","num-tx-tcn":"24","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:48:C3:A5:F5:44","dsgn-internal-cost":"0","designated-bridge":"8.000.22:48:C3:A5:F5:44","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"116","num-rx-bpdu":"66","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"101","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"learning","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:FA:4A:56:72","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:98","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:98","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"98","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916913f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 82 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 82 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5988999 Rx 3464435 Loss 42.153 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5988999 Rx 1191 Loss 99.980 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 5988999 Rx 3464226 Loss 42.157 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:11:01:00:00:01 Tx 5988999 Rx 3413886 Loss 42.997 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:2 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:12:01:00:00:01 Tx 5988999 Rx 1191 Loss 99.980 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:3 TI data traffic swp36 SIP-DIP 00:14:01:00:00:01-00:13:01:00:00:01 Tx 5988999 Rx 3464228 Loss 42.157 INFO asyncssh:logging.py:92 [conn=293, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=293, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=28] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=293, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=28] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_traffic_during_mode_change[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=293, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=29] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=293, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=30] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=293, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=293, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:31:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=293, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=293, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:31:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=293, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=293, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=293, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":336,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=293, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=293, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=293, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=293, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=293, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=293, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=293, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/stp/test_stp_with_traffic.py::test_stp_switching_off_on[rstp] 553.10
-----------------------------Captured stdout setup------------------------------
Task <Task pending name='Task-20371' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_switching_off_on[rstp]">Starting testcase:test_stp_switching_off_on[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=294, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=295] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=295] Local address: 172.17.0.5, port 42994 INFO asyncssh:logging.py:92 [conn=295] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=295] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=295] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:39:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=295, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=1] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=295, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=295, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=3] Channel closed DEBUG infra1:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=295, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=295, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=4] Channel closed DEBUG infra1:Logger.py:156
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=295, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=5] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=6] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:39:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=295, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=295, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=295, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=11] Channel closed DEBUG infra1:Logger.py:156 ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=295, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=12] Command: ifconfig br0 hw ether 22:BB:4D:85:E7:098 INFO asyncssh:logging.py:92 [conn=295, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=13] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=14] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=15] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=16] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=295, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=295, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=295, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=20] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=295, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=295, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=21] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=22] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:14:58:3A:86","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:44:14:58:3A:86","dsgn-internal-cost":"0","designated-bridge":"8.000.00:44:14:58:3A:86","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"89","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:14:58:3A:86","dsgn-external-cost":"0","dsgn-regional-root":"8.000.00:66:1D:F9:A0:7F","dsgn-internal-cost":"0","designated-bridge":"8.000.00:66:1D:F9:A0:7F","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"88","num-rx-bpdu":"24","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:14:58:3A:86","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"74","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.00:44:14:58:3A:86","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"72","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916ce0b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 40 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2928554 Rx 2928553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2928554 Rx 498 Loss 99.983 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 2928554 Rx 2928553 Loss 0.000 INFO asyncssh:logging.py:92 [conn=295, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=23] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=24] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=25] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=26] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=27] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=28] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=29] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=30] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=31] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=32] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=32] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591bdcd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 94 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 94 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 6883633 Rx 6692565 Loss 2.776 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 6883632 Rx 2269356 Loss 67.033 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 6883632 Rx 6694454 Loss 2.748 INFO asyncssh:logging.py:92 [conn=295, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=33] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=34] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=34] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=36] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=36] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=37] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=38] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=38] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=39] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=40] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=40] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=41] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=42] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=42] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cc100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 146 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 146 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 10692227 Rx 10274395 Loss 3.908 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 10692226 Rx 4543695 Loss 57.505 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 10692226 Rx 10278899 Loss 3.866 INFO asyncssh:logging.py:92 [conn=295, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=43] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=44] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=44] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=45] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=46] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=46] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=47] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=48] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=48] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=49] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=50] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=50] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=51] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=52] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=52] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591711030>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 200 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 200 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 14647305 Rx 13987465 Loss 4.505 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 14647305 Rx 6821698 Loss 53.427 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 14647304 Rx 13994807 Loss 4.455 INFO asyncssh:logging.py:92 [conn=295, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=53] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=54] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=54] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=55] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=56] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=56] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=57] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=58] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=58] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=59] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=60] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=60] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=61] Channel closed DEBUG infra1:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=62] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=295, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=62] Channel closed DEBUG infra1:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp36","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.004","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:BB:4D:85:E7:09","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:BB:4D:85:E7:09","dsgn-internal-cost":"0","designated-bridge":"8.000.22:BB:4D:85:E7:09","designated-port":"8.004","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"1","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591712890>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:1 TI swp33 rstp SIP-DIP Tx 254 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:2 TI swp34 rstp SIP-DIP Tx 254 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 18602383 Rx 17733594 Loss 4.670 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:2 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 18602383 Rx 9090204 Loss 51.134 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:4 TI data traffic swp35 SIP-DIP 00:13:01:00:00:01-00:14:01:00:00:01 Tx 18602383 Rx 17741958 Loss 4.625 INFO asyncssh:logging.py:92 [conn=295, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=63] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=64] Command: ip link set dev br0 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=295, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=64] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=65] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=66] Command: ip link set dev br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=295, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=66] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=67] Channel closed DEBUG infra1:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=68] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=295, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=68] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=295, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=69] Channel closed DEBUG infra1:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=70] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=295, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=70] Channel closed DEBUG infra1:Logger.py:156
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_switching_off_on[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_with_traffic.py INFO asyncssh:logging.py:92 [conn=295, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=71] Channel closed DEBUG infra1:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=295, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=72] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=295, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=72] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=295, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=73] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=74] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:48:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=295, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=75] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=295, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=76] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:48:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=295, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=77] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=295, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=78] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=295, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=78] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":338,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:bb:4d:85:e7:09","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=295, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=295, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=79] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=295, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=295, chan=80] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=295, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=295, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=295, chan=80] Channel closed DEBUG infra1:Logger.py:156
Passed functional/table_size/test_table_size.py::test_ipv4_route_table_fill 64.25
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_table_fill">Starting testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20465' coro=<test_ipv4_route_table_fill() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=295, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=296] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=296] Local address: 172.17.0.5, port 43096 INFO asyncssh:logging.py:92 [conn=296] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=296] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=296] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=296, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:48:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=296, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=296, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=296, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=296, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=296, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=4] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=296, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=5] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=296, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=6] Command: for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=296, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=296, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=8] Command: ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=296, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=8] Channel closed DEBUG infra1:Logger.py:156 10001
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=296, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=296, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:49:29 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=296, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=296, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=296, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=296, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=296, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=296, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ca:0c:df:1a:0c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"90:3c:b3:8b:ef:34","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:37","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:38","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:39","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:40","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:41","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:42","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:44","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:45","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:46","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:47","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:48","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:49","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:4f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:50","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:52","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:53","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:54","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:56","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:58","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:59","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:5f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:60","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:61","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:62","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:63","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:64","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:65","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:66","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:67","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:68","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:69","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:6a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=296, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=296, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=296, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=296, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=296, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=296, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=296, chan=16] Channel closed DEBUG infra1:Logger.py:156
Passed functional/table_size/test_table_size.py::test_bridging_mac_table_size 191.57
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20490' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:111> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=296, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=297] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=297] Local address: 172.17.0.5, port 48274 INFO asyncssh:logging.py:92 [conn=297] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=297] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=297] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=297, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:49:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=297, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=297, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=297, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=297, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=297, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=297, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=297, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=297, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=297, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=8] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=297, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591bdfb20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI streamA SIP-DIP N/A Tx 27735 Rx 27735 Loss 0.000 INFO asyncssh:logging.py:92 [conn=297, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=297, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=297, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=10] Channel closed DEBUG infra1:Logger.py:156 4002
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=297, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=297, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:52:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=297, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=297, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:52:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=297, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=297, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=297, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":339,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=297, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=297, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=297, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=297, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=297, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=297, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=297, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/table_size/test_table_size.py::test_acl_table_size 235.49
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_table_size">Starting testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20517' coro=<test_acl_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:200> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=297, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=298] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=298] Local address: 172.17.0.5, port 57898 INFO asyncssh:logging.py:92 [conn=298] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=298] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=298] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=298, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:52:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=298, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=298, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=298, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=298, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=3] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=298, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=4] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=298, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=5] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=298, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=6] Command: for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=298, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=7] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=8] Command: tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=8] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=298, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=9] Channel closed DEBUG infra1:Logger.py:156 tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=10] Command: tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=10] Channel closed DEBUG infra1:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=298, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=11] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=298, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=12] Command: tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=298, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=13] Channel closed DEBUG infra1:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=298, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=14] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=298, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=15] Channel closed DEBUG infra1:Logger.py:156 tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=298, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=16] Command: tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=298, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=17] Channel closed DEBUG infra1:Logger.py:156 for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=298, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=18] Command: for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=298, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=19] Channel closed DEBUG infra1:Logger.py:156 tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=20] Command: tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=20] Channel closed DEBUG infra1:Logger.py:156 4096 INFO asyncssh:logging.py:92 [conn=298, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=21] Channel closed DEBUG infra1:Logger.py:156 tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=22] Command: tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=298, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=22] Channel closed DEBUG infra1:Logger.py:156 4096
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO asyncssh:logging.py:92 [conn=298, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=23] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=298, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=24] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:56:23 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=298, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=25] Channel closed DEBUG infra1:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=298, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=298, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=26] Channel closed DEBUG infra1:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=298, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=27] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=298, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=298, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=28] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=29] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=298, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=298, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=30] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=31] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=32] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=33] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=34] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=35] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=36] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=37] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=38] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=39] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=40] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=41] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=42] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=43] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=44] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=45] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=298, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=46] Channel closed DEBUG infra1:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=298, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=47] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=298, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=298, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=48] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=49] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=298, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=298, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=50] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=51] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=298, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=298, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=52] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=53] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=298, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=298, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=54] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=55] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=298, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=298, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=56] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=57] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=298, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=298, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=58] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=59] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=298, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=298, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=60] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=61] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=298, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=298, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=62] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=63] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=298, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=298, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=64] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=65] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=298, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=298, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=66] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=67] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=298, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=298, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=68] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=69] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=298, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=298, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=70] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=71] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=298, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=298, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=72] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=73] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=298, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=298, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=74] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=75] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=298, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=298, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=76] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=77] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=298, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=298, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=78] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=79] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=298, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=298, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=80] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=81] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=298, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=298, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=82] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=83] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=298, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=298, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=84] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=85] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=298, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=298, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=86] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=87] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=298, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=298, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=88] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=89] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=298, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=298, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=90] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=91] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=298, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=298, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=92] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=93] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=298, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=298, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=94] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=95] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=298, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=298, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=96] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=97] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=298, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=298, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=98] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=99] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=298, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=298, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=100] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=101] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=298, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=298, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=102] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=103] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=298, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=298, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=104] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=105] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=298, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=298, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=106] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=107] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=298, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=298, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=108] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=109] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=298, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=298, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=110] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=111] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=298, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=298, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=112] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=113] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=298, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=114] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=298, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=114] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=298, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=115] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=298, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=298, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=116] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=117] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=298, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=298, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=118] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=119] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=298, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=298, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=120] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=121] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=298, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=298, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=122] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=123] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=298, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=298, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=124] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=125] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=298, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=298, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=126] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=127] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=298, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=298, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=128] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=129] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=298, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=298, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=130] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=131] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=298, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=298, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=132] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=133] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=298, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=298, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=134] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=135] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=298, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=298, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=136] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=137] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=298, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=298, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=138] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=139] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=298, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=298, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=140] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=141] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=298, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=298, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=142] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=143] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=298, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=298, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=144] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=145] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=298, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=146] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=298, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=146] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=147] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=298, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=148] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=298, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=148] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=149] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=298, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=150] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=298, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=150] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=298, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=298, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=298, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=151] Channel closed DEBUG infra1:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=298, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=298, chan=152] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=298, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=298, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=298, chan=152] Channel closed DEBUG infra1:Logger.py:156 Error: Cannot delete qdisc with handle of zero.
Passed functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast 258.74
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20680' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=298, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=299] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=299] Local address: 172.17.0.5, port 36066 INFO asyncssh:logging.py:92 [conn=299] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=299] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=299] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 13:56:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=299, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=299, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=299, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=299, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=299, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=299, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=299, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=299, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=299, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=299, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=299, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=299, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=299, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=299, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=299, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=299, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591b8ee00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 777 Rx 777 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=299, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:00:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=299, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=299, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:00:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=299, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=299, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=299, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":340,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=299, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=299, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=299, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=299, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=299, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=299, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=299, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast 293.68
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20712' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=299, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=300] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=300] Local address: 172.17.0.5, port 47198 INFO asyncssh:logging.py:92 [conn=300] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=300] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=300] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:00:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=300, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=300, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=300, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=300, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=300, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=300, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=300, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=300, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=300, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=300, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=300, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=300, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=300, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=300, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=300, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=300, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591b8fb20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 78 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 78 Rx 78 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 78 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 78 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 78 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 77 Rx 77 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:05:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=300, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=300, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:05:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=300, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=300, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=300, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":341,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=300, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=300, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=300, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=300, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=300, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=300, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=300, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast 319.20
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20744' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=300, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=301] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=301] Local address: 172.17.0.5, port 59356 INFO asyncssh:logging.py:92 [conn=301] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=301] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=301] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:05:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=301, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=301, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=301, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=301, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=301, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=301, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=301, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=301, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=301, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=301, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=301, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=301, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=301, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=301, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=301, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=301, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:2 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:3 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d988b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 779 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 780 Rx 780 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 779 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 780 Rx 780 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 3 SIP-DIP N/A Tx 779 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 4 SIP-DIP N/A Tx 779 Rx 779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 780 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 779 Rx 779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:2 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 780 Rx 780 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:3 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 780 Rx 780 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 780 Rx 780 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=301, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:11:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=301, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=301, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:11:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=301, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=301, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=301, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":342,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=301, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=301, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=301, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=301, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=301, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=301, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=301, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans 191.72
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20776' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=301, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=302] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=302] Local address: 172.17.0.5, port 52116 INFO asyncssh:logging.py:92 [conn=302] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=302] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=302] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:11:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=302, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=302, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=302, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=302, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=302, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=302, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=302, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=302, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=302, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=302, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=7] Channel closed DEBUG infra1:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=302, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=302, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=8] Channel closed DEBUG infra1:Logger.py:156 real 2m9.733s user 0m3.205s sys 2m4.939s INFO asyncssh:logging.py:92 [conn=302, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=302, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=302, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=10] Channel closed DEBUG infra1:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=302, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:13:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=302, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=302, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:13:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=302, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=302, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=302, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":343,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:3c","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=302, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=302, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=302, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=302, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=302, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=302, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=302, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge 0.88
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20804' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO asyncssh:logging.py:92 [conn=302, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=303] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=303] Local address: 172.17.0.5, port 40470 INFO asyncssh:logging.py:92 [conn=303] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=303] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=303] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:14:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=303, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=1] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=303, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=303, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=303, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=2] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=303, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=303, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=303, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=303, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=303, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=303, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=303, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=303, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=303, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=303, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=8] Channel closed DEBUG infra1:Logger.py:156 RTNETLINK answers: Operation not supported
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=303, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:14:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=303, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=303, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:14:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=303, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=303, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=303, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=14] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":344,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:56:6e:f7:2d:6d","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=303, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=303, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=303, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=303, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=303, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=303, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=303, chan=16] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] 267.57
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20830' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=303, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=304] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=304] Local address: 172.17.0.5, port 40476 INFO asyncssh:logging.py:92 [conn=304] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=304] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=304] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:14:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=304, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=304, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=304, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=304, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=304, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=304, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=304, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=304, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=304, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591711a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 872 Rx 872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 872 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 871 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 871 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 872 Rx 872 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 871 Rx 871 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=304, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:18:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=304, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=304, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:18:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=304, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=304, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=304, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=304, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=304, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=304, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=304, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=304, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=304, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=304, chan=14] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] 271.32
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20854' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=304, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=305] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=305] Local address: 172.17.0.5, port 59430 INFO asyncssh:logging.py:92 [conn=305] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=305] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=305] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:18:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=305, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=305, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=305, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=305, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=305, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=305, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=305, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=305, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=305, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591711660>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 392 Rx 392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 392 Rx 392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 392 Rx 392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 392 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 392 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 392 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 392 Rx 392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 392 Rx 392 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 392 Rx 392 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=305, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:23:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=305, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=305, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:23:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=305, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=305, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=305, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":346,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=305, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=305, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=305, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=305, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=305, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=305, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=305, chan=14] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] 274.82
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20878' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=305, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=306] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=306] Local address: 172.17.0.5, port 35078 INFO asyncssh:logging.py:92 [conn=306] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=306] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=306] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:23:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=306, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=306, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=306, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=306, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=306, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=306, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=306, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=306, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=306, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:1 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:4 -> 10.36.118.199:2:1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591b8fee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 1 SIP-DIP N/A Tx 775 Rx 775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> 2 SIP-DIP N/A Tx 775 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI 10.36.118.199:2:1 -> X SIP-DIP N/A Tx 775 Rx 775 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI 10.36.118.199:2:4 -> 10.36.118.199:2:1 SIP-DIP N/A Tx 775 Rx 775 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=306, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:27:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=306, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=306, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:27:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=306, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=306, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=306, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":347,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=306, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=306, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=306, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=306, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=306, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=306, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=306, chan=14] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] 273.62
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20902' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=306, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=307] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=307] Local address: 172.17.0.5, port 34860 INFO asyncssh:logging.py:92 [conn=307] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=307] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=307] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:27:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=307, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=307, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=307, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=307, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=307, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=307, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=307, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=307, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=307, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591b8c3d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 871 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 871 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 871 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 871 Rx 871 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 871 Rx 871 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=307, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=7] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=8] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:32:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=307, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=9] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=307, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=10] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:32:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=307, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=11] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=307, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=307, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=12] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":348,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=307, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=307, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=13] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=307, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=307, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=307, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=307, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=307, chan=14] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality 261.21
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20926' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=307, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=308] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=308] Local address: 172.17.0.5, port 55290 INFO asyncssh:logging.py:92 [conn=308] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=308] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=308] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:32:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=308, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=308, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=308, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=308, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=308, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=308, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=308, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=308, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=308, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=308, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=308, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=308, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=308, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=308, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=308, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=14] Command: bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=308, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916921d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 779 Rx 779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 778 Rx 778 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 778 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=308, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:36:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=308, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=308, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:36:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=308, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=308, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=308, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":349,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=308, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=308, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=308, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=308, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=308, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=308, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=308, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid 268.77
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20958' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=308, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=309] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=309] Local address: 172.17.0.5, port 46382 INFO asyncssh:logging.py:92 [conn=309] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=309] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=309] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:36:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=309, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=309, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=309, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=309, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=309, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=309, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=309, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=8] Command: bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=10] Command: bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=12] Command: bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=309, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=14] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=309, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591b8c7c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 774 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 774 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 774 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 774 Rx 774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 774 Rx 774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 774 Rx 774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 774 Rx 774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 774 Rx 774 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 774 Rx 774 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=309, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:41:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=309, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=309, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:41:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=309, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=309, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=309, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":350,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=309, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=309, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=309, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=309, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=309, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=309, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=309, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs 537.41
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-20990' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=309, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=310] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=310] Local address: 172.17.0.5, port 37714 INFO asyncssh:logging.py:92 [conn=310] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=310] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=310] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:41:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=310, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=1] Channel closed DEBUG infra1:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=310, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=310, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=2] Channel closed DEBUG infra1:Logger.py:156 arm64-accton-as4224-52p-r0 INFO asyncssh:logging.py:92 [conn=310, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=310, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=310, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=310, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=310, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=7] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=310, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=310, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=9] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=310, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=310, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=12] Command: bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=14] Command: bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=16] Command: bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=310, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=18] Command: bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=310, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591b8f6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 270728 Rx 270728 Loss 0.000 INFO asyncssh:logging.py:92 [conn=310, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=310, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=20] Command: bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=310, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=20] Channel closed DEBUG infra1:Logger.py:156 31379 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916918d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 266034 Rx 266034 Loss 0.000 INFO asyncssh:logging.py:92 [conn=310, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=310, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=22] Command: bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=310, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=22] Channel closed DEBUG infra1:Logger.py:156 31493 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591d9bee0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 281575 Rx 281575 Loss 0.000 INFO asyncssh:logging.py:92 [conn=310, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=310, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=24] Command: bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=310, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=24] Channel closed DEBUG infra1:Logger.py:156 31420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}]
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=310, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=25] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=26] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:50:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=310, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=27] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=310, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=310, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=28] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":351,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=310, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=29] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=310, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=310, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=310, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=310, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=310, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=310, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=310, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=310, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:50:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' \n'}}]
Passed functional/vlan/test_vlan_priority.py::test_vlan_priority_tag 241.55
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21032' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=310, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=311] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=311] Local address: 172.17.0.5, port 46506 INFO asyncssh:logging.py:92 [conn=311] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=311] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=311] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:50:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=311, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=311, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=311, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=311, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=311, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=311, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=311, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=311, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=311, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=311, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=311, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=8] Command: bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=311, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=311, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=311, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=10] Command: bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=311, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591693190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN priority SIP-DIP N/A Tx 3966019 Rx 3966019 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 3966019 Rx 3966019 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 3966019
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=311, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=11] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=12] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:54:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=311, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=13] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=311, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=14] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:54:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=311, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=15] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=311, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=311, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=16] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":352,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=311, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=311, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=17] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=311, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=311, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=311, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=311, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=311, chan=18] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli 423.15
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21060' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=311, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=312] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=312] Local address: 172.17.0.5, port 39576 INFO asyncssh:logging.py:92 [conn=312] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=312] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=312] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 14:54:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=312, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=312, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=312, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=312, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=312, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=312, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=312, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=312, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=312, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591693640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 943 Rx 943 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 943 Rx 943 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 943 Rx 943 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 943 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 943 Rx 943 Loss 0.000 INFO asyncssh:logging.py:92 [conn=312, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=15] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=312, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=16] Command: bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=312, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=16] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=17] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=312, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=18] Command: bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=312, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=18] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=19] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=312, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=20] Command: bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=312, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=20] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=21] Channel closed DEBUG infra1:Logger.py:156 bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=312, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=22] Command: bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=312, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=22] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=23] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=312, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=24] Command: bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=312, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=24] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=25] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=26] Command: bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=26] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=27] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=28] Command: bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=28] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=312, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=29] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=30] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=312, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=30] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cd7e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 776 Rx 776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 776 Rx 776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI New configuration untagged traffic SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI New configuration untagged traffic SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI New configuration untagged traffic SIP-DIP N/A Tx 776 Rx 0 Loss 100.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=312, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=31] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=32] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:01:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=312, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=33] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=312, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=34] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:01:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=312, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=35] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=312, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=312, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=36] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":353,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=312, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=312, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=37] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=312, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=312, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=312, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=312, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=312, chan=38] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] 298.94
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21108' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=312, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=313] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=313] Local address: 172.17.0.5, port 44536 INFO asyncssh:logging.py:92 [conn=313] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=313] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=313] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:01:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=313, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=313, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=313, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=313, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=313, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=313, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=313, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=313, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=313, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916cce80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 777 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 776 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 776 Rx 776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 776 Rx 776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 776 Rx 776 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 777 Rx 777 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 776 Rx 776 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=313, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:06:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=313, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=313, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:06:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=313, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=313, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=313, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":354,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=313, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=313, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=313, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=313, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=313, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=313, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=313, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] 299.11
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21140' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=313, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=314] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=314] Local address: 172.17.0.5, port 33784 INFO asyncssh:logging.py:92 [conn=314] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=314] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=314] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:06:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=314, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=314, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=314, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=314, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=314, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=314, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=314, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=314, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=314, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591693be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 78 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 77 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 78 Rx 78 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 78 Rx 78 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 78 Rx 78 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 78 Rx 78 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 77 Rx 77 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 77 Rx 77 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=314, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:11:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=314, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=314, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:11:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=314, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=314, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=314, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":355,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=314, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=314, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=314, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=314, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=314, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=314, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=314, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] 363.31
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21172' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=314, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=315] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=315] Local address: 172.17.0.5, port 43876 INFO asyncssh:logging.py:92 [conn=315] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=315] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=315] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:11:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=315, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=315, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=315, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=315, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=315, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=315, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=315, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=315, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=315, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916ccbb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 876 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 876 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 1 learning SIP-DIP N/A Tx 876 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 22 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 23 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:2 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:3 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:3 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:4 Rx 10.36.118.199:2:1 TI From 10.36.118.199:2:4 -> 10.36.118.199:2:1: VLAN : 24 learning SIP-DIP N/A Tx 876 Rx 876 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=315, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:17:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=315, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=315, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:17:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=315, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=315, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=315, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":356,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=315, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=315, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=315, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=315, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=315, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=315, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=315, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size 260.62
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21204' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=315, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=316] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=316] Local address: 172.17.0.5, port 35750 INFO asyncssh:logging.py:92 [conn=316] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=316] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=316] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:17:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=316, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=316, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=316, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=316, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=316, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=316, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=316, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=316, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=316, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=316, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=316, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=316, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=316, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=316, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=316, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=14] Command: bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=316, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85916932e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged traffic SIP-DIP N/A Tx 944 Rx 944 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged traffic SIP-DIP N/A Tx 944 Rx 944 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged traffic SIP-DIP N/A Tx 944 Rx 944 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=316, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:21:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=316, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=316, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:21:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=316, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=316, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=316, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":357,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=316, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=316, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=316, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=316, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=316, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=316, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=316, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] 265.91
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21236' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=316, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=317] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=317] Local address: 172.17.0.5, port 57702 INFO asyncssh:logging.py:92 [conn=317] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=317] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=317] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:21:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=317, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=317, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=317, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=317, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=317, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=317, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=317, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=317, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=317, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591692a70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged broadcast traffic SIP-DIP N/A Tx 780 Rx 780 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged broadcast traffic SIP-DIP N/A Tx 779 Rx 779 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged broadcast traffic SIP-DIP N/A Tx 779 Rx 779 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=317, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:26:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=317, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=317, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:26:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=317, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=317, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=317, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":358,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=317, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=317, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=317, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=317, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=317, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=317, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=317, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] 257.43
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21268' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=317, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=318] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=318] Local address: 172.17.0.5, port 36542 INFO asyncssh:logging.py:92 [conn=318] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=318] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=318] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=318, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:26:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=318, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=318, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=318, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=318, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=318, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=318, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=318, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=318, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=318, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=318, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=318, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=318, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=318, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=318, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f8591713c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged multicast traffic SIP-DIP N/A Tx 387 Rx 387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:3 TI Untagged multicast traffic SIP-DIP N/A Tx 386 Rx 386 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:4 TI Untagged multicast traffic SIP-DIP N/A Tx 386 Rx 386 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=318, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=318, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:30:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=318, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=318, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:30:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=318, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=318, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=318, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":359,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=318, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=318, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=318, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=318, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=318, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=318, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=318, chan=22] Channel closed DEBUG infra1:Logger.py:156
Passed functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] 270.15
-------------------------------Captured log setup-------------------------------
INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 =================================================================
------------------------------Captured stdout call------------------------------
Task <Task pending name='Task-21300' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.46 Authentication complete
-------------------------------Captured log call--------------------------------
INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=318, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=319] Connected to SSH server at 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=319] Local address: 172.17.0.5, port 50772 INFO asyncssh:logging.py:92 [conn=319] Peer address: 10.36.118.46, port 22 INFO asyncssh:logging.py:92 [conn=319] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=319] Auth for user root succeeded DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=319, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=0] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:30:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=319, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=1] Channel closed DEBUG infra1:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=319, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=319, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=2] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=319, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=3] Channel closed DEBUG infra1:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=319, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=319, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=4] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=319, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=5] Channel closed DEBUG infra1:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=319, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=319, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=6] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=319, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=7] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=8] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=319, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=9] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=10] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=319, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=11] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=12] Channel closed DEBUG infra1:Logger.py:156 INFO asyncssh:logging.py:92 [conn=319, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=13] Channel closed DEBUG infra1:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=319, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=14] Channel closed DEBUG infra1:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 1583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:1 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:2 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:3 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:4 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:1 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:1_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:2 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:2_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:3 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:3_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:4 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:4_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:1_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:2_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:3_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:4_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f85917102e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:1 Rx 10.36.118.199:2:2 TI Untagged unicast stream SIP-DIP N/A Tx 882 Rx 882 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:2 Rx 10.36.118.199:2:1 TI Learning stream SIP-DIP N/A Tx 882 Rx 882 Loss 0.000
-----------------------------Captured log teardown------------------------------
INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=319, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=15] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=319, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=16] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=319, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=17] Channel closed DEBUG infra1:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=319, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=18] Channel closed DEBUG infra1:Logger.py:156 Wed Aug 2 15:34:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=319, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=19] Channel closed DEBUG infra1:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=319, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=319, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=20] Channel closed DEBUG infra1:Logger.py:156 [{"ifindex":360,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"90:3c:b3:8b:ef:57","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=319, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=319, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=21] Channel closed DEBUG infra1:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=319, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=319, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=319, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=319, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=319, chan=22] Channel closed DEBUG infra1:Logger.py:156